diff options
author | Glenn Morris <rgm@gnu.org> | 2020-02-01 07:50:10 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2020-02-01 07:50:10 -0800 |
commit | 0ceb5d0b23e64712d5a2c29b642489524cdbd6d4 (patch) | |
tree | e6180c252e0dab1f8992bac997c361a39426ba8c /lisp/desktop.el | |
parent | fcac8fcf17ddfef218bb97db4322083077ec7306 (diff) | |
parent | 5bf2ef3871b0f42266f6bde7c0d2d607e9625770 (diff) | |
download | emacs-0ceb5d0b23e64712d5a2c29b642489524cdbd6d4.tar.gz emacs-0ceb5d0b23e64712d5a2c29b642489524cdbd6d4.tar.bz2 emacs-0ceb5d0b23e64712d5a2c29b642489524cdbd6d4.zip |
Merge from origin/emacs-27
5bf2ef3871 Add more blackboard bold characters to TeX input method
c362a624d8 ; * lisp/progmodes/gdb-mi.el (gdb-handle-reply): Fix comme...
2b1e18ae85 Protect against errors in gdb-mi.el handlers
baceb8e84d Allow exiting the Python interpreter of a GDB session
2e66013dcf Ensure minibuffer input is added to history in read_minibuf
de41161534 Tab-bar related fixes.
247f2cfa02 ; ChangeLog.3 fixes.
e1a712bb3f * admin/authors.el: Add missing entries.
Diffstat (limited to 'lisp/desktop.el')
-rw-r--r-- | lisp/desktop.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el index 9538bb4a34f..de601a4de8c 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -946,7 +946,12 @@ which means to truncate VAR's value to at most MAX-SIZE elements ")\n")))) ;; ---------------------------------------------------------------------------- -(defvar desktop-buffers-not-to-save-function nil) +(defvar desktop-buffers-not-to-save-function nil + "Function identifying buffers that are to be excluded from saving. +Like `desktop-buffers-not-to-save' it can be used to check whether +a given buffer should not be saved. It takes the same arguments as +`desktop-save-buffer-p' and should return nil if buffer should not +have its state saved in the desktop file.") (defun desktop-save-buffer-p (filename bufname mode &rest rest) "Return t if buffer should have its state saved in the desktop file. |