help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Cut and open commands?


From: saneman
Subject: Re: Cut and open commands?
Date: Tue, 26 Feb 2008 10:17:13 +0100
User-agent: Thunderbird 2.0.0.6 (X11/20071022)


This code:

(add-to-list 'load-path
(expand-file-name "/usr/share/emacs21/site-lisp/emacs-goodies-el"))
is wrong

And this one as Peter told you is wrong also:

(require 'emacs-goodies)

You have to add to load-path a directory and not a file


/usr/share/emacs21/site-lisp/emacs-goodies-el

is a directory containing the file (symlink):

emacs-goodies-el.el

You have to require a name of file without the extension (what is in
provide at the end of this file) and not a directory.

this made it work:
(require 'emacs-goodies-el)

instead of:
(require 'emacs-goodies)



...but I still get [No match] when I type:

C-h f cua-mode

followed by return


reply via email to

[Prev in Thread] Current Thread [Next in Thread]