all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* newbie - elba/how do i run packages
@ 2010-01-04  1:28 brian
  0 siblings, 0 replies; 3+ messages in thread
From: brian @ 2010-01-04  1:28 UTC (permalink / raw
  To: help-gnu-emacs

Hi,

I am using GNU emacs 23 in cygwin. I dont have emacs /lisp background. I 
got as far as running the elpa script in the elisp window.The I can 
highlight and "I" a package, then hit "x" . Some packages seem to work, 
like "dictionary", however I want to try  "slime"

slime            20091016  installed     Superior Lisp Interaction Mode 
for Emac

it says "no such file or directory"

also do you know if xemacs is preferred in cywin?

Thanks
Brian




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: newbie - elba/how do i run packages
       [not found] <mailman.706.1262616301.18930.help-gnu-emacs@gnu.org>
@ 2010-01-04 23:41 ` Pascal J. Bourguignon
  2010-01-04 23:46 ` Pascal J. Bourguignon
  1 sibling, 0 replies; 3+ messages in thread
From: Pascal J. Bourguignon @ 2010-01-04 23:41 UTC (permalink / raw
  To: help-gnu-emacs

brian <brw314@gmail.com> writes:

> Hi,
>
> I am using GNU emacs 23 in cygwin. I dont have emacs-lisp
> background. I got as far as running the elpa script in the elisp
> window. 

What is the elpa script?
I launch cygwin/X and launch emacs-x11 from an xterm or from WindowMaker.


> The I can highlight and "I" a package, then hit "x" . Some
> packages seem to work, like "dictionary", however I want to try
> "slime"
>
> slime            20091016  installed     Superior Lisp Interaction
> Mode for Emac
>
> it says "no such file or directory"
>
> also do you know if xemacs is preferred in cywin?


I use emacs-x11 (version 23.0.92.1) too on cygwin.
Have you a (require 'slime) in ~/.emacs?

Here is my ~/.emacs, as you can see, I didn't set load-path, and
everything works as expected.


---(~/.emacs)-----------------------------------------------------------------

(custom-set-variables
  ;; custom-set-variables was added by Custom.                                                                         
  ;; If you edit it by hand, you could mess it up, so be careful.                                                      
  ;; Your init file should contain only one such instance.                                                             
  ;; If there is more than one, they won't work right.                                                                 
 '(eval-expression-print-length nil)
 '(eval-expression-print-level nil)
 '(gnus-select-method (quote (nntp "news.individual.net")))
 '(lisp-mode-hook (quote (paredit-mode slime-mode)))
 '(ps-header-lines 0)
 '(ps-print-header nil)
 '(slime-mode-hook (quote (slime-add-easy-menu slime-setup-first-change-hook))  t)
 '(slime-net-coding-system (quote utf-8-unix)))
(custom-set-faces
  ;; custom-set-faces was added by Custom.                                                                             
  ;; If you edit it by hand, you could mess it up, so be careful.                                                      
  ;; Your init file should contain only one such instance.                                                             
  ;; If there is more than one, they won't work right.                                                                 
 )

(tool-bar-mode -1)
(menu-bar-mode -1)
(scroll-bar-mode -1)
(transient-mark-mode 1)

(require 'cl)

(when (<= 23 emacs-major-version)
  (require 'w3m-ems))
(require 'w3m)
(setf browse-url-browser-function 'w3m-browse-url)

(require 'erc)
(require 'paredit)
(require 'slime)
(setf inferior-lisp-program "/usr/bin/clisp.exe -q -Kfull+new-clx -E utf-8")

;; (x-list-fonts "-misc-fixed-*-*-normal-*-13-*-*-*-*-*-iso8859-1")                                                    
;; (set-default-font  "-misc-fixed-medium-r-normal--13-100-75-75-c-60-iso8859-1")                                      
(set-default-font "-misc-fixed-medium-r-normal--13-100-100-100-c-70-iso8859-1")

(when nil
  (progn (set-frame-height (first (frame-list)) 35)
         (set-frame-width (first (frame-list)) 140))
  )
(put 'erase-buffer 'disabled nil)

(require 'clhs)
(global-set-key (kbd "C-h y") 'common-lisp-hyperspec)
(setf common-lisp-hyperspec-root
      "file://opt/share/lisp/HyperSpec")

------------------------------------------------------------------------


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


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: newbie - elba/how do i run packages
       [not found] <mailman.706.1262616301.18930.help-gnu-emacs@gnu.org>
  2010-01-04 23:41 ` Pascal J. Bourguignon
@ 2010-01-04 23:46 ` Pascal J. Bourguignon
  1 sibling, 0 replies; 3+ messages in thread
From: Pascal J. Bourguignon @ 2010-01-04 23:46 UTC (permalink / raw
  To: help-gnu-emacs

brian <brw314@gmail.com> writes:

> Hi,
>
> I am using GNU emacs 23 in cygwin. I dont have emacs /lisp
> background. I got as far as running the elpa script in the elisp
> window.

In emacs, what's your load-path?

Type:
M-x ielm RET
(setq print-length nil) RET
(setq print-level nil) RET
load-path RET


Here is what I have:

*** Welcome to IELM ***  Type (describe-mode) for help.                                                                
ELISP> print-length                                                                                                    
nil                                                                                                                    
ELISP> print-level                                                                                                     
nil                                                                                                                    
ELISP> load-path                                                                                                       
("/usr/share/emacs/23.0.92/site-lisp" "/usr/share/emacs/site-lisp" "/usr/share/emacs/site-lisp/emacs-w3m" "/usr/share/\
emacs/site-lisp/emacs-w3m-1.4.4" "/usr/share/emacs/site-lisp/erc-5.1.2" "/usr/share/emacs/site-lisp/slime" "/usr/share\
/emacs/site-lisp/emacs-w3m/attic" "/usr/share/emacs/site-lisp/emacs-w3m/doc" "/usr/share/emacs/site-lisp/emacs-w3m/ico\
ns" "/usr/share/emacs/site-lisp/emacs-w3m/icons30" "/usr/share/emacs/site-lisp/emacs-w3m/patches" "/usr/share/emacs/si\
te-lisp/emacs-w3m/shimbun" "/usr/share/emacs/site-lisp/emacs-w3m-1.4.4/attic" "/usr/share/emacs/site-lisp/emacs-w3m-1.\
4.4/doc" "/usr/share/emacs/site-lisp/emacs-w3m-1.4.4/icons" "/usr/share/emacs/site-lisp/emacs-w3m-1.4.4/icons30" "/usr\
/share/emacs/site-lisp/emacs-w3m-1.4.4/patches" "/usr/share/emacs/site-lisp/emacs-w3m-1.4.4/shimbun" "/usr/share/emacs\
/site-lisp/erc-5.1.2/images" "/usr/share/emacs/site-lisp/slime/contrib" "/usr/share/emacs/site-lisp/slime/doc" "/usr/s\
hare/emacs/23.0.92/lisp" "/usr/share/emacs/23.0.92/lisp/url" "/usr/share/emacs/23.0.92/lisp/textmodes" "/usr/share/ema\
cs/23.0.92/lisp/progmodes" "/usr/share/emacs/23.0.92/lisp/play" "/usr/share/emacs/23.0.92/lisp/org" "/usr/share/emacs/\
23.0.92/lisp/nxml" "/usr/share/emacs/23.0.92/lisp/net" "/usr/share/emacs/23.0.92/lisp/mh-e" "/usr/share/emacs/23.0.92/\
lisp/mail" "/usr/share/emacs/23.0.92/lisp/language" "/usr/share/emacs/23.0.92/lisp/international" "/usr/share/emacs/23\
.0.92/lisp/gnus" "/usr/share/emacs/23.0.92/lisp/eshell" "/usr/share/emacs/23.0.92/lisp/erc" "/usr/share/emacs/23.0.92/\
lisp/emulation" "/usr/share/emacs/23.0.92/lisp/emacs-lisp" "/usr/share/emacs/23.0.92/lisp/calendar" "/usr/share/emacs/\
23.0.92/lisp/calc" "/usr/share/emacs/23.0.92/lisp/obsolete" "/usr/share/emacs/23.0.92/leim")                           
                                                                                                                       
ELISP> (require 'cl)
cl
ELISP> (remove* "slime" load-path :test-not (function search))
("/usr/share/emacs/site-lisp/slime" "/usr/share/emacs/site-lisp/slime/contrib" "/usr/share/emacs/site-lisp/slime/doc")

ELISP> 


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


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-01-04 23:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-04  1:28 newbie - elba/how do i run packages brian
     [not found] <mailman.706.1262616301.18930.help-gnu-emacs@gnu.org>
2010-01-04 23:41 ` Pascal J. Bourguignon
2010-01-04 23:46 ` Pascal J. Bourguignon

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.