diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-02 03:37:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-02 03:37:27 +0000 |
commit | 21f521c0db6b683a2407a02d8a1706df8c9a7baf (patch) | |
tree | c1188fcd64d508c1d93f551bc7f94d5434b7d616 /lisp/desktop.el | |
parent | 9492daf25c9f8f8e21ad13da51157351d2c6f5d7 (diff) | |
download | emacs-21f521c0db6b683a2407a02d8a1706df8c9a7baf.tar.gz |
(desktop-clear): Don't kill buffers here.
Diffstat (limited to 'lisp/desktop.el')
-rw-r--r-- | lisp/desktop.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el index 56ac600dbc4..cd44f47467c 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -235,7 +235,8 @@ the like shorter." search-ring-yank-pointer nil regexp-search-ring nil regexp-search-ring-yank-pointer nil) - (mapcar (function kill-buffer) (buffer-list)) +;;; What a screw! +;;; (mapcar (function kill-buffer) (buffer-list)) (delete-other-windows)) ;; ---------------------------------------------------------------------------- (add-hook 'kill-emacs-hook 'desktop-kill) |