diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/desktop.el | 2 |
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 @@ | |||
| 1 | 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2009-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. |
| 225 | The base name of the file is specified in `desktop-base-file-name'." | 225 | The base name of the file is specified in `desktop-base-file-name'." |
| 226 | :type '(repeat directory) | 226 | :type '(repeat directory) |