[TMP] enable load_prefer_newer
[bpt/emacs.git] / lisp / desktop.el
CommitLineData
a912c016 1;;; desktop.el --- save partial status of Emacs when killed -*- lexical-binding: t -*-
6343ed61 2
c863b6ad 3;; Copyright (C) 1993-1995, 1997, 2000-2014 Free Software Foundation, Inc.
6343ed61
RS
4
5;; Author: Morten Welinder <terra@diku.dk>
3ea96cac 6;; Keywords: convenience
c5e87d10 7;; Favorite-brand-of-beer: None, I hate beer.
6343ed61
RS
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
6343ed61 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
6343ed61
RS
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
6343ed61
RS
23
24;;; Commentary:
25
0b9bd504
RS
26;; Save the Desktop, i.e.,
27;; - some global variables
28;; - the list of buffers with associated files. For each buffer also
29;; - the major mode
30;; - the default directory
31;; - the point
32;; - the mark & mark-active
33;; - buffer-read-only
ec4c6f22 34;; - some local variables
b958c0ad 35;; - frame and window configuration
6343ed61 36
6b61353c 37;; To use this, use customize to turn on desktop-save-mode or add the
865fe16f 38;; following line somewhere in your init file:
0b9bd504 39;;
6b61353c 40;; (desktop-save-mode 1)
0b9bd504 41;;
6b61353c 42;; For further usage information, look at the section
20535d5b 43;; (info "(emacs)Saving Emacs Sessions") in the GNU Emacs Manual.
6b61353c
KH
44
45;; When the desktop module is loaded, the function `desktop-kill' is
341c2f07 46;; added to the `kill-emacs-hook'. This function is responsible for
6b61353c 47;; saving the desktop when Emacs is killed. Furthermore an anonymous
341c2f07 48;; function is added to the `after-init-hook'. This function is
6b61353c 49;; responsible for loading the desktop when Emacs is started.
ec4c6f22 50
0f4804e7
LH
51;; Special handling.
52;; -----------------
53;; Variables `desktop-buffer-mode-handlers' and `desktop-minor-mode-handlers'
54;; are supplied to handle special major and minor modes respectively.
55;; `desktop-buffer-mode-handlers' is an alist of major mode specific functions
341c2f07 56;; to restore a desktop buffer. Elements must have the form
be617bbf 57;;
0f4804e7 58;; (MAJOR-MODE . RESTORE-BUFFER-FUNCTION).
be617bbf 59;;
0f4804e7 60;; Functions listed are called by `desktop-create-buffer' when `desktop-read'
341c2f07 61;; evaluates the desktop file. Buffers with a major mode not specified here,
0f4804e7
LH
62;; are restored by the default handler `desktop-restore-file-buffer'.
63;; `desktop-minor-mode-handlers' is an alist of functions to restore
64;; non-standard minor modes. Elements must have the form
be617bbf 65;;
0f4804e7 66;; (MINOR-MODE . RESTORE-FUNCTION).
be617bbf 67;;
0f4804e7
LH
68;; Functions are called by `desktop-create-buffer' to restore minor modes.
69;; Minor modes not specified here, are restored by the standard minor mode
70;; function. If you write a module that defines a major or minor mode that
71;; needs a special handler, then place code like
72
73;; (defun foo-restore-desktop-buffer
74;; ...
75;; (add-to-list 'desktop-buffer-mode-handlers
76;; '(foo-mode . foo-restore-desktop-buffer))
77
78;; or
79
80;; (defun bar-desktop-restore
81;; ...
82;; (add-to-list 'desktop-minor-mode-handlers
83;; '(bar-mode . bar-desktop-restore))
84
fb8a6326 85;; in the module itself, and make sure that the mode function is
341c2f07 86;; autoloaded. See the docstrings of `desktop-buffer-mode-handlers' and
0f4804e7
LH
87;; `desktop-minor-mode-handlers' for more info.
88
89;; Minor modes.
90;; ------------
91;; Conventional minor modes (see node "Minor Mode Conventions" in the elisp
92;; manual) are handled in the following way:
93;; When `desktop-save' saves the state of a buffer to the desktop file, it
94;; saves as `desktop-minor-modes' the list of names of those variables in
95;; `minor-mode-alist' that have a non-nil value.
96;; When `desktop-create' restores the buffer, each of the symbols in
97;; `desktop-minor-modes' is called as function with parameter 1.
98;; The variables `desktop-minor-mode-table' and `desktop-minor-mode-handlers'
99;; are used to handle non-conventional minor modes. `desktop-save' uses
100;; `desktop-minor-mode-table' to map minor mode variables to minor mode
341c2f07 101;; functions before writing `desktop-minor-modes'. If a minor mode has a
0f4804e7
LH
102;; variable name that is different form its function name, an entry
103
104;; (NAME RESTORE-FUNCTION)
105
106;; should be added to `desktop-minor-mode-table'. If a minor mode should not
107;; be restored, RESTORE-FUNCTION should be set to nil. `desktop-create' uses
108;; `desktop-minor-mode-handlers' to lookup minor modes that needs a restore
109;; function different from the usual minor mode function.
110;; ---------------------------------------------------------------------------
47640244 111
ec4c6f22
RS
112;; By the way: don't use desktop.el to customize Emacs -- the file .emacs
113;; in your home directory is used for that. Saving global default values
114;; for buffers is an example of misuse.
115
0b9bd504
RS
116;; PLEASE NOTE: The kill ring can be saved as specified by the variable
117;; `desktop-globals-to-save' (by default it isn't). This may result in saving
118;; things you did not mean to keep. Use M-x desktop-clear RET.
ec4c6f22 119
fa379636
KH
120;; Thanks to hetrick@phys.uva.nl (Jim Hetrick) for useful ideas.
121;; avk@rtsg.mot.com (Andrew V. Klein) for a dired tip.
122;; chris@tecc.co.uk (Chris Boucher) for a mark tip.
123;; f89-kam@nada.kth.se (Klas Mellbourn) for a mh-e tip.
124;; kifer@sbkifer.cs.sunysb.edu (M. Kifer) for a bug hunt.
f4c73d07 125;; treese@lcs.mit.edu (Win Treese) for ange-ftp tips.
8c106d17 126;; pot@cnuce.cnr.it (Francesco Potortì) for misc. tips.
0b9bd504
RS
127;; ---------------------------------------------------------------------------
128;; TODO:
129;;
0b9bd504
RS
130;; Recognize more minor modes.
131;; Save mark rings.
6343ed61
RS
132
133;;; Code:
134
a1c80d9d 135(require 'cl-lib)
9421876d 136(require 'frameset)
a1c80d9d 137
4a2fce7a 138(defvar desktop-file-version "206"
6b61353c 139 "Version number of desktop file format.
4a2fce7a
RS
140Written into the desktop file and used at desktop read to provide
141backward compatibility.")
142
ec4c6f22 143;; ----------------------------------------------------------------------------
0b9bd504
RS
144;; USER OPTIONS -- settings you might want to play with.
145;; ----------------------------------------------------------------------------
bbf5eb28
RS
146
147(defgroup desktop nil
148 "Save status of Emacs when you exit."
149 :group 'frames)
150
e5bd0a28
SM
151;; Maintained for backward compatibility
152(define-obsolete-variable-alias 'desktop-enable 'desktop-save-mode "22.1")
6b61353c
KH
153;;;###autoload
154(define-minor-mode desktop-save-mode
06e21633 155 "Toggle desktop saving (Desktop Save mode).
c863b6ad
GM
156With a prefix argument ARG, enable Desktop Save mode if ARG is positive,
157and disable it otherwise. If called from Lisp, enable the mode if ARG
158is omitted or nil.
06e21633 159
c863b6ad
GM
160When Desktop Save mode is enabled, the state of Emacs is saved from
161one session to another. In particular, Emacs will save the desktop when
162it exits (this may prompt you; see the option `desktop-save'). The next
163time Emacs starts, if this mode is active it will restore the desktop.
164
165To manually save the desktop at any time, use the command `M-x desktop-save'.
166To load it, use `M-x desktop-read'.
167
168Once a desktop file exists, Emacs will auto-save it according to the
169option `desktop-auto-save-timeout'.
170
171To see all the options you can set, browse the `desktop' customization group.
172
173For further details, see info node `(emacs)Saving Emacs Sessions'."
6b61353c 174 :global t
2b777cd9
JL
175 :group 'desktop
176 (if desktop-save-mode
a4d8b73e
JL
177 (desktop-auto-save-enable)
178 (desktop-auto-save-disable)))
6b61353c 179
e88110db
JB
180(defun desktop-save-mode-off ()
181 "Disable `desktop-save-mode'. Provided for use in hooks."
182 (desktop-save-mode 0))
183
4a2fce7a 184(defcustom desktop-save 'ask-if-new
9201cc28 185 "Specifies whether the desktop should be saved when it is killed.
6b61353c
KH
186A desktop is killed when the user changes desktop or quits Emacs.
187Possible values are:
4a2fce7a
RS
188 t -- always save.
189 ask -- always ask.
190 ask-if-new -- ask if no desktop file exists, otherwise just save.
191 ask-if-exists -- ask if desktop file exists, otherwise don't save.
192 if-exists -- save if desktop file exists, otherwise don't save.
193 nil -- never save.
6b61353c 194The desktop is never saved when `desktop-save-mode' is nil.
cc8b76bf 195The variables `desktop-dirname' and `desktop-base-file-name'
6b61353c 196determine where the desktop is saved."
11425834
LH
197 :type
198 '(choice
4a2fce7a
RS
199 (const :tag "Always save" t)
200 (const :tag "Always ask" ask)
201 (const :tag "Ask if desktop file is new, else do save" ask-if-new)
202 (const :tag "Ask if desktop file exists, else don't save" ask-if-exists)
203 (const :tag "Save if desktop file exists, else don't" if-exists)
204 (const :tag "Never save" nil))
af61551b 205 :group 'desktop
bf247b6e 206 :version "22.1")
4a2fce7a 207
6c8e0ae6
JL
208(defcustom desktop-auto-save-timeout auto-save-timeout
209 "Number of seconds idle time before auto-save of the desktop.
7f118009 210The idle timer activates auto-saving only when window configuration changes.
c863b6ad 211This applies to an existing desktop file when `desktop-save-mode' is enabled.
6c8e0ae6 212Zero or nil means disable auto-saving due to idleness."
5db9dace
JL
213 :type '(choice (const :tag "Off" nil)
214 (integer :tag "Seconds"))
215 :set (lambda (symbol value)
216 (set-default symbol value)
7f118009
JL
217 (ignore-errors
218 (if (and (integerp value) (> value 0))
a4d8b73e
JL
219 (desktop-auto-save-enable value)
220 (desktop-auto-save-disable))))
5db9dace
JL
221 :group 'desktop
222 :version "24.4")
223
1f7efe1b
JB
224(defcustom desktop-load-locked-desktop 'ask
225 "Specifies whether the desktop should be loaded if locked.
226Possible values are:
227 t -- load anyway.
228 nil -- don't load.
229 ask -- ask the user.
230If the value is nil, or `ask' and the user chooses not to load the desktop,
231the normal hook `desktop-not-loaded-hook' is run."
232 :type
233 '(choice
234 (const :tag "Load anyway" t)
235 (const :tag "Don't load" nil)
236 (const :tag "Ask the user" ask))
237 :group 'desktop
8f3f313d 238 :version "22.2")
1f7efe1b 239
cd6ef82d
GM
240(define-obsolete-variable-alias 'desktop-basefilename
241 'desktop-base-file-name "22.1")
242
4a2fce7a 243(defcustom desktop-base-file-name
fc715501 244 (convert-standard-filename ".emacs.desktop")
6b61353c 245 "Name of file for Emacs desktop, excluding the directory part."
813dbb2d
RS
246 :type 'file
247 :group 'desktop)
6343ed61 248
e88110db
JB
249(defcustom desktop-base-lock-name
250 (convert-standard-filename ".emacs.desktop.lock")
251 "Name of lock file for Emacs desktop, excluding the directory part."
252 :type 'file
253 :group 'desktop
8f3f313d 254 :version "22.2")
e88110db 255
e76f0800 256(defcustom desktop-path (list user-emacs-directory "~")
4a2fce7a
RS
257 "List of directories to search for the desktop file.
258The base name of the file is specified in `desktop-base-file-name'."
259 :type '(repeat directory)
af61551b 260 :group 'desktop
a3b337cd 261 :version "23.2") ; user-emacs-directory added
4a2fce7a 262
bbf5eb28 263(defcustom desktop-missing-file-warning nil
6c27fdb9 264 "If non-nil, offer to recreate the buffer of a deleted file.
ebb39555
LH
265Also pause for a moment to display message about errors signaled in
266`desktop-buffer-mode-handlers'.
267
268If nil, just print error messages in the message buffer."
bbf5eb28 269 :type 'boolean
af61551b 270 :group 'desktop
bf247b6e 271 :version "22.1")
6343ed61 272
4a2fce7a 273(defcustom desktop-no-desktop-file-hook nil
6b61353c 274 "Normal hook run when `desktop-read' can't find a desktop file.
11425834 275Run in the directory in which the desktop file was sought.
8649a87b 276May be used to show a dired buffer."
4a2fce7a 277 :type 'hook
af61551b 278 :group 'desktop
bf247b6e 279 :version "22.1")
4a2fce7a 280
e88110db
JB
281(defcustom desktop-not-loaded-hook nil
282 "Normal hook run when the user declines to re-use a desktop file.
283Run in the directory in which the desktop file was found.
284May be used to deal with accidental multiple Emacs jobs."
285 :type 'hook
286 :group 'desktop
287 :options '(desktop-save-mode-off save-buffers-kill-emacs)
8f3f313d 288 :version "22.2")
e88110db 289
4a2fce7a 290(defcustom desktop-after-read-hook nil
6b61353c 291 "Normal hook run after a successful `desktop-read'.
8649a87b 292May be used to show a buffer list."
4a2fce7a 293 :type 'hook
af61551b 294 :group 'desktop
11425834 295 :options '(list-buffers)
bf247b6e 296 :version "22.1")
4a2fce7a
RS
297
298(defcustom desktop-save-hook nil
6b61353c 299 "Normal hook run before the desktop is saved in a desktop file.
11425834
LH
300Run with the desktop buffer current with only the header present.
301May be used to add to the desktop code or to truncate history lists,
302for example."
4a2fce7a
RS
303 :type 'hook
304 :group 'desktop)
305
340db502
LH
306(defcustom desktop-globals-to-save
307 '(desktop-missing-file-warning
308 tags-file-name
309 tags-table-list
310 search-ring
311 regexp-search-ring
c760f19e
CY
312 register-alist
313 file-name-history)
6b61353c
KH
314 "List of global variables saved by `desktop-save'.
315An element may be variable name (a symbol) or a cons cell of the form
316\(VAR . MAX-SIZE), which means to truncate VAR's value to at most
317MAX-SIZE elements (if the value is a list) before saving the value.
4a2fce7a
RS
318Feature: Saving `kill-ring' implies saving `kill-ring-yank-pointer'."
319 :type '(repeat (restricted-sexp :match-alternatives (symbolp consp)))
320 :group 'desktop)
321
340db502
LH
322(defcustom desktop-globals-to-clear
323 '(kill-ring
324 kill-ring-yank-pointer
325 search-ring
326 search-ring-yank-pointer
327 regexp-search-ring
328 regexp-search-ring-yank-pointer)
150f39ee 329 "List of global variables that `desktop-clear' will clear.
4a2fce7a 330An element may be variable name (a symbol) or a cons cell of the form
cc8b76bf
JB
331\(VAR . FORM). Symbols are set to nil and for cons cells VAR is set
332to the value obtained by evaluating FORM."
4a2fce7a 333 :type '(repeat (restricted-sexp :match-alternatives (symbolp consp)))
af61551b 334 :group 'desktop
bf247b6e 335 :version "22.1")
4a2fce7a 336
0f4804e7 337(defcustom desktop-clear-preserve-buffers
3845c322
GM
338 '("\\*scratch\\*" "\\*Messages\\*" "\\*server\\*" "\\*tramp/.+\\*"
339 "\\*Warnings\\*")
9201cc28 340 "List of buffers that `desktop-clear' should not delete.
0f4804e7
LH
341Each element is a regular expression. Buffers with a name matched by any of
342these won't be deleted."
3845c322 343 :version "23.3" ; added Warnings - bug#6336
4a2fce7a
RS
344 :type '(repeat string)
345 :group 'desktop)
340db502 346
0f4804e7 347;;;###autoload
340db502
LH
348(defcustom desktop-locals-to-save
349 '(desktop-locals-to-save ; Itself! Think it over.
350 truncate-lines
351 case-fold-search
352 case-replace
353 fill-column
354 overwrite-mode
355 change-log-default-name
356 line-number-mode
0f4804e7
LH
357 column-number-mode
358 size-indication-mode
359 buffer-file-coding-system
360 indent-tabs-mode
11425834 361 tab-width
0f4804e7
LH
362 indicate-buffer-boundaries
363 indicate-empty-lines
364 show-trailing-whitespace)
577ed2b2 365 "List of local variables to save for each buffer.
0f4804e7
LH
366The variables are saved only when they really are local. Conventional minor
367modes are restored automatically; they should not be listed here."
6b61353c
KH
368 :type '(repeat symbol)
369 :group 'desktop)
ec4c6f22 370
7d7a68d8 371(defcustom desktop-buffers-not-to-save "\\` "
4a2fce7a 372 "Regexp identifying buffers that are to be excluded from saving."
a6c2c80c
EZ
373 :type '(choice (const :tag "None" nil)
374 regexp)
7d7a68d8 375 :version "24.4" ; skip invisible temporary buffers
4a2fce7a 376 :group 'desktop)
6343ed61 377
6b61353c 378;; Skip tramp and ange-ftp files
bbf5eb28 379(defcustom desktop-files-not-to-save
a6c2c80c 380 "\\(^/[^/:]*:\\|(ftp)$\\)"
bbf5eb28 381 "Regexp identifying files whose buffers are to be excluded from saving."
a6c2c80c
EZ
382 :type '(choice (const :tag "None" nil)
383 regexp)
bbf5eb28 384 :group 'desktop)
fa379636 385
df410295
JL
386;; We skip TAGS files to save time (tags-file-name is saved instead).
387(defcustom desktop-modes-not-to-save
388 '(tags-table-mode)
80f9f3db
SM
389 "List of major modes whose buffers should not be saved."
390 :type '(repeat symbol)
391 :group 'desktop)
392
b958c0ad 393(defcustom desktop-restore-frames t
46456005
GM
394 "When non-nil, save and restore the frame and window configuration.
395See related options `desktop-restore-reuses-frames',
396`desktop-restore-in-current-display', and `desktop-restore-forces-onscreen'."
39c0e36f
JB
397 :type 'boolean
398 :group 'desktop
399 :version "24.4")
400
2addf922 401(defcustom desktop-restore-in-current-display nil
46456005
GM
402 "Controls how restoring of frames treats displays.
403If t, restores frames into the current display.
404If nil, restores frames into their original displays (if possible).
405If `delete', deletes frames on other displays instead of restoring them."
b958c0ad
JB
406 :type '(choice (const :tag "Restore in current display" t)
407 (const :tag "Restore in original display" nil)
9c61f806 408 (const :tag "Delete frames in other displays" delete))
b958c0ad
JB
409 :group 'desktop
410 :version "24.4")
411
ddeffb17 412(defcustom desktop-restore-forces-onscreen t
46456005
GM
413 "If t, restores frames that are fully offscreen onscreen instead.
414If `all', also restores frames that are partially offscreen onscreen.
415
416Note that checking of frame boundaries is only approximate.
417It can fail to reliably detect frames whose onscreen/offscreen state
418depends on a few pixels, especially near the right / bottom borders
419of the screen."
ddeffb17 420 :type '(choice (const :tag "Only fully offscreen frames" t)
4538c058 421 (const :tag "Also partially offscreen frames" all)
ddeffb17
JB
422 (const :tag "Do not force frames onscreen" nil))
423 :group 'desktop
424 :version "24.4")
425
9421876d 426(defcustom desktop-restore-reuses-frames t
b958c0ad 427 "If t, restoring frames reuses existing frames.
46456005
GM
428If nil, deletes existing frames.
429If `keep', keeps existing frames and does not reuse them."
b958c0ad
JB
430 :type '(choice (const :tag "Reuse existing frames" t)
431 (const :tag "Delete existing frames" nil)
d5671a82 432 (const :tag "Keep existing frames" :keep))
2addf922
JB
433 :group 'desktop
434 :version "24.4")
435
4a2fce7a 436(defcustom desktop-file-name-format 'absolute
9201cc28 437 "Format in which desktop file names should be saved.
4a2fce7a
RS
438Possible values are:
439 absolute -- Absolute file name.
440 tilde -- Relative to ~.
441 local -- Relative to directory of desktop file."
442 :type '(choice (const absolute) (const tilde) (const local))
af61551b 443 :group 'desktop
bf247b6e 444 :version "22.1")
569c754e 445
150f39ee
LH
446(defcustom desktop-restore-eager t
447 "Number of buffers to restore immediately.
448Remaining buffers are restored lazily (when Emacs is idle).
449If value is t, all buffers are restored immediately."
0ba9bc53 450 :type '(choice (const t) integer)
150f39ee 451 :group 'desktop
bf247b6e 452 :version "22.1")
150f39ee
LH
453
454(defcustom desktop-lazy-verbose t
455 "Verbose reporting of lazily created buffers."
456 :type 'boolean
457 :group 'desktop
bf247b6e 458 :version "22.1")
150f39ee
LH
459
460(defcustom desktop-lazy-idle-delay 5
461 "Idle delay before starting to create buffers.
462See `desktop-restore-eager'."
463 :type 'integer
464 :group 'desktop
bf247b6e 465 :version "22.1")
150f39ee 466
e5780ae1 467;;;###autoload
acfcc8c5 468(defvar-local desktop-save-buffer nil
ebb39555 469 "When non-nil, save buffer status in desktop file.
ebb39555 470
b89c5a72
JB
471If the value is a function, it is called by `desktop-save' with argument
472DESKTOP-DIRNAME to obtain auxiliary information to save in the desktop
ebb39555 473file along with the state of the buffer for which it was called.
b6b70cda 474
6b61353c 475When file names are returned, they should be formatted using the call
e5780ae1 476\"(desktop-file-name FILE-NAME DESKTOP-DIRNAME)\".
4a2fce7a 477
0f4804e7
LH
478Later, when `desktop-read' evaluates the desktop file, auxiliary information
479is passed as the argument DESKTOP-BUFFER-MISC to functions in
480`desktop-buffer-mode-handlers'.")
ebb39555 481(make-obsolete-variable 'desktop-buffer-modes-to-save
cc8b76bf 482 'desktop-save-buffer "22.1")
e5780ae1 483(make-obsolete-variable 'desktop-buffer-misc-functions
cc8b76bf 484 'desktop-save-buffer "22.1")
b6b70cda 485
0f4804e7 486;;;###autoload
e76f0800 487(defvar desktop-buffer-mode-handlers nil
e5780ae1 488 "Alist of major mode specific functions to restore a desktop buffer.
0f4804e7
LH
489Functions listed are called by `desktop-create-buffer' when `desktop-read'
490evaluates the desktop file. List elements must have the form
491
492 (MAJOR-MODE . RESTORE-BUFFER-FUNCTION).
e5780ae1
LH
493
494Buffers with a major mode not specified here, are restored by the default
495handler `desktop-restore-file-buffer'.
496
55775448 497Handlers are called with argument list
4a2fce7a 498
9bcabb45 499 (DESKTOP-BUFFER-FILE-NAME DESKTOP-BUFFER-NAME DESKTOP-BUFFER-MISC)
e5780ae1
LH
500
501Furthermore, they may use the following variables:
4a2fce7a 502
ca70fe78
SM
503 `desktop-file-version'
504 `desktop-buffer-major-mode'
505 `desktop-buffer-minor-modes'
506 `desktop-buffer-point'
507 `desktop-buffer-mark'
508 `desktop-buffer-read-only'
509 `desktop-buffer-locals'
4a2fce7a 510
e5780ae1 511If a handler returns a buffer, then the saved mode settings
0f4804e7
LH
512and variable values for that buffer are copied into it.
513
514Modules that define a major mode that needs a special handler should contain
515code like
ec4c6f22 516
0f4804e7
LH
517 (defun foo-restore-desktop-buffer
518 ...
519 (add-to-list 'desktop-buffer-mode-handlers
520 '(foo-mode . foo-restore-desktop-buffer))
521
522Furthermore the major mode function must be autoloaded.")
ec4c6f22 523
498eb267 524;;;###autoload
e5780ae1
LH
525(put 'desktop-buffer-mode-handlers 'risky-local-variable t)
526(make-obsolete-variable 'desktop-buffer-handlers
cc8b76bf 527 'desktop-buffer-mode-handlers "22.1")
b6b70cda 528
47640244
GM
529(defcustom desktop-minor-mode-table
530 '((auto-fill-function auto-fill-mode)
5fff0265 531 (vc-mode nil)
f2168a4c 532 (vc-dired-mode nil)
fb8a6326
JB
533 (erc-track-minor-mode nil)
534 (savehist-mode nil))
47640244
GM
535 "Table mapping minor mode variables to minor mode functions.
536Each entry has the form (NAME RESTORE-FUNCTION).
537NAME is the name of the buffer-local variable indicating that the minor
538mode is active. RESTORE-FUNCTION is the function to activate the minor mode.
7d6ee4df 539RESTORE-FUNCTION nil means don't try to restore the minor mode.
47640244 540Only minor modes for which the name of the buffer-local variable
7bfa55b3 541and the name of the minor mode function are different have to be added to
0f4804e7 542this table. See also `desktop-minor-mode-handlers'."
47640244
GM
543 :type 'sexp
544 :group 'desktop)
545
0f4804e7 546;;;###autoload
e76f0800 547(defvar desktop-minor-mode-handlers nil
0f4804e7
LH
548 "Alist of functions to restore non-standard minor modes.
549Functions are called by `desktop-create-buffer' to restore minor modes.
550List elements must have the form
551
552 (MINOR-MODE . RESTORE-FUNCTION).
553
554Minor modes not specified here, are restored by the standard minor mode
555function.
556
557Handlers are called with argument list
558
559 (DESKTOP-BUFFER-LOCALS)
560
561Furthermore, they may use the following variables:
562
ca70fe78
SM
563 `desktop-file-version'
564 `desktop-buffer-file-name'
565 `desktop-buffer-name'
566 `desktop-buffer-major-mode'
567 `desktop-buffer-minor-modes'
568 `desktop-buffer-point'
569 `desktop-buffer-mark'
570 `desktop-buffer-read-only'
571 `desktop-buffer-misc'
0f4804e7
LH
572
573When a handler is called, the buffer has been created and the major mode has
574been set, but local variables listed in desktop-buffer-locals has not yet been
575created and set.
576
577Modules that define a minor mode that needs a special handler should contain
578code like
579
580 (defun foo-desktop-restore
581 ...
582 (add-to-list 'desktop-minor-mode-handlers
583 '(foo-mode . foo-desktop-restore))
584
585Furthermore the minor mode function must be autoloaded.
586
587See also `desktop-minor-mode-table'.")
588
498eb267 589;;;###autoload
0f4804e7
LH
590(put 'desktop-minor-mode-handlers 'risky-local-variable t)
591
0b9bd504
RS
592;; ----------------------------------------------------------------------------
593(defvar desktop-dirname nil
6b61353c 594 "The directory in which the desktop file should be saved.")
6343ed61 595
11425834
LH
596(defun desktop-full-file-name (&optional dirname)
597 "Return the full name of the desktop file in DIRNAME.
598DIRNAME omitted or nil means use `desktop-dirname'."
599 (expand-file-name desktop-base-file-name (or dirname desktop-dirname)))
600
e88110db
JB
601(defun desktop-full-lock-name (&optional dirname)
602 "Return the full name of the desktop lock file in DIRNAME.
603DIRNAME omitted or nil means use `desktop-dirname'."
604 (expand-file-name desktop-base-lock-name (or dirname desktop-dirname)))
605
6343ed61 606(defconst desktop-header
0b9bd504
RS
607";; --------------------------------------------------------------------------
608;; Desktop File for Emacs
609;; --------------------------------------------------------------------------
6343ed61 610" "*Header to place in Desktop file.")
de9e2828
RS
611
612(defvar desktop-delay-hook nil
613 "Hooks run after all buffers are loaded; intended for internal use.")
813dbb2d 614
5db9dace
JL
615(defvar desktop-file-checksum nil
616 "Checksum of the last auto-saved contents of the desktop file.
617Used to avoid writing contents unchanged between auto-saves.")
618
9421876d 619(defvar desktop-saved-frameset nil
56bc453c
JB
620 "Saved state of all frames.
621Only valid during frame saving & restoring; intended for internal use.")
39c0e36f 622
e88110db
JB
623;; ----------------------------------------------------------------------------
624;; Desktop file conflict detection
625(defvar desktop-file-modtime nil
626 "When the desktop file was last modified to the knowledge of this Emacs.
627Used to detect desktop file conflicts.")
628
629(defun desktop-owner (&optional dirname)
630 "Return the PID of the Emacs process that owns the desktop file in DIRNAME.
631Return nil if no desktop file found or no Emacs process is using it.
632DIRNAME omitted or nil means use `desktop-dirname'."
acfcc8c5
JB
633 (let (owner
634 (file (desktop-full-lock-name dirname)))
635 (and (file-exists-p file)
636 (ignore-errors
637 (with-temp-buffer
638 (insert-file-contents-literally file)
639 (goto-char (point-min))
640 (setq owner (read (current-buffer)))
641 (integerp owner)))
e88110db
JB
642 owner)))
643
644(defun desktop-claim-lock (&optional dirname)
645 "Record this Emacs process as the owner of the desktop file in DIRNAME.
646DIRNAME omitted or nil means use `desktop-dirname'."
647 (write-region (number-to-string (emacs-pid)) nil
648 (desktop-full-lock-name dirname)))
649
650(defun desktop-release-lock (&optional dirname)
651 "Remove the lock file for the desktop in DIRNAME.
652DIRNAME omitted or nil means use `desktop-dirname'."
653 (let ((file (desktop-full-lock-name dirname)))
654 (when (file-exists-p file) (delete-file file))))
655
0b9bd504 656;; ----------------------------------------------------------------------------
6b61353c 657(defun desktop-truncate (list n)
ec4c6f22 658 "Truncate LIST to at most N elements destructively."
6b61353c 659 (let ((here (nthcdr (1- n) list)))
1f7efe1b
JB
660 (when (consp here)
661 (setcdr here nil))))
f9be4574 662
4a2fce7a 663;; ----------------------------------------------------------------------------
11425834 664;;;###autoload
f9be4574
RS
665(defun desktop-clear ()
666 "Empty the Desktop.
0f4804e7
LH
667This kills all buffers except for internal ones and those with names matched by
668a regular expression in the list `desktop-clear-preserve-buffers'.
5414a283
JB
669Furthermore, it clears the variables listed in `desktop-globals-to-clear'.
670When called interactively and `desktop-restore-frames' is non-nil, it also
671deletes all frames except the selected one (and its minibuffer frame,
672if different)."
6343ed61 673 (interactive)
150f39ee 674 (desktop-lazy-abort)
4a2fce7a
RS
675 (dolist (var desktop-globals-to-clear)
676 (if (symbolp var)
1f7efe1b 677 (eval `(setq-default ,var nil))
4a2fce7a 678 (eval `(setq-default ,(car var) ,(cdr var)))))
b61d71e4 679 (let ((preserve-regexp (concat "^\\("
0f4804e7
LH
680 (mapconcat (lambda (regexp)
681 (concat "\\(" regexp "\\)"))
682 desktop-clear-preserve-buffers
683 "\\|")
684 "\\)$")))
b61d71e4
JB
685 (dolist (buffer (buffer-list))
686 (let ((bufname (buffer-name buffer)))
da77a2e2 687 (unless (or (eq (aref bufname 0) ?\s) ;; Don't kill internal buffers
b61d71e4
JB
688 (string-match-p preserve-regexp bufname))
689 (kill-buffer buffer)))))
9421876d 690 (delete-other-windows)
5414a283
JB
691 (when (and desktop-restore-frames
692 ;; Non-interactive calls to desktop-clear happen before desktop-read
693 ;; which already takes care of frame restoration and deletion.
694 (called-interactively-p 'any))
695 (let* ((this (selected-frame))
526e5233 696 (mini (window-frame (minibuffer-window this)))) ; in case they differ
063233c3 697 (dolist (frame (sort (frame-list) #'frameset-minibufferless-first-p))
5414a283
JB
698 (condition-case err
699 (unless (or (eq frame this)
700 (eq frame mini)
701 (frame-parameter frame 'desktop-dont-clear))
702 (delete-frame frame))
703 (error
4538c058 704 (delay-warning 'desktop (error-message-string err))))))))
4a2fce7a 705
0b9bd504 706;; ----------------------------------------------------------------------------
845fc5e5
JB
707(unless noninteractive
708 (add-hook 'kill-emacs-hook 'desktop-kill))
ec4c6f22 709
6343ed61 710(defun desktop-kill ()
6b61353c 711 "If `desktop-save-mode' is non-nil, do what `desktop-save' says to do.
4a2fce7a
RS
712If the desktop should be saved and `desktop-dirname'
713is nil, ask the user where to save the desktop."
11425834
LH
714 (when (and desktop-save-mode
715 (let ((exists (file-exists-p (desktop-full-file-name))))
716 (or (eq desktop-save t)
7dd7fbb9
JD
717 (and exists (eq desktop-save 'if-exists))
718 ;; If it exists, but we aren't using it, we are going
719 ;; to ask for a new directory below.
720 (and exists desktop-dirname (eq desktop-save 'ask-if-new))
11425834
LH
721 (and
722 (or (memq desktop-save '(ask ask-if-new))
723 (and exists (eq desktop-save 'ask-if-exists)))
724 (y-or-n-p "Save desktop? ")))))
4a2fce7a
RS
725 (unless desktop-dirname
726 (setq desktop-dirname
11425834
LH
727 (file-name-as-directory
728 (expand-file-name
794855ca 729 (read-directory-name "Directory for desktop file: " nil nil t)))))
4a2fce7a 730 (condition-case err
e88110db 731 (desktop-save desktop-dirname t)
4a2fce7a 732 (file-error
11425834 733 (unless (yes-or-no-p "Error while saving the desktop. Ignore? ")
e88110db
JB
734 (signal (car err) (cdr err))))))
735 ;; If we own it, we don't anymore.
736 (when (eq (emacs-pid) (desktop-owner)) (desktop-release-lock)))
4a2fce7a 737
0b9bd504 738;; ----------------------------------------------------------------------------
ed2f7fc8 739(defun desktop-list* (&rest args)
74d7f75a 740 (and args (apply #'cl-list* args)))
ed2f7fc8 741
e88110db
JB
742;; ----------------------------------------------------------------------------
743(defun desktop-buffer-info (buffer)
744 (set-buffer buffer)
745 (list
a8049a30
JB
746 ;; base name of the buffer; replaces the buffer name if managed by uniquify
747 (and (fboundp 'uniquify-buffer-base-name) (uniquify-buffer-base-name))
e88110db 748 ;; basic information
9e29c91c 749 (desktop-file-name (buffer-file-name) desktop-dirname)
a8049a30 750 (buffer-name)
e88110db
JB
751 major-mode
752 ;; minor modes
753 (let (ret)
754 (mapc
755 #'(lambda (minor-mode)
756 (and (boundp minor-mode)
757 (symbol-value minor-mode)
758 (let* ((special (assq minor-mode desktop-minor-mode-table))
759 (value (cond (special (cadr special))
760 ((functionp minor-mode) minor-mode))))
761 (when value (add-to-list 'ret value)))))
762 (mapcar #'car minor-mode-alist))
763 ret)
764 ;; point and mark, and read-only status
765 (point)
766 (list (mark t) mark-active)
767 buffer-read-only
768 ;; auxiliary information
769 (when (functionp desktop-save-buffer)
9e29c91c 770 (funcall desktop-save-buffer desktop-dirname))
e88110db 771 ;; local variables
b61d71e4
JB
772 (let ((loclist (buffer-local-variables))
773 (ll nil))
774 (dolist (local desktop-locals-to-save)
775 (let ((here (assq local loclist)))
776 (cond (here
777 (push here ll))
778 ((member local loclist)
779 (push local ll)))))
e88110db
JB
780 ll)))
781
4a2fce7a 782;; ----------------------------------------------------------------------------
69b2c07e
SM
783(defun desktop--v2s (value)
784 "Convert VALUE to a pair (QUOTE . SEXP); (eval SEXP) gives VALUE.
785SEXP is an sexp that when evaluated yields VALUE.
577ed2b2 786QUOTE may be `may' (value may be quoted),
60ff536c 787`must' (value must be quoted), or nil (value must not be quoted)."
de9e2828 788 (cond
1f7efe1b 789 ((or (numberp value) (null value) (eq t value) (keywordp value))
69b2c07e 790 (cons 'may value))
1f7efe1b
JB
791 ((stringp value)
792 (let ((copy (copy-sequence value)))
793 (set-text-properties 0 (length copy) nil copy)
69b2c07e
SM
794 ;; Get rid of text properties because we cannot read them.
795 (cons 'may copy)))
1f7efe1b 796 ((symbolp value)
69b2c07e 797 (cons 'must value))
1f7efe1b 798 ((vectorp value)
69b2c07e
SM
799 (let* ((pass1 (mapcar #'desktop--v2s value))
800 (special (assq nil pass1)))
1f7efe1b 801 (if special
69b2c07e
SM
802 (cons nil `(vector
803 ,@(mapcar (lambda (el)
804 (if (eq (car el) 'must)
805 `',(cdr el) (cdr el)))
806 pass1)))
807 (cons 'may `[,@(mapcar #'cdr pass1)]))))
1f7efe1b
JB
808 ((consp value)
809 (let ((p value)
810 newlist
acfcc8c5 811 use-list*)
1f7efe1b 812 (while (consp p)
69b2c07e
SM
813 (let ((q.sexp (desktop--v2s (car p))))
814 (push q.sexp newlist))
1f7efe1b 815 (setq p (cdr p)))
69b2c07e
SM
816 (when p
817 (let ((last (desktop--v2s p)))
818 (setq use-list* t)
819 (push last newlist)))
820 (if (assq nil newlist)
1f7efe1b 821 (cons nil
69b2c07e
SM
822 `(,(if use-list* 'desktop-list* 'list)
823 ,@(mapcar (lambda (el)
824 (if (eq (car el) 'must)
825 `',(cdr el) (cdr el)))
826 (nreverse newlist))))
1f7efe1b 827 (cons 'must
69b2c07e
SM
828 `(,@(mapcar #'cdr
829 (nreverse (if use-list* (cdr newlist) newlist)))
830 ,@(if use-list* (cdar newlist)))))))
1f7efe1b 831 ((subrp value)
69b2c07e
SM
832 (cons nil `(symbol-function
833 ',(intern-soft (substring (prin1-to-string value) 7 -1)))))
1f7efe1b 834 ((markerp value)
69b2c07e
SM
835 (let ((pos (marker-position value))
836 (buf (buffer-name (marker-buffer value))))
837 (cons nil
838 `(let ((mk (make-marker)))
839 (add-hook 'desktop-delay-hook
840 `(lambda ()
841 (set-marker ,mk ,,pos (get-buffer ,,buf))))
842 mk))))
843 (t ; Save as text.
844 (cons 'may "Unprintable entity"))))
de9e2828 845
4a2fce7a 846;; ----------------------------------------------------------------------------
6b61353c 847(defun desktop-value-to-string (value)
577ed2b2
RS
848 "Convert VALUE to a string that when read evaluates to the same value.
849Not all types of values are supported."
de9e2828 850 (let* ((print-escape-newlines t)
8e554df0
JL
851 (print-length nil)
852 (print-level nil)
de9e2828 853 (float-output-format nil)
69b2c07e
SM
854 (quote.sexp (desktop--v2s value))
855 (quote (car quote.sexp))
8e554df0
JL
856 (print-quoted t)
857 (txt (prin1-to-string (cdr quote.sexp))))
de9e2828
RS
858 (if (eq quote 'must)
859 (concat "'" txt)
860 txt)))
4a2fce7a 861
ec4c6f22 862;; ----------------------------------------------------------------------------
0e7c8611
RS
863(defun desktop-outvar (varspec)
864 "Output a setq statement for variable VAR to the desktop file.
865The argument VARSPEC may be the variable name VAR (a symbol),
be617bbf 866or a cons cell of the form (VAR . MAX-SIZE),
0e7c8611
RS
867which means to truncate VAR's value to at most MAX-SIZE elements
868\(if the value is a list) before saving the value."
869 (let (var size)
870 (if (consp varspec)
871 (setq var (car varspec) size (cdr varspec))
872 (setq var varspec))
1f7efe1b
JB
873 (when (boundp var)
874 (when (and (integerp size)
875 (> size 0)
876 (listp (eval var)))
877 (desktop-truncate (eval var) size))
878 (insert "(setq "
879 (symbol-name var)
880 " "
881 (desktop-value-to-string (symbol-value var))
882 ")\n"))))
4a2fce7a 883
0b9bd504 884;; ----------------------------------------------------------------------------
06b60517 885(defun desktop-save-buffer-p (filename bufname mode &rest _dummy)
ebb39555 886 "Return t if buffer should have its state saved in the desktop file.
0b9bd504 887FILENAME is the visited file name, BUFNAME is the buffer name, and
be617bbf
JB
888MODE is the major mode.
889\n\(fn FILENAME BUFNAME MODE)"
b23caf75 890 (let ((case-fold-search nil)
e59fa9ad
JB
891 (no-regexp-to-check (not (stringp desktop-files-not-to-save)))
892 dired-skip)
893 (and (or filename
894 (not (stringp desktop-buffers-not-to-save))
895 (not (string-match-p desktop-buffers-not-to-save bufname)))
896 (not (memq mode desktop-modes-not-to-save))
897 (or (and filename
898 (or no-regexp-to-check
899 (not (string-match-p desktop-files-not-to-save filename))))
900 (and (memq mode '(dired-mode vc-dir-mode))
901 (or no-regexp-to-check
902 (not (setq dired-skip
903 (with-current-buffer bufname
904 (string-match-p desktop-files-not-to-save
905 default-directory))))))
906 (and (null filename)
907 (null dired-skip) ; bug#5755
908 (with-current-buffer bufname desktop-save-buffer)))
909 t)))
4a2fce7a 910
0b9bd504 911;; ----------------------------------------------------------------------------
4a2fce7a
RS
912(defun desktop-file-name (filename dirname)
913 "Convert FILENAME to format specified in `desktop-file-name-format'.
914DIRNAME must be the directory in which the desktop file will be saved."
915 (cond
916 ((not filename) nil)
917 ((eq desktop-file-name-format 'tilde)
918 (let ((relative-name (file-relative-name (expand-file-name filename) "~")))
919 (cond
920 ((file-name-absolute-p relative-name) relative-name)
921 ((string= "./" relative-name) "~/")
922 ((string= "." relative-name) "~")
923 (t (concat "~/" relative-name)))))
924 ((eq desktop-file-name-format 'local) (file-relative-name filename dirname))
925 (t (expand-file-name filename))))
e5714620 926
b3615392 927
4a2fce7a 928;; ----------------------------------------------------------------------------
9421876d
JB
929(defun desktop--check-dont-save (frame)
930 (not (frame-parameter frame 'desktop-dont-save)))
931
932(defconst desktop--app-id `(desktop . ,desktop-file-version))
933
934(defun desktop-save-frameset ()
935 "Save the state of existing frames in `desktop-saved-frameset'.
a1c80d9d 936Frames with a non-nil `desktop-dont-save' parameter are not saved."
9421876d 937 (setq desktop-saved-frameset
2addf922 938 (and desktop-restore-frames
a912c016
JB
939 (frameset-save nil
940 :app desktop--app-id
941 :name (concat user-login-name "@" system-name)
942 :predicate #'desktop--check-dont-save))))
39c0e36f 943
11425834 944;;;###autoload
5db9dace 945(defun desktop-save (dirname &optional release auto-save)
6b61353c
KH
946 "Save the desktop in a desktop file.
947Parameter DIRNAME specifies where to save the desktop file.
e88110db 948Optional parameter RELEASE says whether we're done with this desktop.
5db9dace
JL
949If AUTO-SAVE is non-nil, compare the saved contents to the one last saved,
950and don't save the buffer if they are the same."
9271e90e
GM
951 (interactive (list
952 ;; Or should we just use (car desktop-path)?
953 (let ((default (if (member "." desktop-path)
954 default-directory
955 user-emacs-directory)))
956 (read-directory-name "Directory to save desktop file in: "
957 default default t))))
e88110db 958 (setq desktop-dirname (file-name-as-directory (expand-file-name dirname)))
6343ed61 959 (save-excursion
e88110db
JB
960 (let ((eager desktop-restore-eager)
961 (new-modtime (nth 5 (file-attributes (desktop-full-file-name)))))
962 (when
963 (or (not new-modtime) ; nothing to overwrite
964 (equal desktop-file-modtime new-modtime)
965 (yes-or-no-p (if desktop-file-modtime
966 (if (> (float-time new-modtime) (float-time desktop-file-modtime))
967 "Desktop file is more recent than the one loaded. Save anyway? "
968 "Desktop file isn't the one loaded. Overwrite it? ")
969 "Current desktop was not loaded from a file. Overwrite this desktop file? "))
970 (unless release (error "Desktop file conflict")))
971
972 ;; If we're done with it, release the lock.
973 ;; Otherwise, claim it if it's unclaimed or if we created it.
974 (if release
975 (desktop-release-lock)
976 (unless (and new-modtime (desktop-owner)) (desktop-claim-lock)))
977
978 (with-temp-buffer
979 (insert
980 ";; -*- mode: emacs-lisp; coding: emacs-mule; -*-\n"
981 desktop-header
982 ";; Created " (current-time-string) "\n"
983 ";; Desktop file format version " desktop-file-version "\n"
984 ";; Emacs version " emacs-version "\n")
985 (save-excursion (run-hooks 'desktop-save-hook))
986 (goto-char (point-max))
987 (insert "\n;; Global section:\n")
39c0e36f
JB
988 ;; Called here because we save the window/frame state as a global
989 ;; variable for compatibility with previous Emacsen.
9421876d
JB
990 (desktop-save-frameset)
991 (unless (memq 'desktop-saved-frameset desktop-globals-to-save)
992 (desktop-outvar 'desktop-saved-frameset))
e88110db 993 (mapc (function desktop-outvar) desktop-globals-to-save)
9421876d 994 (setq desktop-saved-frameset nil) ; after saving desktop-globals-to-save
e88110db
JB
995 (when (memq 'kill-ring desktop-globals-to-save)
996 (insert
997 "(setq kill-ring-yank-pointer (nthcdr "
998 (int-to-string (- (length kill-ring) (length kill-ring-yank-pointer)))
999 " kill-ring))\n"))
1000
1001 (insert "\n;; Buffer section -- buffers listed in same order as in buffer list:\n")
1002 (dolist (l (mapcar 'desktop-buffer-info (buffer-list)))
a8049a30
JB
1003 (let ((base (pop l)))
1004 (when (apply 'desktop-save-buffer-p l)
1005 (insert "("
1006 (if (or (not (integerp eager))
1007 (if (zerop eager)
1008 nil
1009 (setq eager (1- eager))))
1010 "desktop-create-buffer"
1011 "desktop-append-buffer-args")
1012 " "
1013 desktop-file-version)
ae4370a8
JB
1014 ;; If there's a non-empty base name, we save it instead of the buffer name
1015 (when (and base (not (string= base "")))
1016 (setcar (nthcdr 1 l) base))
a8049a30
JB
1017 (dolist (e l)
1018 (insert "\n " (desktop-value-to-string e)))
1019 (insert ")\n\n"))))
e88110db 1020
9e29c91c 1021 (setq default-directory desktop-dirname)
6c8e0ae6
JL
1022 ;; When auto-saving, avoid writing if nothing has changed since the last write.
1023 (let* ((beg (and auto-save
1024 (save-excursion
1025 (goto-char (point-min))
1026 ;; Don't check the header with changing timestamp
1027 (and (search-forward "Global section" nil t)
1028 ;; Also skip the timestamp in desktop-saved-frameset
1029 ;; if it's saved in the first non-header line
1030 (search-forward "desktop-saved-frameset"
1031 (line-beginning-position 3) t)
1032 ;; This is saved after the timestamp
1033 (search-forward (format "%S" desktop--app-id) nil t))
1034 (point))))
1035 (checksum (and beg (md5 (current-buffer) beg (point-max) 'emacs-mule))))
1036 (unless (and checksum (equal checksum desktop-file-checksum))
5db9dace
JL
1037 (let ((coding-system-for-write 'emacs-mule))
1038 (write-region (point-min) (point-max) (desktop-full-file-name) nil 'nomessage))
1039 (setq desktop-file-checksum checksum)
1040 ;; We remember when it was modified (which is presumably just now).
1041 (setq desktop-file-modtime (nth 5 (file-attributes (desktop-full-file-name)))))))))))
4a2fce7a 1042
0b9bd504 1043;; ----------------------------------------------------------------------------
11425834 1044;;;###autoload
6343ed61 1045(defun desktop-remove ()
6b61353c
KH
1046 "Delete desktop file in `desktop-dirname'.
1047This function also sets `desktop-dirname' to nil."
6343ed61 1048 (interactive)
6b61353c 1049 (when desktop-dirname
11425834 1050 (let ((filename (desktop-full-file-name)))
6b61353c
KH
1051 (setq desktop-dirname nil)
1052 (when (file-exists-p filename)
73b0b745 1053 (delete-file filename)))))
6b61353c 1054
150f39ee
LH
1055(defvar desktop-buffer-args-list nil
1056 "List of args for `desktop-create-buffer'.")
1057
1058(defvar desktop-lazy-timer nil)
1059
0b9bd504 1060;; ----------------------------------------------------------------------------
9421876d
JB
1061(defun desktop-restoring-frameset-p ()
1062 "True if calling `desktop-restore-frameset' will actually restore it."
1063 (and desktop-restore-frames desktop-saved-frameset t))
1064
1065(defun desktop-restore-frameset ()
1066 "Restore the state of a set of frames.
1067This function depends on the value of `desktop-saved-frameset'
56bc453c 1068being set (usually, by reading it from the desktop)."
9421876d
JB
1069 (when (desktop-restoring-frameset-p)
1070 (frameset-restore desktop-saved-frameset
4538c058
JB
1071 :reuse-frames (eq desktop-restore-reuses-frames t)
1072 :cleanup-frames (not (eq desktop-restore-reuses-frames 'keep))
9421876d
JB
1073 :force-display desktop-restore-in-current-display
1074 :force-onscreen desktop-restore-forces-onscreen)))
1075
1076;; Just to silence the byte compiler.
526e5233 1077;; Dynamically bound in `desktop-read'.
9421876d
JB
1078(defvar desktop-first-buffer)
1079(defvar desktop-buffer-ok-count)
1080(defvar desktop-buffer-fail-count)
39c0e36f 1081
c863b6ad 1082;; FIXME Interactively, this should have the option to prompt for dirname.
478653c9 1083;;;###autoload
6b61353c
KH
1084(defun desktop-read (&optional dirname)
1085 "Read and process the desktop file in directory DIRNAME.
1086Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in
1087directories listed in `desktop-path'. If a desktop file is found, it
cc8b76bf 1088is processed and `desktop-after-read-hook' is run. If no desktop file
6b61353c
KH
1089is found, clear the desktop and run `desktop-no-desktop-file-hook'.
1090This function is a no-op when Emacs is running in batch mode.
1091It returns t if a desktop file was loaded, nil otherwise."
6343ed61 1092 (interactive)
4a2fce7a 1093 (unless noninteractive
6b61353c 1094 (setq desktop-dirname
11425834
LH
1095 (file-name-as-directory
1096 (expand-file-name
1097 (or
1098 ;; If DIRNAME is specified, use it.
1099 (and (< 0 (length dirname)) dirname)
1100 ;; Otherwise search desktop file in desktop-path.
1101 (let ((dirs desktop-path))
1102 (while (and dirs
1103 (not (file-exists-p
1104 (desktop-full-file-name (car dirs)))))
1105 (setq dirs (cdr dirs)))
1106 (and dirs (car dirs)))
1107 ;; If not found and `desktop-path' is non-nil, use its first element.
1108 (and desktop-path (car desktop-path))
6b67c0d4
CY
1109 ;; Default: .emacs.d.
1110 user-emacs-directory))))
11425834 1111 (if (file-exists-p (desktop-full-file-name))
e88110db
JB
1112 ;; Desktop file found, but is it already in use?
1113 (let ((desktop-first-buffer nil)
1114 (desktop-buffer-ok-count 0)
1115 (desktop-buffer-fail-count 0)
1116 (owner (desktop-owner))
1117 ;; Avoid desktop saving during evaluation of desktop buffer.
1118 (desktop-save nil))
1119 (if (and owner
1f7efe1b
JB
1120 (memq desktop-load-locked-desktop '(nil ask))
1121 (or (null desktop-load-locked-desktop)
e76f0800 1122 (daemonp)
1f7efe1b
JB
1123 (not (y-or-n-p (format "Warning: desktop file appears to be in use by PID %s.\n\
1124Using it may cause conflicts. Use it anyway? " owner)))))
c41cf130 1125 (let ((default-directory desktop-dirname))
794855ca 1126 (setq desktop-dirname nil)
c41cf130
JB
1127 (run-hooks 'desktop-not-loaded-hook)
1128 (unless desktop-dirname
1129 (message "Desktop file in use; not loaded.")))
e88110db 1130 (desktop-lazy-abort)
a4d8b73e
JL
1131 ;; Temporarily disable the autosave that will leave it
1132 ;; disabled when loading the desktop fails with errors,
1133 ;; thus not overwriting the desktop with broken contents.
1134 (desktop-auto-save-disable)
e88110db
JB
1135 ;; Evaluate desktop buffer and remember when it was modified.
1136 (load (desktop-full-file-name) t t t)
1137 (setq desktop-file-modtime (nth 5 (file-attributes (desktop-full-file-name))))
1138 ;; If it wasn't already, mark it as in-use, to bother other
1139 ;; desktop instances.
c99cf5ee 1140 (unless (eq (emacs-pid) owner)
e88110db
JB
1141 (condition-case nil
1142 (desktop-claim-lock)
1143 (file-error (message "Couldn't record use of desktop file")
1144 (sit-for 1))))
1145
9421876d 1146 (unless (desktop-restoring-frameset-p)
56bc453c
JB
1147 ;; `desktop-create-buffer' puts buffers at end of the buffer list.
1148 ;; We want buffers existing prior to evaluating the desktop (and
1149 ;; not reused) to be placed at the end of the buffer list, so we
1150 ;; move them here.
1151 (mapc 'bury-buffer
1152 (nreverse (cdr (memq desktop-first-buffer (nreverse (buffer-list))))))
1153 (switch-to-buffer (car (buffer-list))))
e88110db
JB
1154 (run-hooks 'desktop-delay-hook)
1155 (setq desktop-delay-hook nil)
9421876d 1156 (desktop-restore-frameset)
e88110db 1157 (run-hooks 'desktop-after-read-hook)
9421876d
JB
1158 (message "Desktop: %s%d buffer%s restored%s%s."
1159 (if desktop-saved-frameset
1160 (let ((fn (length (frameset-states desktop-saved-frameset))))
1161 (format "%d frame%s, "
1162 fn (if (= fn 1) "" "s")))
1163 "")
e88110db
JB
1164 desktop-buffer-ok-count
1165 (if (= 1 desktop-buffer-ok-count) "" "s")
1166 (if (< 0 desktop-buffer-fail-count)
1167 (format ", %d failed to restore" desktop-buffer-fail-count)
1168 "")
1169 (if desktop-buffer-args-list
1170 (format ", %d to restore lazily"
1171 (length desktop-buffer-args-list))
1172 ""))
9421876d 1173 (unless (desktop-restoring-frameset-p)
56bc453c
JB
1174 ;; Bury the *Messages* buffer to not reshow it when burying
1175 ;; the buffer we switched to above.
1176 (when (buffer-live-p (get-buffer "*Messages*"))
1177 (bury-buffer "*Messages*"))
1178 ;; Clear all windows' previous and next buffers, these have
1179 ;; been corrupted by the `switch-to-buffer' calls in
1180 ;; `desktop-restore-file-buffer' (bug#11556). This is a
1181 ;; brute force fix and should be replaced by a more subtle
1182 ;; strategy eventually.
1183 (walk-window-tree (lambda (window)
1184 (set-window-prev-buffers window nil)
1185 (set-window-next-buffers window nil))))
5414a283 1186 (setq desktop-saved-frameset nil)
a4d8b73e 1187 (desktop-auto-save-enable)
e88110db 1188 t))
6b61353c
KH
1189 ;; No desktop file found.
1190 (desktop-clear)
1191 (let ((default-directory desktop-dirname))
1192 (run-hooks 'desktop-no-desktop-file-hook))
1193 (message "No desktop file.")
1194 nil)))
4a2fce7a 1195
0b9bd504 1196;; ----------------------------------------------------------------------------
6b61353c 1197;; Maintained for backward compatibility
478653c9 1198;;;###autoload
6343ed61 1199(defun desktop-load-default ()
577ed2b2 1200 "Load the `default' start-up library manually.
6b61353c 1201Also inhibit further loading of it."
59f7af81 1202 (declare (obsolete desktop-save-mode "22.1"))
b89c5a72
JB
1203 (unless inhibit-default-init ; safety check
1204 (load "default" t t)
1205 (setq inhibit-default-init t)))
4a2fce7a
RS
1206
1207;; ----------------------------------------------------------------------------
1208;;;###autoload
6b61353c
KH
1209(defun desktop-change-dir (dirname)
1210 "Change to desktop saved in DIRNAME.
1211Kill the desktop as specified by variables `desktop-save-mode' and
1212`desktop-save', then clear the desktop and load the desktop file in
1213directory DIRNAME."
1214 (interactive "DChange to directory: ")
1215 (setq dirname (file-name-as-directory (expand-file-name dirname desktop-dirname)))
4a2fce7a
RS
1216 (desktop-kill)
1217 (desktop-clear)
6b61353c 1218 (desktop-read dirname))
bf247b6e 1219
6b61353c 1220;; ----------------------------------------------------------------------------
4a2fce7a 1221;;;###autoload
6b61353c
KH
1222(defun desktop-save-in-desktop-dir ()
1223 "Save the desktop in directory `desktop-dirname'."
4a2fce7a
RS
1224 (interactive)
1225 (if desktop-dirname
b89c5a72 1226 (desktop-save desktop-dirname)
4a2fce7a 1227 (call-interactively 'desktop-save))
a609d13b 1228 (message "Desktop saved in %s" (abbreviate-file-name desktop-dirname)))
4a2fce7a 1229
5db9dace
JL
1230;; ----------------------------------------------------------------------------
1231;; Auto-Saving.
1232(defvar desktop-auto-save-timer nil)
1233
a4d8b73e
JL
1234(defun desktop-auto-save-enable (&optional timeout)
1235 (when (and (integerp (or timeout desktop-auto-save-timeout))
1236 (> (or timeout desktop-auto-save-timeout) 0))
1237 (add-hook 'window-configuration-change-hook 'desktop-auto-save-set-timer)))
1238
1239(defun desktop-auto-save-disable ()
1240 (remove-hook 'window-configuration-change-hook 'desktop-auto-save-set-timer)
1241 (desktop-auto-save-cancel-timer))
1242
5db9dace
JL
1243(defun desktop-auto-save ()
1244 "Save the desktop periodically.
1245Called by the timer created in `desktop-auto-save-set-timer'."
1246 (when (and desktop-save-mode
1247 (integerp desktop-auto-save-timeout)
1248 (> desktop-auto-save-timeout 0)
1249 ;; Avoid desktop saving during lazy loading.
1250 (not desktop-lazy-timer)
1251 ;; Save only to own desktop file.
1252 (eq (emacs-pid) (desktop-owner))
1253 desktop-dirname)
6c8e0ae6 1254 (desktop-save desktop-dirname nil t)))
5db9dace
JL
1255
1256(defun desktop-auto-save-set-timer ()
6c8e0ae6 1257 "Set the auto-save timer.
5db9dace 1258Cancel any previous timer. When `desktop-auto-save-timeout' is a positive
6c8e0ae6
JL
1259integer, start a new idle timer to call `desktop-auto-save' repeatedly
1260after that many seconds of idle time."
2b777cd9 1261 (desktop-auto-save-cancel-timer)
5db9dace
JL
1262 (when (and (integerp desktop-auto-save-timeout)
1263 (> desktop-auto-save-timeout 0))
1264 (setq desktop-auto-save-timer
7f118009 1265 (run-with-idle-timer desktop-auto-save-timeout nil
6c8e0ae6 1266 'desktop-auto-save))))
5db9dace 1267
2b777cd9
JL
1268(defun desktop-auto-save-cancel-timer ()
1269 (when desktop-auto-save-timer
1270 (cancel-timer desktop-auto-save-timer)
1271 (setq desktop-auto-save-timer nil)))
1272
4a2fce7a
RS
1273;; ----------------------------------------------------------------------------
1274;;;###autoload
1275(defun desktop-revert ()
1276 "Revert to the last loaded desktop."
1277 (interactive)
6b61353c
KH
1278 (unless desktop-dirname
1279 (error "Unknown desktop directory"))
11425834 1280 (unless (file-exists-p (desktop-full-file-name))
6b61353c
KH
1281 (error "No desktop file found"))
1282 (desktop-clear)
1283 (desktop-read desktop-dirname))
4a2fce7a 1284
341c2f07
SM
1285(defvar desktop-buffer-major-mode)
1286(defvar desktop-buffer-locals)
06b60517 1287(defvar auto-insert) ; from autoinsert.el
0b9bd504 1288;; ----------------------------------------------------------------------------
06b60517
JB
1289(defun desktop-restore-file-buffer (buffer-filename
1290 _buffer-name
1291 _buffer-misc)
e5780ae1 1292 "Restore a file buffer."
06b60517
JB
1293 (when buffer-filename
1294 (if (or (file-exists-p buffer-filename)
1f7efe1b 1295 (let ((msg (format "Desktop: File \"%s\" no longer exists."
06b60517 1296 buffer-filename)))
1f7efe1b
JB
1297 (if desktop-missing-file-warning
1298 (y-or-n-p (concat msg " Re-create buffer? "))
1299 (message "%s" msg)
1300 nil)))
1301 (let* ((auto-insert nil) ; Disable auto insertion
1302 (coding-system-for-read
1303 (or coding-system-for-read
1304 (cdr (assq 'buffer-file-coding-system
1305 desktop-buffer-locals))))
06b60517 1306 (buf (find-file-noselect buffer-filename)))
1f7efe1b
JB
1307 (condition-case nil
1308 (switch-to-buffer buf)
1309 (error (pop-to-buffer buf)))
1310 (and (not (eq major-mode desktop-buffer-major-mode))
1311 (functionp desktop-buffer-major-mode)
1312 (funcall desktop-buffer-major-mode))
1313 buf)
1314 nil)))
4a2fce7a 1315
0f4804e7
LH
1316(defun desktop-load-file (function)
1317 "Load the file where auto loaded FUNCTION is defined."
7abaf5cc
SM
1318 (when (fboundp function)
1319 (autoload-do-load (symbol-function function) function)))
0f4804e7 1320
0b9bd504 1321;; ----------------------------------------------------------------------------
eb982898
JL
1322;; Create a buffer, load its file, set its mode, ...;
1323;; called from Desktop file only.
1d500ca6 1324
340db502 1325(defun desktop-create-buffer
06b60517
JB
1326 (file-version
1327 buffer-filename
1328 buffer-name
1329 buffer-majormode
1330 buffer-minormodes
1331 buffer-point
1332 buffer-mark
1333 buffer-readonly
1334 buffer-misc
1335 &optional
1336 buffer-locals)
1337
1338 (let ((desktop-file-version file-version)
1339 (desktop-buffer-file-name buffer-filename)
1340 (desktop-buffer-name buffer-name)
1341 (desktop-buffer-major-mode buffer-majormode)
1342 (desktop-buffer-minor-modes buffer-minormodes)
1343 (desktop-buffer-point buffer-point)
1344 (desktop-buffer-mark buffer-mark)
1345 (desktop-buffer-read-only buffer-readonly)
1346 (desktop-buffer-misc buffer-misc)
1347 (desktop-buffer-locals buffer-locals))
1348 ;; To make desktop files with relative file names possible, we cannot
1349 ;; allow `default-directory' to change. Therefore we save current buffer.
1350 (save-current-buffer
1351 ;; Give major mode module a chance to add a handler.
1352 (desktop-load-file desktop-buffer-major-mode)
1353 (let ((buffer-list (buffer-list))
1354 (result
1be3ca5a 1355 (condition-case-unless-debug err
06b60517
JB
1356 (funcall (or (cdr (assq desktop-buffer-major-mode
1357 desktop-buffer-mode-handlers))
1358 'desktop-restore-file-buffer)
1359 desktop-buffer-file-name
1360 desktop-buffer-name
1361 desktop-buffer-misc)
1362 (error
1363 (message "Desktop: Can't load buffer %s: %s"
1364 desktop-buffer-name
1365 (error-message-string err))
1366 (when desktop-missing-file-warning (sit-for 1))
1367 nil))))
1368 (if (bufferp result)
1369 (setq desktop-buffer-ok-count (1+ desktop-buffer-ok-count))
1370 (setq desktop-buffer-fail-count (1+ desktop-buffer-fail-count))
1371 (setq result nil))
1372 ;; Restore buffer list order with new buffer at end. Don't change
91af3942 1373 ;; the order for old desktop files (old desktop module behavior).
06b60517
JB
1374 (unless (< desktop-file-version 206)
1375 (mapc 'bury-buffer buffer-list)
1376 (when result (bury-buffer result)))
1377 (when result
1378 (unless (or desktop-first-buffer (< desktop-file-version 206))
1379 (setq desktop-first-buffer result))
1380 (set-buffer result)
1381 (unless (equal (buffer-name) desktop-buffer-name)
1382 (rename-buffer desktop-buffer-name t))
1383 ;; minor modes
1384 (cond ((equal '(t) desktop-buffer-minor-modes) ; backwards compatible
1385 (auto-fill-mode 1))
1386 ((equal '(nil) desktop-buffer-minor-modes) ; backwards compatible
1387 (auto-fill-mode 0))
1388 (t
1389 (dolist (minor-mode desktop-buffer-minor-modes)
1390 ;; Give minor mode module a chance to add a handler.
1391 (desktop-load-file minor-mode)
1392 (let ((handler (cdr (assq minor-mode desktop-minor-mode-handlers))))
1393 (if handler
1394 (funcall handler desktop-buffer-locals)
1395 (when (functionp minor-mode)
1396 (funcall minor-mode 1)))))))
1397 ;; Even though point and mark are non-nil when written by
1398 ;; `desktop-save', they may be modified by handlers wanting to set
1399 ;; point or mark themselves.
1400 (when desktop-buffer-point
1401 (goto-char
1402 (condition-case err
1403 ;; Evaluate point. Thus point can be something like
1404 ;; '(search-forward ...
1405 (eval desktop-buffer-point)
1406 (error (message "%s" (error-message-string err)) 1))))
1407 (when desktop-buffer-mark
ca70fe78
SM
1408 (if (consp desktop-buffer-mark)
1409 (progn
1410 (move-marker (mark-marker) (car desktop-buffer-mark))
1411 ;; FIXME: Should we call (de)activate-mark instead?
1412 (setq mark-active (car (cdr desktop-buffer-mark))))
1413 (move-marker (mark-marker) desktop-buffer-mark)))
06b60517
JB
1414 ;; Never override file system if the file really is read-only marked.
1415 (when desktop-buffer-read-only (setq buffer-read-only desktop-buffer-read-only))
b61d71e4
JB
1416 (dolist (this desktop-buffer-locals)
1417 (if (consp this)
ca70fe78 1418 ;; An entry of this form `(symbol . value)'.
b61d71e4
JB
1419 (progn
1420 (make-local-variable (car this))
1421 (set (car this) (cdr this)))
ca70fe78 1422 ;; An entry of the form `symbol'.
b61d71e4
JB
1423 (make-local-variable this)
1424 (makunbound this))))))))
ec4c6f22 1425
4a2fce7a 1426;; ----------------------------------------------------------------------------
ec4c6f22 1427;; Backward compatibility -- update parameters to 205 standards.
06b60517
JB
1428(defun desktop-buffer (buffer-filename buffer-name buffer-majormode
1429 mim pt mk ro tl fc cfs cr buffer-misc)
1430 (desktop-create-buffer 205 buffer-filename buffer-name
1431 buffer-majormode (cdr mim) pt mk ro
1432 buffer-misc
ec4c6f22
RS
1433 (list (cons 'truncate-lines tl)
1434 (cons 'fill-column fc)
1435 (cons 'case-fold-search cfs)
1436 (cons 'case-replace cr)
1437 (cons 'overwrite-mode (car mim)))))
84b538ec 1438
150f39ee 1439(defun desktop-append-buffer-args (&rest args)
cc8b76bf 1440 "Append ARGS at end of `desktop-buffer-args-list'.
150f39ee
LH
1441ARGS must be an argument list for `desktop-create-buffer'."
1442 (setq desktop-buffer-args-list (nconc desktop-buffer-args-list (list args)))
1443 (unless desktop-lazy-timer
1444 (setq desktop-lazy-timer
1445 (run-with-idle-timer desktop-lazy-idle-delay t 'desktop-idle-create-buffers))))
1446
1447(defun desktop-lazy-create-buffer ()
1448 "Pop args from `desktop-buffer-args-list', create buffer and bury it."
1449 (when desktop-buffer-args-list
1450 (let* ((remaining (length desktop-buffer-args-list))
1451 (args (pop desktop-buffer-args-list))
1452 (buffer-name (nth 2 args))
1453 (msg (format "Desktop lazily opening %s (%s remaining)..."
1454 buffer-name remaining)))
1455 (when desktop-lazy-verbose
8a26c165 1456 (message "%s" msg))
150f39ee
LH
1457 (let ((desktop-first-buffer nil)
1458 (desktop-buffer-ok-count 0)
1459 (desktop-buffer-fail-count 0))
1460 (apply 'desktop-create-buffer args)
1461 (run-hooks 'desktop-delay-hook)
1462 (setq desktop-delay-hook nil)
1463 (bury-buffer (get-buffer buffer-name))
1464 (when desktop-lazy-verbose
1465 (message "%s%s" msg (if (> desktop-buffer-ok-count 0) "done" "failed")))))))
1466
1467(defun desktop-idle-create-buffers ()
1468 "Create buffers until the user does something, then stop.
1469If there are no buffers left to create, kill the timer."
1470 (let ((repeat 1))
1471 (while (and repeat desktop-buffer-args-list)
1472 (save-window-excursion
1473 (desktop-lazy-create-buffer))
1474 (setq repeat (sit-for 0.2))
1475 (unless desktop-buffer-args-list
1476 (cancel-timer desktop-lazy-timer)
1477 (setq desktop-lazy-timer nil)
1478 (message "Lazy desktop load complete")
1479 (sit-for 3)
1480 (message "")))))
1481
1482(defun desktop-lazy-complete ()
1483 "Run the desktop load to completion."
1484 (interactive)
1485 (let ((desktop-lazy-verbose t))
1486 (while desktop-buffer-args-list
1487 (save-window-excursion
1488 (desktop-lazy-create-buffer)))
1489 (message "Lazy desktop load complete")))
1490
1491(defun desktop-lazy-abort ()
1492 "Abort lazy loading of the desktop."
1493 (interactive)
1494 (when desktop-lazy-timer
1495 (cancel-timer desktop-lazy-timer)
1496 (setq desktop-lazy-timer nil))
1497 (when desktop-buffer-args-list
1498 (setq desktop-buffer-args-list nil)
32226619 1499 (when (called-interactively-p 'interactive)
150f39ee
LH
1500 (message "Lazy desktop load aborted"))))
1501
0b9bd504 1502;; ----------------------------------------------------------------------------
6b61353c 1503;; When `desktop-save-mode' is non-nil and "--no-desktop" is not specified on the
4a2fce7a
RS
1504;; command line, we do the rest of what it takes to use desktop, but do it
1505;; after finishing loading the init file.
1506;; We cannot use `command-switch-alist' to process "--no-desktop" because these
1507;; functions are processed after `after-init-hook'.
1508(add-hook
1509 'after-init-hook
341c2f07 1510 (lambda ()
4a2fce7a 1511 (let ((key "--no-desktop"))
4b217d46
LH
1512 (when (member key command-line-args)
1513 (setq command-line-args (delete key command-line-args))
2b777cd9 1514 (desktop-save-mode 0)))
54d22a6f
JL
1515 (when desktop-save-mode
1516 (desktop-read)
1517 (setq inhibit-startup-screen t))))
813dbb2d 1518
f12ad6ec
GM
1519;; So we can restore vc-dir buffers.
1520(autoload 'vc-dir-mode "vc-dir" nil t)
1521
ab1d55ea 1522(provide 'desktop)
6343ed61 1523
80f9f3db 1524;;; desktop.el ends here
8c106d17
GM
1525
1526;; Local Variables:
1527;; coding: utf-8
1528;; End: