aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/desktop.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 595f88462bf..eeb90cb28c5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12009-09-15 Stefan Monnier <monnier@iro.umontreal.ca> 12009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * desktop.el (desktop-path): Check user-emacs-directory.
4
3 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function. 5 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
4 6
5 * loadup.el: Use after-load-functions to GC after loading each file. 7 * loadup.el: Use after-load-functions to GC after loading each file.
diff --git a/lisp/desktop.el b/lisp/desktop.el
index 5eebfd17aee..29230e07cb5 100644
--- a/lisp/desktop.el
+++ b/lisp/desktop.el
@@ -220,7 +220,7 @@ the normal hook `desktop-not-loaded-hook' is run."
220 :group 'desktop 220 :group 'desktop
221 :version "22.2") 221 :version "22.2")
222 222
223(defcustom desktop-path '("." "~") 223(defcustom desktop-path (list "." user-emacs-directory "~")
224 "List of directories to search for the desktop file. 224 "List of directories to search for the desktop file.
225The base name of the file is specified in `desktop-base-file-name'." 225The base name of the file is specified in `desktop-base-file-name'."
226 :type '(repeat directory) 226 :type '(repeat directory)