diff options
| author | Michael Kifer | 2003-06-01 17:17:10 +0000 |
|---|---|---|
| committer | Michael Kifer | 2003-06-01 17:17:10 +0000 |
| commit | 27e4fd45a6bc0273f632d3121ef94edc2e8d3efb (patch) | |
| tree | ed10db14d8257019629d875bf5af9ce8feff8b8a | |
| parent | 665a7c3b517835ffd5b123bf85ceaa6201ebc8ca (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/desktop.el | 1 |
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 @@ | |||
| 1 | 2003-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 | |||
| 1 | 2003-06-01 Andreas Schwab <schwab@suse.de> | 7 | 2003-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 | ) |