From 27e4fd45a6bc0273f632d3121ef94edc2e8d3efb Mon Sep 17 00:00:00 2001 From: Michael Kifer Date: Sun, 1 Jun 2003 17:17:10 +0000 Subject: [PATCH] 2003-06-01 Michael Kifer * 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 | 6 ++++++ lisp/desktop.el | 1 + 2 files changed, 7 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 85c477489a9..d936d62026f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2003-06-01 Michael Kifer + + * 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 * 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." (let ( (buffer-list (buffer-list)) (hlist desktop-buffer-handlers) + (desktop-first-buffer) (result) (handler) ) -- 2.39.5