]> git.eshelyaron.com Git - emacs.git/commitdiff
Document 'desktop-files-not-to-save'
authorRobert Pluim <rpluim@gmail.com>
Sat, 17 Feb 2018 11:01:19 +0000 (13:01 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 17 Feb 2018 11:01:19 +0000 (13:01 +0200)
* doc/emacs/misc.texi (Saving Emacs Sessions): Add description
of 'desktop-files-not-to-save'.

* lisp/desktop.el (desktop-files-not-to-save): Explain that
the default value excludes buffers visiting remote files.

doc/emacs/misc.texi
lisp/desktop.el

index ae6f9446f28ede866cdc0531a830fe82a8bbf08c..cfc689e464196a27742e4a8cd4da625f3236a26b 100644 (file)
@@ -2434,6 +2434,11 @@ To disable this, set @code{desktop-restore-frames} to @code{nil}.
 (See that variable's documentation for some related options
 that you can customize to fine-tune this behavior.)
 
+@vindex desktop-files-not-to-save
+Information about buffers visiting remote files is not saved by
+default.  Customize the variable @code{desktop-files-not-to-save} to
+change this.
+
 @vindex frameset-filter-alist
    When the desktop restores the frame and window configuration, it
 uses the recorded values of frame parameters, disregarding any
index 069d273d1d16aa1e48ce3216eeba88e1ea9c38d3..b98319bdcf5af9990703b61c0e81bf9d4acff4b3 100644 (file)
@@ -393,7 +393,8 @@ or `desktop-modes-not-to-save'."
 ;; Skip tramp and ange-ftp files
 (defcustom desktop-files-not-to-save
   "\\(^/[^/:]*:\\|(ftp)$\\)"
-  "Regexp identifying files whose buffers are to be excluded from saving."
+  "Regexp identifying files whose buffers are to be excluded from saving.
+The default value excludes buffers visiting remote files."
   :type '(choice (const :tag "None" nil)
                 regexp)
   :group 'desktop)