diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-09-06 07:26:54 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-09-06 07:26:54 +0200 |
commit | cba9e23c6753e84c7633c65f9adda95d25eb4cd0 (patch) | |
tree | 1444c158601a0aa3f399db78619f96a3fbec9478 /README | |
parent | 894abe5b8a5bd0a500fadfd5ec89e9b8fde76b8f (diff) | |
download | geiser-cba9e23c6753e84c7633c65f9adda95d25eb4cd0.tar.gz geiser-cba9e23c6753e84c7633c65f9adda95d25eb4cd0.tar.bz2 |
Allow loading byte-compiled Geiser without make install
Diffstat (limited to 'README')
-rw-r--r-- | README | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -43,12 +43,20 @@ $ mkdir build; cd build - Configure and make: $ ../configure && make - - Install it with: + + Now, you can use the byte-compiled Geiser in place by adding to + your .emacs: + + (load "<path-to-geiser>/build/elisp/geiser-load") + + or, alternatively, install it with: + $ make install (you might need to get root access, depending on your installation - directory) and require 'geiser-install (not 'geiser, mind you) in - your emacs initialization file: + directory) and, instead of the above load forms, require + 'geiser-install (not 'geiser, mind you) in your emacs + initialization file: (require 'geiser-install) |