diff options
author | Michael Kifer <kifer@cs.stonybrook.edu> | 2003-06-01 17:17:10 +0000 |
---|---|---|
committer | Michael Kifer <kifer@cs.stonybrook.edu> | 2003-06-01 17:17:10 +0000 |
commit | 27e4fd45a6bc0273f632d3121ef94edc2e8d3efb (patch) | |
tree | ed10db14d8257019629d875bf5af9ce8feff8b8a /lisp/desktop.el | |
parent | 665a7c3b517835ffd5b123bf85ceaa6201ebc8ca (diff) | |
download | emacs-27e4fd45a6bc0273f632d3121ef94edc2e8d3efb.tar.gz |
2003-06-01 Michael Kifer <kifer@cs.stonybrook.edu>
* desktop.el (desktop-create-buffer): Added (desktop-first-buffer) to
the let-statement to avoid the startup error that desktop-first-buffer
is undefined.
Diffstat (limited to 'lisp/desktop.el')
-rw-r--r-- | lisp/desktop.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el index 7508d46ce29..dbffe85c005 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -875,6 +875,7 @@ This function always sets `desktop-enable' to t." (let ( (buffer-list (buffer-list)) (hlist desktop-buffer-handlers) + (desktop-first-buffer) (result) (handler) ) |