|
From: Christopher Koppler on 4 May 2008 10:23 On May 2, 7:23 pm, globalrev <skanem...(a)yahoo.se> wrote: > what do you mean by "the point after it"? Please familiarize yourself with basic Emacs terminology: http://www.emacswiki.org/cgi-bin/emacs-en?CategoryGlossary
From: Christopher Koppler on 4 May 2008 10:23 On May 2, 7:23 pm, globalrev <skanem...(a)yahoo.se> wrote: > what do you mean by "the point after it"? Please familiarize yourself with basic Emacs terminology: http://www.emacswiki.org/cgi-bin/emacs-en?CategoryGlossary
From: globalrev on 4 May 2008 14:51 i dont get it. cant you just alter the text instead just much easier than tryong to explain with weird quotes. (setq inferior-lisp-program 'c:/users/rob/documents/sbcl/sbcl.exe ôòó>core c:/users/rob/documents/sbcl/sbcl.core") (require 'slime) (slime-setup) i pase that then Cuxe?
From: Pascal J. Bourguignon on 5 May 2008 03:07 globalrev <skanemupp(a)yahoo.se> writes: > i dont get it. cant you just alter the text instead just much easier > than tryong to explain with weird quotes. > > > (setq inferior-lisp-program 'c:/users/rob/documents/sbcl/sbcl.exe > ����>core c:/users/rob/documents/sbcl/sbcl.core") > (require 'slime) > (slime-setup) > > i pase that then Cuxe? C-u C-x C-e will only evaluate one form. 'x is equivalent to (quote x) and does not read a string. Try to use double-quotes for strings. (setq inferior-lisp-program "c:/users/rob/documents/sbcl/sbcl.exe --core c:/users/rob/documents/sbcl/sbcl.core") (require 'slime) (slime-setup) Either you evaluate each for one by one, moving in turn the cursor on the end of each line and typing C-x C-e, (or C-u C-x C-e if you want the result be inserted in the current buffer), or select all these forms, and type M-x eval-region RET. But note that require won't load twice the same library, so it's useless to evaluate it more than once, and I guess it's the same with slime-setup. At least, you can change the value of inferior-lisp-program without having to re-run slime-setup. -- __Pascal Bourguignon__
From: globalrev on 7 May 2008 09:28 On 5 Maj, 09:07, p...(a)informatimago.com (Pascal J. Bourguignon) wrote: > globalrev <skanem...(a)yahoo.se> writes: > > i dont get it. cant you just alter the text instead just much easier > > than tryong to explain with weird quotes. > > > (setq inferior-lisp-program 'c:/users/rob/documents/sbcl/sbcl.exe > > ½ôòó>core c:/users/rob/documents/sbcl/sbcl.core") > > (require 'slime) > > (slime-setup) > > > i pase that then Cuxe? > > C-u C-x C-e will only evaluate one form. > > 'x is equivalent to (quote x) and does not read a string. > Try to use double-quotes for strings. > > (setq inferior-lisp-program "c:/users/rob/documents/sbcl/sbcl.exe --core c:/users/rob/documents/sbcl/sbcl.core") > (require 'slime) > (slime-setup) > > Either you evaluate each for one by one, moving in turn the cursor on > the end of each line and typing C-x C-e, (or C-u C-x C-e if you want > the result be inserted in the current buffer), or select all these > forms, and type M-x eval-region RET. > > But note that require won't load twice the same library, so it's > useless to evaluate it more than once, and I guess it's the same with > slime-setup. At least, you can change the value of > inferior-lisp-program without having to re-run slime-setup. > > -- > __Pascal Bourguignon__ ("C:\\Emacs\\emacs-22.2\\bin\\emacs.exe") Loading encoded-kb...done An error has occurred while loading `c:/Users/saftarn/AppData/ Roaming/.emacs': Symbol's value as variable is void: c:/users/rob/documents/sbcl/ sbcl.exe To ensure normal operation, you should investigate and remove the cause of the error in your initialization file. Start Emacs with the `--debug-init' option to view a complete error backtrace. For information about GNU Emacs and the GNU system, type C-h C-a. i give up. why is it changing to backquote int he errorreport? it is with "" now...
|
Next
|
Last
Pages: 1 2 Prev: Greenspunning ML (revisited) Next: Any progress on free open source Windows LISP Versions? |