]> git.eshelyaron.com Git - emacs.git/commitdiff
* custom.texi (Init Examples): Add example of changing load-path.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 4 Jun 2009 03:13:28 +0000 (03:13 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 4 Jun 2009 03:13:28 +0000 (03:13 +0000)
doc/emacs/ChangeLog
doc/emacs/custom.texi

index 190ba5ff8ee638214f62d46d95fa13d1f34d81eb..4d2b91dd7854798199977e243302b76a5006ea45 100644 (file)
@@ -1,5 +1,7 @@
 2009-06-04  Chong Yidong  <cyd@stupidchicken.com>
 
+       * custom.texi (Init Examples): Add example of changing load-path.
+
        * building.texi (Lisp Libraries): Add example of changing
        load-path (Bug#3446).
 
index 5cfc19cc1d836a2b3f5ea2a8780122283fbd7d4e..f0a63855f2dfacad4e2f29fc2164c9f02c3659b6 100644 (file)
@@ -2233,6 +2233,15 @@ Write a single-quote (@code{'}) followed by the Lisp object you want.
 Lisp expressions:
 
 @itemize @bullet
+@item
+Add a directory to the variable @code{load-path}.  You can then put
+Lisp libraries that are not included with Emacs in this directory, and
+load them with @kbd{M-x load-library}.  @xref{Lisp Libraries}.
+
+@example
+(add-to-list 'load-path "/path/to/lisp/libraries")
+@end example
+
 @item
 Make @key{TAB} in C mode just insert a tab if point is in the middle of a
 line.