all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: pjb@informatimago.com (Pascal J. Bourguignon)
To: help-gnu-emacs@gnu.org
Subject: Re: newbie - elba/how do i run packages
Date: Tue, 05 Jan 2010 00:41:52 +0100	[thread overview]
Message-ID: <87k4vxwi7z.fsf@hubble.informatimago.com> (raw)
In-Reply-To: mailman.706.1262616301.18930.help-gnu-emacs@gnu.org

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/


       reply	other threads:[~2010-01-04 23:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.706.1262616301.18930.help-gnu-emacs@gnu.org>
2010-01-04 23:41 ` Pascal J. Bourguignon [this message]
2010-01-04 23:46 ` newbie - elba/how do i run packages Pascal J. Bourguignon
2010-01-04  1:28 brian

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87k4vxwi7z.fsf@hubble.informatimago.com \
    --to=pjb@informatimago.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.