comparison lisp/desktop.el @ 14040:187735b53d52

Comment fixes.
author Karl Heuer <kwzh@gnu.org>
date Fri, 05 Jan 1996 22:21:28 +0000
parents f86e18ff3736
children 83f275dcd93a
comparison
equal deleted inserted replaced
14039:831c5fda97f4 14040:187735b53d52
142 "List of local variables to save for each buffer. 142 "List of local variables to save for each buffer.
143 The variables are saved only when they really are local.") 143 The variables are saved only when they really are local.")
144 (make-variable-buffer-local 'desktop-locals-to-save) 144 (make-variable-buffer-local 'desktop-locals-to-save)
145 145
146 ;; We skip .log files because they are normally temporary. 146 ;; We skip .log files because they are normally temporary.
147 ;; (ftp) files because they require passwords and whatsnot. 147 ;; (ftp) files because they require passwords and whatnot.
148 ;; TAGS files to save time (tags-file-name is saved instead). 148 ;; TAGS files to save time (tags-file-name is saved instead).
149 (defvar desktop-buffers-not-to-save 149 (defvar desktop-buffers-not-to-save
150 "\\(^nn\\.a[0-9]+\\|\\.log\\|(ftp)\\|^tags\\|^TAGS\\)$" 150 "\\(^nn\\.a[0-9]+\\|\\.log\\|(ftp)\\|^tags\\|^TAGS\\)$"
151 "Regexp identifying buffers that are to be excluded from saving.") 151 "Regexp identifying buffers that are to be excluded from saving.")
152 152