annotate lisp/resume.el @ 7385:ad1c04ef7695

Provide 'resume. (resume-process-args): Bind `command-line-default-directory' for command-line-1.
author Karl Heuer <kwzh@gnu.org>
date Sat, 07 May 1994 02:09:00 +0000
parents 62b0d90a62e8
children ac7375e60931
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 244
diff changeset
1 ;;; resume.el --- process command line args from within a suspended Emacs job
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 244
diff changeset
2
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 814
diff changeset
3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 814
diff changeset
4
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
5 ;; Author: Joe Wells <jbw@bucsf.bu.edu>
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
6 ;; Adapted-By: ESR
814
38b2499cb3e9 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 810
diff changeset
7 ;; Keywords: processes
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
8
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
9 ;; This file is part of GNU Emacs.
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
10
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
13 ;; the Free Software Foundation; either version 1, or (at your option)
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
14 ;; any later version.
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
19 ;; GNU General Public License for more details.
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
20
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
21 ;; You should have received a copy of the GNU General Public License
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
25 ;;; Commentary:
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
27 ;; Theory: the first time you start Emacs, command line arguments are
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
28 ;; handled normally. Then, you suspend your emacs job. When you want to edit
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
29 ;; something else, you type "emacs filename" as usual, but instead of
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
30 ;; starting a new emacs job, the old job is resumed instead, and the command
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
31 ;; line arguments are placed in a file where the old emacs job looks for
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
32 ;; them.
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
33
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
34 ;; Stephan Gildea suggested bug fix (gildea@bbn.com).
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 ;; Ideas from Michael DeCorte and other people.
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ;; For csh users, insert the following alias in your .cshrc file
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
38 ;; (after removing the leading double semicolons, of course):
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 ;;
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
40 ;;# The following line could be just EMACS_CMD=emacs, but this depends on
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 ;;# your site.
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
42 ;;if (! $?EMACS_CMD) set EMACS_CMD=emacs
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
43 ;;set JOBS_FILE=/tmp/jobs.$USER.$$
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
44 ;;set ARGS_FILE=~/.emacs_args
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
45 ;;set STOP_PATT='^\[[0-9]*\] *[ +-] Stopped ............ '
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
46 ;;set SUNVIEW_CMD='emacstool -nw -f emacstool-init -f server-start'
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
47 ;;set X_CMD=\'\''$EMACS_CMD -i -f server-start'
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 ;;alias emacs \
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 ;;' \\
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
50 ;; jobs >! "$JOBS_FILE" \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
51 ;; && grep "$STOP_PATT$EMACS_CMD" "$JOBS_FILE" >& /dev/null \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
52 ;; && echo `pwd` \!* >! "$ARGS_FILE" && ""fg %$EMACS_CMD \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
53 ;;|| if (! -e ~/.emacs_server || -f ~/.emacs_server) set status=1 \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
54 ;; && emacsclient \!* \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
55 ;;|| @ status=1 - $?DISPLAY && eval "$X_CMD -i \!* &" \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
56 ;;|| @ status=1 - $?WINDOW_PARENT && eval "$SUNVIEW_CMD \!* &" \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
57 ;;|| ""$EMACS_CMD -nw \!* \\
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
58 ;;'
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 ;;
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 ;; The alias works as follows:
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
61 ;; 1. If there is a suspended Emacs job that is a child of the
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 ;; current shell, place its arguments in the ~/.emacs_args file and
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 ;; resume it.
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 ;; 2. Else if the ~/.emacs_server socket has been created, presume an
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
65 ;; Emacs server is running and attempt to connect to it. If no Emacs
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 ;; server is listening on the socket, this will fail.
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 ;; 3. Else if the DISPLAY environment variable is set, presume we are
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
68 ;; running under X Windows and start a new GNU Emacs process in the
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
69 ;; background as an X client.
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 ;; 4. Else if the WINDOW_PARENT environment variable is set, presume we
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
71 ;; are running under SunView and start an emacstool process in the
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
72 ;; background.
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
73 ;; 5. Else start a regular Emacs process.
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 ;;
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 ;; Notes:
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76 ;; The output of the "jobs" command is not piped directly into "grep"
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 ;; because that would run the "jobs" command in a subshell.
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 ;; Before resuming a suspended emacs, the current directory and all
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
79 ;; command line arguments are placed in a file name ~/.emacs_args.
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
80 ;; The "-nw" switch to Emacs means no windowing system.
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
82 ;; Insert this in your .emacs file:
2537
62b0d90a62e8 (resume-suspend-hook): Renamed from resume-empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2536
diff changeset
83 ;;(add-hook 'suspend-hook 'resume-suspend-hook)
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
84
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
85 ;; Finally, put the rest in a file named "resume.el" in a lisp library
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
86 ;; directory.
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
87
810
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
88 ;;; Code:
80303373daae *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 664
diff changeset
89
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
90 (defvar resume-emacs-args-file (expand-file-name "~/.emacs_args")
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 "*This file is where arguments are placed for a suspended emacs job.")
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
93 (defvar resume-emacs-args-buffer " *Command Line Args*"
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
94 "Buffer that is used by resume-process-args.")
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 (defun resume-process-args ()
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
97 "Handler for command line args given when Emacs is resumed."
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
98 (let ((start-buffer (current-buffer))
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
99 (args-buffer (get-buffer-create resume-emacs-args-buffer))
7385
ad1c04ef7695 Provide 'resume.
Karl Heuer <kwzh@gnu.org>
parents: 2537
diff changeset
100 length args
ad1c04ef7695 Provide 'resume.
Karl Heuer <kwzh@gnu.org>
parents: 2537
diff changeset
101 (command-line-default-directory default-directory))
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 (unwind-protect
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 (progn
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
104 (set-buffer args-buffer)
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 (erase-buffer)
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
106 ;; get the contents of resume-emacs-args-file
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 (condition-case ()
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
108 (let ((result (insert-file-contents resume-emacs-args-file)))
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
109 (setq length (car (cdr result))))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
110 ;; the file doesn't exist, ergo no arguments
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
111 (file-error
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
112 (erase-buffer)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
113 (setq length 0)))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
114 (if (<= length 0)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
115 (setq args nil)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
116 ;; get the arguments from the buffer
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
117 (goto-char (point-min))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
118 (while (not (eobp))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
119 (skip-chars-forward " \t\n")
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
120 (let ((begin (point)))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
121 (skip-chars-forward "^ \t\n")
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
122 (setq args (cons (buffer-substring begin (point)) args)))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
123 (skip-chars-forward " \t\n"))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
124 ;; arguments are now in reverse order
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
125 (setq args (nreverse args))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
126 ;; make sure they're not read again
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
127 (erase-buffer))
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
128 (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file)
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
129 ;; if nothing was in buffer, args will be null
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
130 (or (null args)
7385
ad1c04ef7695 Provide 'resume.
Karl Heuer <kwzh@gnu.org>
parents: 2537
diff changeset
131 (setq command-line-default-directory
ad1c04ef7695 Provide 'resume.
Karl Heuer <kwzh@gnu.org>
parents: 2537
diff changeset
132 (file-name-as-directory (car args))
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
133 args (cdr args)))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
134 ;; actually process the arguments
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
135 (command-line-1 args))
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 ;; If the command line args don't result in a find-file, the
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
137 ;; buffer will be left in args-buffer. So we change back to the
17
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 ;; original buffer. The reason I don't just use
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 ;; (let ((default-directory foo))
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 ;; (command-line-1 args))
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 ;; in the context of the original buffer is because let does not
1e1bc0842996 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 ;; work properly with buffer-local variables.
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
143 (if (eq (current-buffer) args-buffer)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
144 (set-buffer start-buffer)))))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
145
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
146 ;;;###autoload
2537
62b0d90a62e8 (resume-suspend-hook): Renamed from resume-empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2536
diff changeset
147 (defun resume-suspend-hook ()
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
148 "Clear out the file used for transmitting args when Emacs resumes."
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
149 (save-excursion
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
150 (set-buffer (get-buffer-create resume-emacs-args-buffer))
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
151 (erase-buffer)
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
152 (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file)))
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
153
2536
e8426c217792 (resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents: 2110
diff changeset
154 (defun resume-write-buffer-to-file (buffer file)
82
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
155 "Writes the contents of BUFFER into FILE, if permissions allow."
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
156 (if (not (file-writable-p file))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
157 (error "No permission to write file %s" file))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
158 (save-excursion
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
159 (set-buffer buffer)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
160 (clear-visited-file-modtime)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
161 (save-restriction
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
162 (widen)
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
163 (write-region (point-min) (point-max) file nil 'quiet))
0bc7e3b14f85 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 17
diff changeset
164 (set-buffer-modified-p nil)))
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 244
diff changeset
165
7385
ad1c04ef7695 Provide 'resume.
Karl Heuer <kwzh@gnu.org>
parents: 2537
diff changeset
166 (provide 'resume)
ad1c04ef7695 Provide 'resume.
Karl Heuer <kwzh@gnu.org>
parents: 2537
diff changeset
167
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 244
diff changeset
168 ;;; resume.el ends here