> -----Original Message----- > From: Ronald van Engelen [mailto:[EMAIL PROTECTED] > Sent: Friday, December 13, 2002 5:38 AM > To: [email protected] > Subject: Re: Another Xemacs challenge: how to get pcselection mode > working > > > Well, it seems that i should ask the following questions: > > 1. How can i determine my 'site-lisp directory', so i should copy my > byte-compiled 'cua-mode-1.3-xemacs.el' (obtained from http://www.cua.dk) > to it? > 2. Why doesn't Xemacs21-gnome-nomule complain when it can't locate > and/or load my cua.el > 3. what the *** does CUA stand for?
In decreasing order of certainty: 1) You don't. Generally, you wouldn't install things in the site-lisp directory unless it was a site wide thing: like managing a cluster of machines in a lab for students to hack on their projects. It's better to install a little code in your .emacs/.init.el: (setq load-path (cons "~/lib/elisp" load-path)) This will add the directory (home)/lib/elisp as a search directory. Toss your extensions (both .el and .elc files) into there. 2) Probably because your effort to load CUA isn't happening or it already has one. 3) Clearly Uncommon Acronym?

