diff options
author | Juri Linkov <juri@jurta.org> | 2014-02-07 09:51:56 +0200 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2014-02-07 09:51:56 +0200 |
commit | 7d7a68d860eaf54e81c235952e740a8126c1cff8 (patch) | |
tree | 8ae19fb707a947b56d7f62a21ee616703a577645 /lisp/desktop.el | |
parent | 2b777cd9a2bb84a5d3c3b14c70eb2efc0b8de124 (diff) | |
download | emacs-7d7a68d860eaf54e81c235952e740a8126c1cff8.tar.gz |
* lisp/desktop.el (desktop-buffers-not-to-save): Change default from nil to "\\` ".
Fixes: debbugs:16651
Diffstat (limited to 'lisp/desktop.el')
-rw-r--r-- | lisp/desktop.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el index 161ddc717cc..be348b60a99 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -353,11 +353,11 @@ modes are restored automatically; they should not be listed here." :type '(repeat symbol) :group 'desktop) -(defcustom desktop-buffers-not-to-save nil +(defcustom desktop-buffers-not-to-save "\\` " "Regexp identifying buffers that are to be excluded from saving." :type '(choice (const :tag "None" nil) regexp) - :version "23.2" ; set to nil + :version "24.4" ; skip invisible temporary buffers :group 'desktop) ;; Skip tramp and ange-ftp files |