Peter Dyballa <[EMAIL PROTECTED]> writes:

> Am 15.04.2005 um 17:10 schrieb Denis Bueno:
> 
> > Is there a better way?
> 
> What about this?
> 
> (cond ((= 21 emacs-major-version)
>    (progn
>      (desktop-read)
>      (cond ((string= "x" window-system)

There is this notion of a symbol in List & Intelligent Symbol Processing
language.  Perhaps you read some about it...

Try: M-x info RET m elisp RET m symbols RET

>          (message "Sind in X11")
>          (load "~/.emacs_X11")
>      ))  ; Ende X11
>      (cond ((string= "mac" window-system)
>          (message "Sind in Aqua")
>          (load "~/.emacs_Carbon")
> ;        (require '.emacs_Carbon)
>      ))  ; Ende Carbon
>      (cond ((string= 'nil window-system)
>          (message "Sind im Terminal")
>          (load "~/.emacs_nil")
>      ))  ; Ende Terminal
> )));Version 21

-- 
__Pascal Bourguignon__                     http://www.informatimago.com/

Nobody can fix the economy.  Nobody can be trusted with their finger
on the button.  Nobody's perfect.  VOTE FOR NOBODY.
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to