Variable: desktop-locals-to-save

desktop-locals-to-save is a customizable variable defined in desktop.el.gz.

Value

(TeX-master highlight-changes-mode desktop-locals-to-save
	    truncate-lines case-fold-search case-replace fill-column
	    overwrite-mode change-log-default-name line-number-mode
	    column-number-mode size-indication-mode
	    buffer-file-coding-system buffer-display-time
	    indent-tabs-mode tab-width indicate-buffer-boundaries
	    indicate-empty-lines show-trailing-whitespace)

Documentation

List of local variables to save for each buffer.

The variables are saved only when they really are local. Conventional minor modes are restored automatically; they should not be listed here.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/desktop.el.gz
;;;###autoload
(defcustom desktop-locals-to-save
  '(desktop-locals-to-save  ; Itself!  Think it over.
    truncate-lines
    case-fold-search
    case-replace
    fill-column
    overwrite-mode
    change-log-default-name
    line-number-mode
    column-number-mode
    size-indication-mode
    buffer-file-coding-system
    buffer-display-time
    indent-tabs-mode
    tab-width
    indicate-buffer-boundaries
    indicate-empty-lines
    show-trailing-whitespace)
  "List of local variables to save for each buffer.
The variables are saved only when they really are local.  Conventional minor
modes are restored automatically; they should not be listed here."
  :type '(repeat symbol)
  :group 'desktop)