1993-06-01 20:09:25 +00:00
|
|
|
;;; desktop.el --- save partial status of Emacs when killed
|
|
|
|
|
1994-02-05 02:23:44 +00:00
|
|
|
;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
1993-06-01 20:09:25 +00:00
|
|
|
|
|
|
|
;; Author: Morten Welinder <terra@diku.dk>
|
1994-02-05 02:23:44 +00:00
|
|
|
;; Version: 2.07
|
1993-12-23 04:59:47 +00:00
|
|
|
;; Keywords: customization
|
|
|
|
;; Favourite-brand-of-beer: None, I hate beer.
|
1993-06-01 20:09:25 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
;; Save the Desktop, i.e.,
|
|
|
|
;; - some global variables
|
|
|
|
;; - the list of buffers with associated files. For each buffer also
|
|
|
|
;; - the major mode
|
|
|
|
;; - the default directory
|
|
|
|
;; - the point
|
|
|
|
;; - the mark & mark-active
|
|
|
|
;; - buffer-read-only
|
1994-01-06 11:34:51 +00:00
|
|
|
;; - some local variables
|
1993-06-01 20:09:25 +00:00
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
;; To use this, first put these three lines in the bottom of your .emacs
|
|
|
|
;; file (the later the better):
|
|
|
|
;;
|
|
|
|
;; (load "desktop")
|
|
|
|
;; (desktop-load-default)
|
|
|
|
;; (desktop-read)
|
|
|
|
;;
|
1994-01-06 11:34:51 +00:00
|
|
|
;; Between the second and the third line you may wish to add something that
|
1994-02-05 02:23:44 +00:00
|
|
|
;; updates the variables `desktop-globals-to-save' and/or
|
1994-01-06 11:34:51 +00:00
|
|
|
;; `desktop-locals-to-save'. If for instance you want to save the local
|
|
|
|
;; variable `foobar' for every buffer in which it is local, you could add
|
|
|
|
;; the line
|
|
|
|
;;
|
|
|
|
;; (setq desktop-locals-to-save (cons 'foobar desktop-locals-to-save))
|
|
|
|
;;
|
1994-02-05 02:23:44 +00:00
|
|
|
;; To avoid saving excessive amounts of data you may also with to add
|
1994-01-06 11:34:51 +00:00
|
|
|
;; something like the following
|
|
|
|
;;
|
|
|
|
;; (add-hook 'kill-emacs-hook
|
1994-02-05 02:23:44 +00:00
|
|
|
;; '(lambda ()
|
1994-01-06 11:34:51 +00:00
|
|
|
;; (desktop-truncate search-ring 3)
|
|
|
|
;; (desktop-truncate regexp-search-ring 3)))
|
|
|
|
;;
|
|
|
|
;; which will make sure that no more than three search items are saved. You
|
|
|
|
;; must place this line *after* the (load "desktop") line.
|
1993-06-01 20:09:25 +00:00
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
;; Start Emacs in the root directory of your "project". The desktop saver
|
|
|
|
;; is inactive by default. You activate it by M-x desktop-save RET. When
|
|
|
|
;; you exit the next time the above data will be saved. This ensures that
|
|
|
|
;; all the files you were editing will be reloaded the next time you start
|
|
|
|
;; Emacs from the same directory and that points will be set where you
|
1994-01-06 11:34:51 +00:00
|
|
|
;; left them. If you save a desktop file in your home directory it will
|
1994-02-05 02:23:44 +00:00
|
|
|
;; act as a default desktop when you start Emacs from a directory that
|
1994-01-06 11:34:51 +00:00
|
|
|
;; doesn't have its own. I never do this, but you may want to.
|
|
|
|
|
|
|
|
;; By the way: don't use desktop.el to customize Emacs -- the file .emacs
|
|
|
|
;; in your home directory is used for that. Saving global default values
|
|
|
|
;; for buffers is an example of misuse.
|
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
;; PLEASE NOTE: The kill ring can be saved as specified by the variable
|
|
|
|
;; `desktop-globals-to-save' (by default it isn't). This may result in saving
|
|
|
|
;; things you did not mean to keep. Use M-x desktop-clear RET.
|
1994-01-06 11:34:51 +00:00
|
|
|
|
|
|
|
;; Thanks to hetrick@phys.uva.nl (Jim Hetrick) for useful ideas.
|
|
|
|
;; avk@rtsg.mot.com (Andrew V. Klein) for a dired tip.
|
|
|
|
;; chris@tecc.co.uk (Chris Boucher) for a mark tip.
|
|
|
|
;; f89-kam@nada.kth.se (Klas Mellbourn) for a mh-e tip.
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; TODO:
|
|
|
|
;;
|
|
|
|
;; Save window configuration.
|
|
|
|
;; Recognize more minor modes.
|
|
|
|
;; Save mark rings.
|
|
|
|
;; Start-up with buffer-menu???
|
1993-06-01 20:09:25 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
1994-01-06 11:34:51 +00:00
|
|
|
;; Make the compilation more silent
|
|
|
|
(eval-when-compile
|
|
|
|
;; We use functions from these modules
|
1994-02-05 02:23:44 +00:00
|
|
|
(mapcar 'require '(info mh-e dired reporter)))
|
1994-01-06 11:34:51 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-10-07 16:50:26 +00:00
|
|
|
;; USER OPTIONS -- settings you might want to play with.
|
|
|
|
;; ----------------------------------------------------------------------------
|
|
|
|
(defconst desktop-basefilename
|
1994-02-05 02:23:44 +00:00
|
|
|
(if (eq system-type 'ms-dos)
|
1993-06-01 20:09:25 +00:00
|
|
|
"emacs.dsk" ; Ms-Dos does not support multiple dots in file name
|
|
|
|
".emacs.desktop")
|
|
|
|
"File for Emacs desktop. A directory name will be prepended to this name.")
|
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
(defvar desktop-missing-file-warning t
|
1993-06-01 20:09:25 +00:00
|
|
|
"*If non-nil then issue warning if a file no longer exists.
|
|
|
|
Otherwise simply ignore the file.")
|
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
(defvar desktop-globals-to-save
|
1993-06-01 20:09:25 +00:00
|
|
|
(list 'desktop-missing-file-warning
|
1993-10-07 16:50:26 +00:00
|
|
|
;; Feature: saving kill-ring implies saving kill-ring-yank-pointer
|
1994-01-06 11:34:51 +00:00
|
|
|
;; 'kill-ring
|
1993-10-07 16:50:26 +00:00
|
|
|
'tags-file-name
|
|
|
|
'tags-table-list
|
1994-01-06 11:34:51 +00:00
|
|
|
'search-ring
|
|
|
|
'regexp-search-ring
|
1994-02-05 02:23:44 +00:00
|
|
|
'register-alist
|
1993-10-07 16:50:26 +00:00
|
|
|
;; 'desktop-globals-to-save ; Itself!
|
1993-12-23 04:59:47 +00:00
|
|
|
)
|
1993-06-01 20:09:25 +00:00
|
|
|
"List of global variables to save when killing Emacs.")
|
|
|
|
|
1994-01-06 11:34:51 +00:00
|
|
|
(defvar desktop-locals-to-save
|
|
|
|
(list 'desktop-locals-to-save ; Itself! Think it over.
|
|
|
|
'truncate-lines
|
|
|
|
'case-fold-search
|
|
|
|
'case-replace
|
|
|
|
'fill-column
|
|
|
|
'overwrite-mode
|
|
|
|
'change-log-default-name
|
|
|
|
)
|
|
|
|
"List of local variables to save for each buffer. The variables are saved
|
|
|
|
only when they really are local.")
|
1994-02-05 02:23:44 +00:00
|
|
|
(make-variable-buffer-local 'desktop-locals-to-save)
|
1994-01-06 11:34:51 +00:00
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
;; We skip .log files because they are normally temporary.
|
|
|
|
;; (ftp) files because they require passwords and whatsnot.
|
|
|
|
;; TAGS files to save time (tags-file-name is saved instead).
|
1993-06-01 20:09:25 +00:00
|
|
|
(defvar desktop-buffers-not-to-save
|
1994-02-05 02:23:44 +00:00
|
|
|
"\\(^nn\\.a[0-9]+\\|\\.log\\|(ftp)\\|^tags\\|^TAGS\\)$"
|
1993-06-01 20:09:25 +00:00
|
|
|
"Regexp identifying buffers that are to be excluded from saving.")
|
|
|
|
|
|
|
|
(defvar desktop-buffer-handlers
|
1993-10-07 16:50:26 +00:00
|
|
|
'(desktop-buffer-dired
|
1993-06-01 20:09:25 +00:00
|
|
|
desktop-buffer-rmail
|
1994-01-06 11:34:51 +00:00
|
|
|
desktop-buffer-mh
|
1993-06-01 20:09:25 +00:00
|
|
|
desktop-buffer-info
|
|
|
|
desktop-buffer-file)
|
1993-10-07 16:50:26 +00:00
|
|
|
"*List of functions to call in order to create a buffer. The functions are
|
|
|
|
called without explicit parameters but may access the the major mode as `mam',
|
|
|
|
the file name as `fn', the buffer name as `bn', the default directory as
|
|
|
|
`dd'. If some function returns non-nil no further functions are called.
|
1993-06-01 20:09:25 +00:00
|
|
|
If the function returns t then the buffer is considered created.")
|
1994-01-06 11:34:51 +00:00
|
|
|
|
|
|
|
(defvar desktop-create-buffer-form "(desktop-create-buffer 205"
|
|
|
|
"Opening of form for creation of new buffers.")
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
|
|
|
(defvar desktop-dirname nil
|
1993-06-01 20:09:25 +00:00
|
|
|
"The directory in which the current desktop file resides.")
|
|
|
|
|
|
|
|
(defconst desktop-header
|
1993-10-07 16:50:26 +00:00
|
|
|
";; --------------------------------------------------------------------------
|
|
|
|
;; Desktop File for Emacs
|
|
|
|
;; --------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
" "*Header to place in Desktop file.")
|
1994-02-05 02:23:44 +00:00
|
|
|
|
|
|
|
(defvar desktop-delay-hook nil
|
|
|
|
"Hooks run after all buffers are loaded; intended for internal use.")
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1994-01-06 11:34:51 +00:00
|
|
|
(defun desktop-truncate (l n)
|
|
|
|
"Truncate LIST to at most N elements destructively."
|
|
|
|
(let ((here (nthcdr (1- n) l)))
|
|
|
|
(if (consp here)
|
1994-02-05 02:23:44 +00:00
|
|
|
(setcdr here nil))))
|
1994-01-06 11:34:51 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-clear () "Empty the Desktop."
|
|
|
|
(interactive)
|
|
|
|
(setq kill-ring nil)
|
|
|
|
(setq kill-ring-yank-pointer nil)
|
1993-12-23 04:59:47 +00:00
|
|
|
(mapcar (function kill-buffer) (buffer-list))
|
|
|
|
(delete-other-windows))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1994-02-05 02:23:44 +00:00
|
|
|
(add-hook 'kill-emacs-hook 'desktop-kill)
|
1994-01-06 11:34:51 +00:00
|
|
|
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-kill ()
|
1993-10-07 16:50:26 +00:00
|
|
|
(if desktop-dirname
|
1993-06-01 20:09:25 +00:00
|
|
|
(progn
|
|
|
|
(desktop-save desktop-dirname))))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1994-02-05 02:23:44 +00:00
|
|
|
(defun desktop-internal-v2s (val)
|
|
|
|
"Convert VALUE to a pair (quote . txt) where txt is a string that when read
|
1994-04-25 19:55:45 +00:00
|
|
|
and evaluated yields value. quote may be 'may (value may be quoted),
|
1994-02-05 02:23:44 +00:00
|
|
|
'must (values must be quoted), or nil (value may not be quoted)."
|
|
|
|
(cond
|
|
|
|
((or (numberp val) (stringp val) (null val) (eq t val))
|
|
|
|
(cons 'may (prin1-to-string val)))
|
|
|
|
((symbolp val)
|
|
|
|
(cons 'must (prin1-to-string val)))
|
|
|
|
((vectorp val)
|
|
|
|
(let* ((special nil)
|
|
|
|
(pass1 (mapcar
|
|
|
|
(lambda (el)
|
|
|
|
(let ((res (desktop-internal-v2s el)))
|
|
|
|
(if (null (car res))
|
|
|
|
(setq special t))
|
|
|
|
res))
|
|
|
|
val)))
|
|
|
|
(if special
|
|
|
|
(cons nil (concat "(vector "
|
|
|
|
(mapconcat (lambda (el)
|
|
|
|
(if (eq (car el) 'must)
|
|
|
|
(concat "'" (cdr el))
|
|
|
|
(cdr el)))
|
|
|
|
pass1
|
|
|
|
" ")
|
|
|
|
")"))
|
|
|
|
(cons 'may (concat "[" (mapconcat 'cdr pass1 " ") "]")))))
|
|
|
|
((consp val)
|
|
|
|
(let ((car-q.txt (desktop-internal-v2s (car val)))
|
|
|
|
(cdr-q.txt (desktop-internal-v2s (cdr val))))
|
|
|
|
(cond
|
|
|
|
((or (null (car car-q.txt)) (null (car cdr-q.txt)))
|
1994-04-25 19:55:45 +00:00
|
|
|
(cons nil (concat "(cons "
|
|
|
|
(if (eq (car car-q.txt) 'must) "'")
|
1994-02-05 02:23:44 +00:00
|
|
|
(cdr car-q.txt) " "
|
1994-04-25 19:55:45 +00:00
|
|
|
(if (eq (car cdr-q.txt) 'must) "'")
|
1994-02-05 02:23:44 +00:00
|
|
|
(cdr cdr-q.txt) ")")))
|
|
|
|
((consp (cdr val))
|
1994-04-25 19:55:45 +00:00
|
|
|
(cons 'must (concat "(" (cdr car-q.txt)
|
1994-02-05 02:23:44 +00:00
|
|
|
" " (substring (cdr cdr-q.txt) 1 -1) ")")))
|
|
|
|
((null (cdr val))
|
|
|
|
(cons 'must (concat "(" (cdr car-q.txt) ")")))
|
|
|
|
(t
|
|
|
|
(cons 'must (concat "(" (cdr car-q.txt) " . " (cdr cdr-q.txt) ")"))))))
|
|
|
|
((subrp val)
|
|
|
|
(cons nil (concat "(symbol-function '"
|
|
|
|
(substring (prin1-to-string val) 7 -1)
|
|
|
|
")")))
|
|
|
|
((markerp val)
|
|
|
|
(let ((pos (prin1-to-string (marker-position val)))
|
|
|
|
(buf (prin1-to-string (buffer-name (marker-buffer val)))))
|
|
|
|
(cons nil (concat "(let ((mk (make-marker)))"
|
|
|
|
" (add-hook 'desktop-delay-hook"
|
|
|
|
" (list 'lambda '() (list 'set-marker mk "
|
|
|
|
pos " (get-buffer " buf ")))) mk)"))))
|
|
|
|
(t ; save as text
|
1994-04-25 19:55:45 +00:00
|
|
|
(cons nil (prin1-to-string (prin1-to-string val))))))
|
1994-02-05 02:23:44 +00:00
|
|
|
|
1994-01-06 11:34:51 +00:00
|
|
|
(defun desktop-value-to-string (val)
|
1994-02-05 02:23:44 +00:00
|
|
|
"Convert VALUE to a string that when read evaluates to the same value. Not
|
|
|
|
all types of values are supported."
|
|
|
|
(let* ((print-escape-newlines t)
|
|
|
|
(float-output-format nil)
|
|
|
|
(quote.txt (desktop-internal-v2s val))
|
|
|
|
(quote (car quote.txt))
|
|
|
|
(txt (cdr quote.txt)))
|
|
|
|
(if (eq quote 'must)
|
|
|
|
(concat "'" txt)
|
|
|
|
txt)))
|
1994-01-06 11:34:51 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-12-23 04:59:47 +00:00
|
|
|
(defun desktop-outvar (var)
|
1993-06-01 20:09:25 +00:00
|
|
|
"Output a setq statement for VAR to the desktop file."
|
1993-12-23 04:59:47 +00:00
|
|
|
(if (boundp var)
|
1994-01-06 11:34:51 +00:00
|
|
|
(insert "(setq "
|
|
|
|
(symbol-name var)
|
|
|
|
" "
|
|
|
|
(desktop-value-to-string (symbol-value var))
|
|
|
|
")\n")))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1994-01-06 11:34:51 +00:00
|
|
|
(defun desktop-save-buffer-p (filename bufname mode &rest dummy)
|
1993-12-23 04:59:47 +00:00
|
|
|
"Return t if the desktop should record a particular buffer for next startup.
|
1993-10-07 16:50:26 +00:00
|
|
|
FILENAME is the visited file name, BUFNAME is the buffer name, and
|
1993-06-01 20:09:25 +00:00
|
|
|
MODE is the major mode."
|
|
|
|
(or (and filename
|
|
|
|
(not (string-match desktop-buffers-not-to-save bufname)))
|
|
|
|
(and (null filename)
|
|
|
|
(memq mode '(Info-mode dired-mode rmail-mode)))))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-save (dirname)
|
|
|
|
"Save the Desktop file. Parameter DIRNAME specifies where to save desktop."
|
|
|
|
(interactive "DDirectory to save desktop file in: ")
|
|
|
|
(save-excursion
|
1993-10-07 16:50:26 +00:00
|
|
|
(let ((filename (expand-file-name
|
1993-06-01 20:09:25 +00:00
|
|
|
(concat dirname desktop-basefilename)))
|
1993-10-07 16:50:26 +00:00
|
|
|
(info (nreverse
|
|
|
|
(mapcar
|
1993-06-01 20:09:25 +00:00
|
|
|
(function (lambda (b)
|
|
|
|
(set-buffer b)
|
1993-10-07 16:50:26 +00:00
|
|
|
(list
|
1993-06-01 20:09:25 +00:00
|
|
|
(buffer-file-name)
|
|
|
|
(buffer-name)
|
1994-01-06 11:34:51 +00:00
|
|
|
major-mode
|
|
|
|
(list ; list explaining minor modes
|
1994-02-05 02:23:44 +00:00
|
|
|
(not (null auto-fill-function)))
|
1993-06-01 20:09:25 +00:00
|
|
|
(point)
|
1994-02-05 02:23:44 +00:00
|
|
|
(list (mark t) mark-active)
|
1993-06-01 20:09:25 +00:00
|
|
|
buffer-read-only
|
1994-01-06 11:34:51 +00:00
|
|
|
(cond ((eq major-mode 'Info-mode)
|
|
|
|
(list Info-current-file
|
|
|
|
Info-current-node))
|
|
|
|
((eq major-mode 'dired-mode)
|
1994-02-05 02:23:44 +00:00
|
|
|
(nreverse
|
|
|
|
(mapcar
|
|
|
|
(function car)
|
|
|
|
dired-subdir-alist)))
|
1994-01-06 11:34:51 +00:00
|
|
|
)
|
|
|
|
(let ((locals desktop-locals-to-save)
|
|
|
|
(loclist (buffer-local-variables))
|
|
|
|
(ll))
|
|
|
|
(while locals
|
|
|
|
(let ((here (assq (car locals) loclist)))
|
|
|
|
(if here
|
|
|
|
(setq ll (cons here ll))
|
|
|
|
(if (member (car locals) loclist)
|
|
|
|
(setq ll (cons (car locals) ll)))))
|
|
|
|
(setq locals (cdr locals)))
|
|
|
|
ll)
|
1993-06-01 20:09:25 +00:00
|
|
|
)))
|
|
|
|
(buffer-list))))
|
|
|
|
(buf (get-buffer-create "*desktop*")))
|
|
|
|
(set-buffer buf)
|
|
|
|
(erase-buffer)
|
1994-02-05 02:23:44 +00:00
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
(insert desktop-header
|
|
|
|
";; Created " (current-time-string) "\n"
|
1994-02-05 02:23:44 +00:00
|
|
|
";; Emacs version " emacs-version "\n\n"
|
|
|
|
";; Global section:\n")
|
1993-06-01 20:09:25 +00:00
|
|
|
(mapcar (function desktop-outvar) desktop-globals-to-save)
|
|
|
|
(if (memq 'kill-ring desktop-globals-to-save)
|
1993-10-07 16:50:26 +00:00
|
|
|
(insert "(setq kill-ring-yank-pointer (nthcdr "
|
|
|
|
(int-to-string
|
1993-06-01 20:09:25 +00:00
|
|
|
(- (length kill-ring) (length kill-ring-yank-pointer)))
|
|
|
|
" kill-ring))\n"))
|
|
|
|
|
1993-10-07 16:50:26 +00:00
|
|
|
(insert "\n;; Buffer section:\n")
|
1994-02-05 02:23:44 +00:00
|
|
|
(mapcar
|
|
|
|
(function (lambda (l)
|
|
|
|
(if (apply 'desktop-save-buffer-p l)
|
|
|
|
(progn
|
|
|
|
(insert desktop-create-buffer-form)
|
|
|
|
(mapcar
|
|
|
|
(function (lambda (e)
|
|
|
|
(insert "\n "
|
|
|
|
(desktop-value-to-string e))))
|
|
|
|
l)
|
|
|
|
(insert ")\n\n")))))
|
|
|
|
info)
|
1993-06-01 20:09:25 +00:00
|
|
|
(setq default-directory dirname)
|
|
|
|
(if (file-exists-p filename) (delete-file filename))
|
|
|
|
(write-region (point-min) (point-max) filename nil 'nomessage)))
|
|
|
|
(setq desktop-dirname dirname))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-remove ()
|
|
|
|
"Delete the Desktop file and inactivate the desktop system."
|
|
|
|
(interactive)
|
|
|
|
(if desktop-dirname
|
|
|
|
(let ((filename (concat desktop-dirname desktop-basefilename)))
|
|
|
|
(if (file-exists-p filename) (delete-file filename))
|
|
|
|
(setq desktop-dirname nil))))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-read ()
|
|
|
|
"Read the Desktop file and the files it specifies."
|
|
|
|
(interactive)
|
|
|
|
(let ((filename))
|
|
|
|
(if (file-exists-p (concat "./" desktop-basefilename))
|
|
|
|
(setq desktop-dirname (expand-file-name "./"))
|
|
|
|
(if (file-exists-p (concat "~/" desktop-basefilename))
|
|
|
|
(setq desktop-dirname (expand-file-name "~/"))
|
|
|
|
(setq desktop-dirname nil)))
|
|
|
|
(if desktop-dirname
|
|
|
|
(progn
|
|
|
|
(load (concat desktop-dirname desktop-basefilename) t t t)
|
1994-02-05 02:23:44 +00:00
|
|
|
(run-hooks 'desktop-delay-hook)
|
1993-06-01 20:09:25 +00:00
|
|
|
(message "Desktop loaded."))
|
|
|
|
(desktop-clear))))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-load-default ()
|
1993-10-07 16:50:26 +00:00
|
|
|
"Load the `default' start-up library manually. Also inhibit further loading
|
1994-01-06 11:34:51 +00:00
|
|
|
of it. Call this from your `.emacs' file to provide correct modes for
|
1993-10-07 16:50:26 +00:00
|
|
|
autoloaded files."
|
|
|
|
(if (not inhibit-default-init) ; safety check
|
1993-06-01 20:09:25 +00:00
|
|
|
(progn
|
|
|
|
(load "default" t t)
|
|
|
|
(setq inhibit-default-init t))))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
|
|
|
;; Note: the following functions use the dynamic variable binding in Lisp.
|
|
|
|
;;
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-buffer-info () "Load an info file."
|
1994-01-06 11:34:51 +00:00
|
|
|
(if (eq 'Info-mode mam)
|
1993-06-01 20:09:25 +00:00
|
|
|
(progn
|
|
|
|
(require 'info)
|
|
|
|
(Info-find-node (nth 0 misc) (nth 1 misc))
|
|
|
|
t)))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-12-23 04:59:47 +00:00
|
|
|
(defun desktop-buffer-rmail () "Load an RMAIL file."
|
|
|
|
(if (eq 'rmail-mode mam)
|
1993-06-01 20:09:25 +00:00
|
|
|
(progn (rmail-input fn) t)))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1994-01-06 11:34:51 +00:00
|
|
|
(defun desktop-buffer-mh () "Load a folder in the mh system."
|
|
|
|
(if (eq 'mh-folder-mode mam)
|
|
|
|
(progn
|
|
|
|
(require 'mh-e)
|
|
|
|
(mh-find-path)
|
|
|
|
(mh-visit-folder bn)
|
|
|
|
t)))
|
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-buffer-dired () "Load a directory using dired."
|
1993-12-23 04:59:47 +00:00
|
|
|
(if (eq 'dired-mode mam)
|
1993-10-07 16:50:26 +00:00
|
|
|
(progn
|
|
|
|
(dired (car misc))
|
|
|
|
(mapcar (function dired-maybe-insert-subdir) (cdr misc))
|
|
|
|
t)))
|
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:09:25 +00:00
|
|
|
(defun desktop-buffer-file () "Load a file."
|
|
|
|
(if fn
|
|
|
|
(if (or (file-exists-p fn)
|
|
|
|
(and desktop-missing-file-warning
|
1993-10-07 16:50:26 +00:00
|
|
|
(y-or-n-p (format
|
|
|
|
"File \"%s\" no longer exists. Re-create? "
|
1993-06-01 20:09:25 +00:00
|
|
|
fn))))
|
|
|
|
(progn (find-file fn) t)
|
|
|
|
'ignored)))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
|
|
|
;; Create a buffer, load its file, set is mode, ...; called from Desktop file
|
1993-06-01 20:09:25 +00:00
|
|
|
;; only.
|
1994-01-06 11:34:51 +00:00
|
|
|
(defun desktop-create-buffer (ver fn bn mam mim pt mk ro misc &optional locals)
|
1993-06-01 20:09:25 +00:00
|
|
|
(let ((hlist desktop-buffer-handlers)
|
|
|
|
(result)
|
|
|
|
(handler))
|
|
|
|
(while (and (not result) hlist)
|
|
|
|
(setq handler (car hlist))
|
|
|
|
(setq result (funcall handler))
|
|
|
|
(setq hlist (cdr hlist)))
|
1993-12-23 04:59:47 +00:00
|
|
|
(if (eq result t)
|
1993-06-01 20:09:25 +00:00
|
|
|
(progn
|
|
|
|
(if (not (equal (buffer-name) bn))
|
|
|
|
(rename-buffer bn))
|
1994-01-06 11:34:51 +00:00
|
|
|
(auto-fill-mode (if (nth 0 mim) 1 0))
|
1993-06-01 20:09:25 +00:00
|
|
|
(goto-char pt)
|
1993-10-07 16:50:26 +00:00
|
|
|
(if (consp mk)
|
|
|
|
(progn
|
|
|
|
(set-mark (car mk))
|
|
|
|
(setq mark-active (car (cdr mk))))
|
|
|
|
(set-mark mk))
|
|
|
|
;; Never override file system if the file really is read-only marked.
|
|
|
|
(if ro (setq buffer-read-only ro))
|
1994-01-06 11:34:51 +00:00
|
|
|
(while locals
|
|
|
|
(let ((this (car locals)))
|
|
|
|
(if (consp this)
|
|
|
|
;; an entry of this form `(symbol . value)'
|
|
|
|
(progn
|
|
|
|
(make-local-variable (car this))
|
|
|
|
(set (car this) (cdr this)))
|
|
|
|
;; an entry of the form `symbol'
|
|
|
|
(make-local-variable this)
|
|
|
|
(makunbound this)))
|
|
|
|
(setq locals (cdr locals)))
|
1993-06-01 20:09:25 +00:00
|
|
|
))))
|
1994-01-06 11:34:51 +00:00
|
|
|
|
|
|
|
;; Backward compatibility -- update parameters to 205 standards.
|
|
|
|
(defun desktop-buffer (fn bn mam mim pt mk ro tl fc cfs cr misc)
|
|
|
|
(desktop-create-buffer 205 fn bn mam (cdr mim) pt mk ro misc
|
|
|
|
(list (cons 'truncate-lines tl)
|
|
|
|
(cons 'fill-column fc)
|
|
|
|
(cons 'case-fold-search cfs)
|
|
|
|
(cons 'case-replace cr)
|
|
|
|
(cons 'overwrite-mode (car mim)))))
|
1993-10-07 16:50:26 +00:00
|
|
|
;; ----------------------------------------------------------------------------
|
1993-06-01 20:11:54 +00:00
|
|
|
(provide 'desktop)
|
1993-06-01 20:09:25 +00:00
|
|
|
|
|
|
|
;; desktop.el ends here.
|