aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kifer2003-06-01 17:17:10 +0000
committerMichael Kifer2003-06-01 17:17:10 +0000
commit27e4fd45a6bc0273f632d3121ef94edc2e8d3efb (patch)
treeed10db14d8257019629d875bf5af9ce8feff8b8a
parent665a7c3b517835ffd5b123bf85ceaa6201ebc8ca (diff)
downloademacs-27e4fd45a6bc0273f632d3121ef94edc2e8d3efb.tar.gz
emacs-27e4fd45a6bc0273f632d3121ef94edc2e8d3efb.zip
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.
-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 85c477489a9..d936d62026f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12003-06-01 Michael Kifer <kifer@cs.stonybrook.edu>
2
3 * desktop.el (desktop-create-buffer): Added (desktop-first-buffer) to
4 the let-statement to avoid the startup error that desktop-first-buffer
5 is undefined.
6
12003-06-01 Andreas Schwab <schwab@suse.de> 72003-06-01 Andreas Schwab <schwab@suse.de>
2 8
3 * man.el (Man-name-regexp): Also match Latin-1 soft hyphen. 9 * man.el (Man-name-regexp): Also match Latin-1 soft hyphen.
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."
875 (let ( 875 (let (
876 (buffer-list (buffer-list)) 876 (buffer-list (buffer-list))
877 (hlist desktop-buffer-handlers) 877 (hlist desktop-buffer-handlers)
878 (desktop-first-buffer)
878 (result) 879 (result)
879 (handler) 880 (handler)
880 ) 881 )