]> git.eshelyaron.com Git - emacs.git/commitdiff
2003-06-01 Michael Kifer <kifer@cs.stonybrook.edu>
authorMichael Kifer <kifer@cs.stonybrook.edu>
Sun, 1 Jun 2003 17:17:10 +0000 (17:17 +0000)
committerMichael Kifer <kifer@cs.stonybrook.edu>
Sun, 1 Jun 2003 17:17:10 +0000 (17:17 +0000)
* desktop.el (desktop-create-buffer): Added (desktop-first-buffer) to
the let-statement to avoid the startup error that desktop-first-buffer
is undefined.

lisp/ChangeLog
lisp/desktop.el

index 85c477489a9b28e0762fe38b32658ccdb1238e63..d936d62026f5f0849cae2d854129c73d82c0ff61 100644 (file)
@@ -1,3 +1,9 @@
+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.
+       
 2003-06-01  Andreas Schwab  <schwab@suse.de>
 
        * man.el (Man-name-regexp): Also match Latin-1 soft hyphen.
index 7508d46ce29c556a2b9609d7c2eba674f743ee72..dbffe85c00588411861e2ce23d23ae21de8ffb4f 100644 (file)
@@ -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)
     )