(skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE.
[emacs.git] / lisp / desktop.el
blob4ccdaed7a94a837981f3e0b54bd71381d966d434
1 ;;; desktop.el --- save partial status of Emacs when killed
3 ;; Copyright (C) 1993, 1994, 1995, 1997, 2000, 2001
4 ;; Free Software Foundation, Inc.
6 ;; Author: Morten Welinder <terra@diku.dk>
7 ;; Keywords: convenience
8 ;; Favourite-brand-of-beer: None, I hate beer.
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Commentary:
29 ;; Save the Desktop, i.e.,
30 ;; - some global variables
31 ;; - the list of buffers with associated files. For each buffer also
32 ;; - the major mode
33 ;; - the default directory
34 ;; - the point
35 ;; - the mark & mark-active
36 ;; - buffer-read-only
37 ;; - some local variables
39 ;; To use this, first put these two lines in the bottom of your .emacs
40 ;; file (the later the better):
42 ;; (desktop-load-default)
43 ;; (desktop-read)
45 ;; Between these two lines you may wish to add something that updates the
46 ;; variables `desktop-globals-to-save' and/or `desktop-locals-to-save'. If
47 ;; for instance you want to save the local variable `foobar' for every buffer
48 ;; in which it is local, you could add the line
50 ;; (setq desktop-locals-to-save (cons 'foobar desktop-locals-to-save))
52 ;; To avoid saving excessive amounts of data you may also wish to add
53 ;; something like the following
55 ;; (add-hook 'kill-emacs-hook
56 ;; '(lambda ()
57 ;; (desktop-truncate search-ring 3)
58 ;; (desktop-truncate regexp-search-ring 3)))
60 ;; which will make sure that no more than three search items are saved. You
61 ;; must place this line *after* the `(desktop-load-default)' line. See also
62 ;; the variable `desktop-save-hook'.
64 ;; Start Emacs in the root directory of your "project". The desktop saver
65 ;; is inactive by default. You activate it by M-x desktop-save RET. When
66 ;; you exit the next time the above data will be saved. This ensures that
67 ;; all the files you were editing will be reloaded the next time you start
68 ;; Emacs from the same directory and that points will be set where you
69 ;; left them. If you save a desktop file in your home directory it will
70 ;; act as a default desktop when you start Emacs from a directory that
71 ;; doesn't have its own. I never do this, but you may want to.
73 ;; Some words on minor modes: Most minor modes are controlled by
74 ;; buffer-local variables, which have a standard save / restore
75 ;; mechanism. To handle all minor modes, we take the following
76 ;; approach: (1) check whether the variable name from
77 ;; `minor-mode-alist' is also a function; and (2) use translation
78 ;; table `desktop-minor-mode-table' in the case where the two names
79 ;; are not the same.
81 ;; By the way: don't use desktop.el to customize Emacs -- the file .emacs
82 ;; in your home directory is used for that. Saving global default values
83 ;; for buffers is an example of misuse.
85 ;; PLEASE NOTE: The kill ring can be saved as specified by the variable
86 ;; `desktop-globals-to-save' (by default it isn't). This may result in saving
87 ;; things you did not mean to keep. Use M-x desktop-clear RET.
89 ;; Thanks to hetrick@phys.uva.nl (Jim Hetrick) for useful ideas.
90 ;; avk@rtsg.mot.com (Andrew V. Klein) for a dired tip.
91 ;; chris@tecc.co.uk (Chris Boucher) for a mark tip.
92 ;; f89-kam@nada.kth.se (Klas Mellbourn) for a mh-e tip.
93 ;; kifer@sbkifer.cs.sunysb.edu (M. Kifer) for a bug hunt.
94 ;; treese@lcs.mit.edu (Win Treese) for ange-ftp tips.
95 ;; pot@cnuce.cnr.it (Francesco Potorti`) for misc. tips.
96 ;; ---------------------------------------------------------------------------
97 ;; TODO:
99 ;; Save window configuration.
100 ;; Recognize more minor modes.
101 ;; Save mark rings.
102 ;; Start-up with buffer-menu???
104 ;;; Code:
106 ;; Make the compilation more silent
107 (eval-when-compile
108 ;; We use functions from these modules
109 ;; We can't (require 'mh-e) since that wants to load something.
110 (mapcar 'require '(info dired reporter)))
111 ;; ----------------------------------------------------------------------------
112 ;; USER OPTIONS -- settings you might want to play with.
113 ;; ----------------------------------------------------------------------------
115 (defgroup desktop nil
116 "Save status of Emacs when you exit."
117 :group 'frames)
119 (defcustom desktop-enable nil
120 "*Non-nil enable Desktop to save the state of Emacs when you exit."
121 :group 'desktop
122 :type 'boolean
123 :require 'desktop
124 :initialize 'custom-initialize-default
125 :version "20.3")
127 (defcustom desktop-basefilename
128 (convert-standard-filename ".emacs.desktop")
129 "File for Emacs desktop, not including the directory name."
130 :type 'file
131 :group 'desktop)
133 (defcustom desktop-missing-file-warning nil
134 "*If non-nil then desktop warns when a file no longer exists.
135 Otherwise it simply ignores that file."
136 :type 'boolean
137 :group 'desktop)
139 (defvar desktop-globals-to-save
140 (list 'desktop-missing-file-warning
141 ;; Feature: saving kill-ring implies saving kill-ring-yank-pointer
142 ;; 'kill-ring
143 'tags-file-name
144 'tags-table-list
145 'search-ring
146 'regexp-search-ring
147 'register-alist
148 ;; 'desktop-globals-to-save ; Itself!
150 "List of global variables to save when killing Emacs.
151 An element may be variable name (a symbol)
152 or a cons cell of the form (VAR . MAX-SIZE),
153 which means to truncate VAR's value to at most MAX-SIZE elements
154 \(if the value is a list) before saving the value.")
156 (defvar desktop-locals-to-save
157 (list 'desktop-locals-to-save ; Itself! Think it over.
158 'truncate-lines
159 'case-fold-search
160 'case-replace
161 'fill-column
162 'overwrite-mode
163 'change-log-default-name
164 'line-number-mode
166 "List of local variables to save for each buffer.
167 The variables are saved only when they really are local.")
168 (make-variable-buffer-local 'desktop-locals-to-save)
170 ;; We skip .log files because they are normally temporary.
171 ;; (ftp) files because they require passwords and whatnot.
172 ;; TAGS files to save time (tags-file-name is saved instead).
173 (defcustom desktop-buffers-not-to-save
174 "\\(^nn\\.a[0-9]+\\|\\.log\\|(ftp)\\|^tags\\|^TAGS\\)$"
175 "Regexp identifying buffers that are to be excluded from saving."
176 :type 'regexp
177 :group 'desktop)
179 ;; Skip ange-ftp files
180 (defcustom desktop-files-not-to-save
181 "^/[^/:]*:"
182 "Regexp identifying files whose buffers are to be excluded from saving."
183 :type 'regexp
184 :group 'desktop)
186 (defcustom desktop-buffer-modes-to-save
187 '(Info-mode rmail-mode)
188 "If a buffer is of one of these major modes, save the buffer name.
189 It is up to the functions in `desktop-buffer-handlers' to decide
190 whether the buffer should be recreated or not, and how."
191 :type '(repeat symbol)
192 :group 'desktop)
194 (defcustom desktop-modes-not-to-save nil
195 "List of major modes whose buffers should not be saved."
196 :type '(repeat symbol)
197 :group 'desktop)
199 (defcustom desktop-buffer-major-mode nil
200 "When desktop creates a buffer, this holds the desired Major mode."
201 :type 'symbol
202 :group 'desktop)
204 (defcustom desktop-buffer-file-name nil
205 "When desktop creates a buffer, this holds the file name to visit."
206 :type '(choice file (const nil))
207 :group 'desktop)
209 (defcustom desktop-buffer-name nil
210 "When desktop creates a buffer, this holds the desired buffer name."
211 :type '(choice string (const nil))
212 :group 'desktop)
214 (defvar desktop-buffer-misc nil
215 "When desktop creates a buffer, this holds a list of misc info.
216 It is used by the `desktop-buffer-handlers' functions.")
218 (defcustom desktop-buffer-misc-functions
219 '(desktop-buffer-info-misc-data
220 desktop-buffer-dired-misc-data)
221 "*Functions used to determine auxiliary information for a buffer.
222 These functions are called in order, with no arguments. If a function
223 returns non-nil, its value is saved along with the desktop buffer for
224 which it was called; no further functions will be called.
226 Later, when desktop.el restores the buffers it has saved, each of the
227 `desktop-buffer-handlers' functions will have access to a buffer local
228 variable, named `desktop-buffer-misc', whose value is what the
229 \"misc\" function returned previously."
230 :type '(repeat function)
231 :group 'desktop)
233 (defcustom desktop-buffer-handlers
234 '(desktop-buffer-dired
235 desktop-buffer-rmail
236 desktop-buffer-mh
237 desktop-buffer-info
238 desktop-buffer-file)
239 "*List of functions to call in order to create a buffer.
240 The functions are called without explicit parameters but can use the
241 variables `desktop-buffer-major-mode', `desktop-buffer-file-name',
242 `desktop-buffer-name'.
243 If one function returns non-nil, no further functions are called.
244 If the function returns t then the buffer is considered created."
245 :type '(repeat function)
246 :group 'desktop)
248 (put 'desktop-buffer-handlers 'risky-local-variable t)
250 (defvar desktop-create-buffer-form "(desktop-create-buffer 205"
251 "Opening of form for creation of new buffers.")
253 (defcustom desktop-save-hook nil
254 "Hook run before desktop saves the state of Emacs.
255 This is useful for truncating history lists, for example."
256 :type 'hook
257 :group 'desktop)
259 (defcustom desktop-minor-mode-table
260 '((auto-fill-function auto-fill-mode)
261 (vc-mode nil))
262 "Table mapping minor mode variables to minor mode functions.
263 Each entry has the form (NAME RESTORE-FUNCTION).
264 NAME is the name of the buffer-local variable indicating that the minor
265 mode is active. RESTORE-FUNCTION is the function to activate the minor mode.
266 called. RESTORE-FUNCTION nil means don't try to restore the minor mode.
267 Only minor modes for which the name of the buffer-local variable
268 and the name of the minor mode function are different have to added to
269 this table."
270 :type 'sexp
271 :group 'desktop)
273 ;; ----------------------------------------------------------------------------
274 (defvar desktop-dirname nil
275 "The directory in which the current desktop file resides.")
277 (defconst desktop-header
278 ";; --------------------------------------------------------------------------
279 ;; Desktop File for Emacs
280 ;; --------------------------------------------------------------------------
281 " "*Header to place in Desktop file.")
283 (defvar desktop-delay-hook nil
284 "Hooks run after all buffers are loaded; intended for internal use.")
286 ;; ----------------------------------------------------------------------------
287 (defun desktop-truncate (l n)
288 "Truncate LIST to at most N elements destructively."
289 (let ((here (nthcdr (1- n) l)))
290 (if (consp here)
291 (setcdr here nil))))
292 ;; ----------------------------------------------------------------------------
293 (defcustom desktop-clear-preserve-buffers
294 '("*scratch*" "*Messages*")
295 "*Buffer names that `desktop-clear' should not delete."
296 :type '(repeat string)
297 :group 'desktop)
299 (defun desktop-clear ()
300 "Empty the Desktop.
301 This kills all buffers except for internal ones
302 and those listed in `desktop-clear-preserve-buffers'."
303 (interactive)
304 (setq kill-ring nil
305 kill-ring-yank-pointer nil
306 search-ring nil
307 search-ring-yank-pointer nil
308 regexp-search-ring nil
309 regexp-search-ring-yank-pointer nil)
310 (let ((buffers (buffer-list)))
311 (while buffers
312 (or (member (buffer-name (car buffers)) desktop-clear-preserve-buffers)
313 (null (buffer-name (car buffers)))
314 ;; Don't kill buffers made for internal purposes.
315 (and (not (equal (buffer-name (car buffers)) ""))
316 (eq (aref (buffer-name (car buffers)) 0) ?\ ))
317 (kill-buffer (car buffers)))
318 (setq buffers (cdr buffers))))
319 (delete-other-windows))
320 ;; ----------------------------------------------------------------------------
321 (add-hook 'kill-emacs-hook 'desktop-kill)
323 (defun desktop-kill ()
324 (if desktop-dirname
325 (condition-case err
326 (desktop-save desktop-dirname)
327 (file-error
328 (if (yes-or-no-p "Error while saving the desktop. Quit anyway? ")
330 (signal (car err) (cdr err)))))))
331 ;; ----------------------------------------------------------------------------
332 (defun desktop-list* (&rest args)
333 (if (null (cdr args))
334 (car args)
335 (setq args (nreverse args))
336 (let ((value (cons (nth 1 args) (car args))))
337 (setq args (cdr (cdr args)))
338 (while args
339 (setq value (cons (car args) value))
340 (setq args (cdr args)))
341 value)))
343 (defun desktop-internal-v2s (val)
344 "Convert VALUE to a pair (QUOTE . TXT); (eval (read TXT)) gives VALUE.
345 TXT is a string that when read and evaluated yields value.
346 QUOTE may be `may' (value may be quoted),
347 `must' (values must be quoted), or nil (value may not be quoted)."
348 (cond
349 ((or (numberp val) (null val) (eq t val))
350 (cons 'may (prin1-to-string val)))
351 ((stringp val)
352 (let ((copy (copy-sequence val)))
353 (set-text-properties 0 (length copy) nil copy)
354 ;; Get rid of text properties because we cannot read them
355 (cons 'may (prin1-to-string copy))))
356 ((symbolp val)
357 (cons 'must (prin1-to-string val)))
358 ((vectorp val)
359 (let* ((special nil)
360 (pass1 (mapcar
361 (lambda (el)
362 (let ((res (desktop-internal-v2s el)))
363 (if (null (car res))
364 (setq special t))
365 res))
366 val)))
367 (if special
368 (cons nil (concat "(vector "
369 (mapconcat (lambda (el)
370 (if (eq (car el) 'must)
371 (concat "'" (cdr el))
372 (cdr el)))
373 pass1
374 " ")
375 ")"))
376 (cons 'may (concat "[" (mapconcat 'cdr pass1 " ") "]")))))
377 ((consp val)
378 (let ((p val)
379 newlist
380 use-list*
381 anynil)
382 (while (consp p)
383 (let ((q.txt (desktop-internal-v2s (car p))))
384 (or anynil (setq anynil (null (car q.txt))))
385 (setq newlist (cons q.txt newlist)))
386 (setq p (cdr p)))
387 (if p
388 (let ((last (desktop-internal-v2s p))
389 (el (car newlist)))
390 (or anynil (setq anynil (null (car last))))
391 (or anynil
392 (setq newlist (cons '(must . ".") newlist)))
393 (setq use-list* t)
394 (setq newlist (cons last newlist))))
395 (setq newlist (nreverse newlist))
396 (if anynil
397 (cons nil
398 (concat (if use-list* "(desktop-list* " "(list ")
399 (mapconcat (lambda (el)
400 (if (eq (car el) 'must)
401 (concat "'" (cdr el))
402 (cdr el)))
403 newlist
404 " ")
405 ")"))
406 (cons 'must
407 (concat "(" (mapconcat 'cdr newlist " ") ")")))))
408 ((subrp val)
409 (cons nil (concat "(symbol-function '"
410 (substring (prin1-to-string val) 7 -1)
411 ")")))
412 ((markerp val)
413 (let ((pos (prin1-to-string (marker-position val)))
414 (buf (prin1-to-string (buffer-name (marker-buffer val)))))
415 (cons nil (concat "(let ((mk (make-marker)))"
416 " (add-hook 'desktop-delay-hook"
417 " (list 'lambda '() (list 'set-marker mk "
418 pos " (get-buffer " buf ")))) mk)"))))
419 (t ; save as text
420 (cons 'may "\"Unprintable entity\""))))
422 (defun desktop-value-to-string (val)
423 "Convert VALUE to a string that when read evaluates to the same value.
424 Not all types of values are supported."
425 (let* ((print-escape-newlines t)
426 (float-output-format nil)
427 (quote.txt (desktop-internal-v2s val))
428 (quote (car quote.txt))
429 (txt (cdr quote.txt)))
430 (if (eq quote 'must)
431 (concat "'" txt)
432 txt)))
433 ;; ----------------------------------------------------------------------------
434 (defun desktop-outvar (varspec)
435 "Output a setq statement for variable VAR to the desktop file.
436 The argument VARSPEC may be the variable name VAR (a symbol),
437 or a cons cell of the form (VAR . MAX-SIZE),
438 which means to truncate VAR's value to at most MAX-SIZE elements
439 \(if the value is a list) before saving the value."
440 (let (var size)
441 (if (consp varspec)
442 (setq var (car varspec) size (cdr varspec))
443 (setq var varspec))
444 (if (boundp var)
445 (progn
446 (if (and (integerp size)
447 (> size 0)
448 (listp (eval var)))
449 (desktop-truncate (eval var) size))
450 (insert "(setq "
451 (symbol-name var)
453 (desktop-value-to-string (symbol-value var))
454 ")\n")))))
455 ;; ----------------------------------------------------------------------------
456 (defun desktop-save-buffer-p (filename bufname mode &rest dummy)
457 "Return t if the desktop should record a particular buffer for next startup.
458 FILENAME is the visited file name, BUFNAME is the buffer name, and
459 MODE is the major mode."
460 (let ((case-fold-search nil))
461 (and (not (string-match desktop-buffers-not-to-save bufname))
462 (not (memq mode desktop-modes-not-to-save))
463 (or (and filename
464 (not (string-match desktop-files-not-to-save filename)))
465 (and (eq mode 'dired-mode)
466 (save-excursion
467 (set-buffer (get-buffer bufname))
468 (not (string-match desktop-files-not-to-save
469 default-directory))))
470 (and (null filename)
471 (memq mode desktop-buffer-modes-to-save))))))
472 ;; ----------------------------------------------------------------------------
473 (defun desktop-save (dirname)
474 "Save the Desktop file. Parameter DIRNAME specifies where to save desktop."
475 (interactive "DDirectory to save desktop file in: ")
476 (run-hooks 'desktop-save-hook)
477 (save-excursion
478 (let ((filename (expand-file-name desktop-basefilename dirname))
479 (info (nreverse
480 (mapcar
481 (function
482 (lambda (b)
483 (set-buffer b)
484 (list
485 (buffer-file-name)
486 (buffer-name)
487 major-mode
488 ;; minor modes
489 (let (ret)
490 (mapcar
491 #'(lambda (mim)
492 (and (boundp mim)
493 (symbol-value mim)
494 (setq ret
495 (cons (let ((special (assq mim desktop-minor-mode-table)))
496 (if special
497 (cadr special)
498 mim))
499 ret))))
500 (mapcar #'car minor-mode-alist))
501 ret)
502 (point)
503 (list (mark t) mark-active)
504 buffer-read-only
505 (run-hook-with-args-until-success
506 'desktop-buffer-misc-functions)
507 (let ((locals desktop-locals-to-save)
508 (loclist (buffer-local-variables))
509 (ll))
510 (while locals
511 (let ((here (assq (car locals) loclist)))
512 (if here
513 (setq ll (cons here ll))
514 (if (member (car locals) loclist)
515 (setq ll (cons (car locals) ll)))))
516 (setq locals (cdr locals)))
519 (buffer-list))))
520 (buf (get-buffer-create "*desktop*")))
521 (set-buffer buf)
522 (erase-buffer)
524 (insert ";; -*- coding: emacs-mule; -*-\n"
525 desktop-header
526 ";; Created " (current-time-string) "\n"
527 ";; Emacs version " emacs-version "\n\n"
528 ";; Global section:\n")
529 (mapcar (function desktop-outvar) desktop-globals-to-save)
530 (if (memq 'kill-ring desktop-globals-to-save)
531 (insert "(setq kill-ring-yank-pointer (nthcdr "
532 (int-to-string
533 (- (length kill-ring) (length kill-ring-yank-pointer)))
534 " kill-ring))\n"))
536 (insert "\n;; Buffer section:\n")
537 (mapcar
538 (function (lambda (l)
539 (if (apply 'desktop-save-buffer-p l)
540 (progn
541 (insert desktop-create-buffer-form)
542 (mapcar
543 (function (lambda (e)
544 (insert "\n "
545 (desktop-value-to-string e))))
547 (insert ")\n\n")))))
548 info)
549 (setq default-directory dirname)
550 (if (file-exists-p filename) (delete-file filename))
551 (let ((coding-system-for-write 'emacs-mule))
552 (write-region (point-min) (point-max) filename nil 'nomessage))))
553 (setq desktop-dirname dirname))
554 ;; ----------------------------------------------------------------------------
555 (defun desktop-remove ()
556 "Delete the Desktop file and inactivate the desktop system."
557 (interactive)
558 (if desktop-dirname
559 (let ((filename (concat desktop-dirname desktop-basefilename)))
560 (setq desktop-dirname nil)
561 (if (file-exists-p filename)
562 (delete-file filename)))))
563 ;; ----------------------------------------------------------------------------
564 ;;;###autoload
565 (defun desktop-read ()
566 "Read the Desktop file and the files it specifies.
567 This is a no-op when Emacs is running in batch mode."
568 (interactive)
569 (if noninteractive
571 (let ((dirs '("./" "~/")))
572 (while (and dirs
573 (not (file-exists-p (expand-file-name
574 desktop-basefilename
575 (car dirs)))))
576 (setq dirs (cdr dirs)))
577 (setq desktop-dirname (and dirs (expand-file-name (car dirs))))
578 (if desktop-dirname
579 (progn
580 (load (expand-file-name desktop-basefilename desktop-dirname)
581 t t t)
582 (run-hooks 'desktop-delay-hook)
583 (setq desktop-delay-hook nil)
584 (message "Desktop loaded."))
585 (desktop-clear)))))
586 ;; ----------------------------------------------------------------------------
587 ;;;###autoload
588 (defun desktop-load-default ()
589 "Load the `default' start-up library manually.
590 Also inhibit further loading of it. Call this from your `.emacs' file
591 to provide correct modes for autoloaded files."
592 (if (not inhibit-default-init) ; safety check
593 (progn
594 (load "default" t t)
595 (setq inhibit-default-init t))))
596 ;; ----------------------------------------------------------------------------
597 ;; Note: the following functions use the dynamic variable binding in Lisp.
599 (defun desktop-buffer-info-misc-data ()
600 (if (eq major-mode 'Info-mode)
601 (list Info-current-file
602 Info-current-node)))
604 (defun desktop-buffer-dired-misc-data ()
605 (if (eq major-mode 'dired-mode)
606 (cons
607 (expand-file-name dired-directory)
608 (cdr
609 (nreverse
610 (mapcar
611 (function car)
612 dired-subdir-alist))))))
614 (defun desktop-buffer-info () "Load an info file."
615 (if (eq 'Info-mode desktop-buffer-major-mode)
616 (progn
617 (let ((first (nth 0 desktop-buffer-misc))
618 (second (nth 1 desktop-buffer-misc)))
619 (when (and first second)
620 (require 'info)
621 (Info-find-node first second)
622 (current-buffer))))))
623 ;; ----------------------------------------------------------------------------
624 (defun desktop-buffer-rmail () "Load an RMAIL file."
625 (if (eq 'rmail-mode desktop-buffer-major-mode)
626 (condition-case error
627 (progn (rmail-input desktop-buffer-file-name)
628 (if (eq major-mode 'rmail-mode)
629 (current-buffer)
630 rmail-buffer))
631 (file-locked
632 (kill-buffer (current-buffer))
633 'ignored))))
634 ;; ----------------------------------------------------------------------------
635 (defun desktop-buffer-mh () "Load a folder in the mh system."
636 (if (eq 'mh-folder-mode desktop-buffer-major-mode)
637 (progn
638 (require 'mh-e)
639 (mh-find-path)
640 (mh-visit-folder desktop-buffer-name)
641 (current-buffer))))
642 ;; ----------------------------------------------------------------------------
643 (defun desktop-buffer-dired () "Load a directory using dired."
644 (if (eq 'dired-mode desktop-buffer-major-mode)
645 (if (file-directory-p (file-name-directory (car desktop-buffer-misc)))
646 (progn
647 (dired (car desktop-buffer-misc))
648 (mapcar 'dired-maybe-insert-subdir (cdr desktop-buffer-misc))
649 (current-buffer))
650 (message "Directory %s no longer exists." (car desktop-buffer-misc))
651 (sit-for 1)
652 'ignored)))
653 ;; ----------------------------------------------------------------------------
654 (defun desktop-buffer-file () "Load a file."
655 (if desktop-buffer-file-name
656 (if (or (file-exists-p desktop-buffer-file-name)
657 (and desktop-missing-file-warning
658 (y-or-n-p (format
659 "File \"%s\" no longer exists. Re-create? "
660 desktop-buffer-file-name))))
661 (let ((buf (find-file-noselect desktop-buffer-file-name)))
662 (condition-case nil
663 (switch-to-buffer buf)
664 (error (pop-to-buffer buf))))
665 'ignored)))
666 ;; ----------------------------------------------------------------------------
667 ;; Create a buffer, load its file, set is mode, ...; called from Desktop file
668 ;; only.
669 (defun desktop-create-buffer (ver desktop-buffer-file-name desktop-buffer-name
670 desktop-buffer-major-mode
671 mim pt mk ro desktop-buffer-misc
672 &optional locals)
673 (let ((hlist desktop-buffer-handlers)
674 (result)
675 (handler))
676 (while (and (not result) hlist)
677 (setq handler (car hlist))
678 (setq result (funcall handler))
679 (setq hlist (cdr hlist)))
680 (when (bufferp result)
681 (set-buffer result)
682 (if (not (equal (buffer-name) desktop-buffer-name))
683 (rename-buffer desktop-buffer-name))
684 ;; minor modes
685 (cond ((equal '(t) mim) (auto-fill-mode 1)) ; backwards compatible
686 ((equal '(nil) mim) (auto-fill-mode 0))
687 (t (mapcar #'(lambda (minor-mode)
688 (unless (or (eq minor-mode t) (eq minor-mode nil))
689 (if (and minor-mode (fboundp minor-mode))
690 (funcall minor-mode 1))))
691 mim)))
692 (goto-char pt)
693 (if (consp mk)
694 (progn
695 (set-mark (car mk))
696 (setq mark-active (car (cdr mk))))
697 (set-mark mk))
698 ;; Never override file system if the file really is read-only marked.
699 (if ro (setq buffer-read-only ro))
700 (while locals
701 (let ((this (car locals)))
702 (if (consp this)
703 ;; an entry of this form `(symbol . value)'
704 (progn
705 (make-local-variable (car this))
706 (set (car this) (cdr this)))
707 ;; an entry of the form `symbol'
708 (make-local-variable this)
709 (makunbound this)))
710 (setq locals (cdr locals))))))
712 ;; Backward compatibility -- update parameters to 205 standards.
713 (defun desktop-buffer (desktop-buffer-file-name desktop-buffer-name
714 desktop-buffer-major-mode
715 mim pt mk ro tl fc cfs cr desktop-buffer-misc)
716 (desktop-create-buffer 205 desktop-buffer-file-name desktop-buffer-name
717 desktop-buffer-major-mode (cdr mim) pt mk ro
718 desktop-buffer-misc
719 (list (cons 'truncate-lines tl)
720 (cons 'fill-column fc)
721 (cons 'case-fold-search cfs)
722 (cons 'case-replace cr)
723 (cons 'overwrite-mode (car mim)))))
724 ;; ----------------------------------------------------------------------------
726 ;; If the user set desktop-enable to t with Custom,
727 ;; do the rest of what it takes to use desktop,
728 ;; but do it after finishing loading the init file.
729 (add-hook 'after-init-hook
730 '(lambda ()
731 (when desktop-enable
732 (desktop-load-default)
733 (desktop-read))))
735 (provide 'desktop)
737 ;;; desktop.el ends here