aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMichael Kifer <[email protected]>2003-06-01 17:17:10 +0000
committerMichael Kifer <[email protected]>2003-06-01 17:17:10 +0000
commit27e4fd45a6bc0273f632d3121ef94edc2e8d3efb (patch)
treeed10db14d8257019629d875bf5af9ce8feff8b8a /lisp
parent665a7c3b517835ffd5b123bf85ceaa6201ebc8ca (diff)
2003-06-01 Michael Kifer <[email protected]>
* 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')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/desktop.el1
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 85c477489a..d936d62026 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2003-06-01 Michael Kifer <[email protected]>
+
+ * desktop.el (desktop-create-buffer): Added (desktop-first-buffer) to
+ the let-statement to avoid the startup error that desktop-first-buffer
+ is undefined.
+
2003-06-01 Andreas Schwab <[email protected]>
* man.el (Man-name-regexp): Also match Latin-1 soft hyphen.
diff --git a/lisp/desktop.el b/lisp/desktop.el
index 7508d46ce2..dbffe85c00 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)
)