Mercurial > emacs
annotate lisp/resume.el @ 14931:0706926a11cb
(destroy_all_children): When freeing a cascade button, free its submenu too.
(make_menu_in_widget): Use a cascade button gadget, not a widget.
Include Xm/CascadeBG.h.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 03 Apr 1996 17:22:57 +0000 |
parents | 83f275dcd93a |
children | fec39a06882d |
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 | 3 ;; Copyright (C) 1992 Free Software Foundation, Inc. |
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 |
12244 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
14 ;; any later version. |
17 | 15 |
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 |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
17 | 25 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
26 ;;; Commentary: |
17 | 27 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
28 ;; 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
|
29 ;; 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
|
30 ;; 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
|
31 ;; 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
|
32 ;; 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
|
33 ;; them. |
82 | 34 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
35 ;; Stephan Gildea suggested bug fix (gildea@bbn.com). |
17 | 36 ;; Ideas from Michael DeCorte and other people. |
37 | |
38 ;; For csh users, insert the following alias in your .cshrc file | |
82 | 39 ;; (after removing the leading double semicolons, of course): |
17 | 40 ;; |
82 | 41 ;;# The following line could be just EMACS_CMD=emacs, but this depends on |
17 | 42 ;;# your site. |
82 | 43 ;;if (! $?EMACS_CMD) set EMACS_CMD=emacs |
44 ;;set JOBS_FILE=/tmp/jobs.$USER.$$ | |
45 ;;set ARGS_FILE=~/.emacs_args | |
46 ;;set STOP_PATT='^\[[0-9]*\] *[ +-] Stopped ............ ' | |
47 ;;set SUNVIEW_CMD='emacstool -nw -f emacstool-init -f server-start' | |
48 ;;set X_CMD=\'\''$EMACS_CMD -i -f server-start' | |
17 | 49 ;;alias emacs \ |
50 ;;' \\ | |
82 | 51 ;; jobs >! "$JOBS_FILE" \\ |
52 ;; && grep "$STOP_PATT$EMACS_CMD" "$JOBS_FILE" >& /dev/null \\ | |
53 ;; && echo `pwd` \!* >! "$ARGS_FILE" && ""fg %$EMACS_CMD \\ | |
54 ;;|| if (! -e ~/.emacs_server || -f ~/.emacs_server) set status=1 \\ | |
55 ;; && emacsclient \!* \\ | |
56 ;;|| @ status=1 - $?DISPLAY && eval "$X_CMD -i \!* &" \\ | |
57 ;;|| @ status=1 - $?WINDOW_PARENT && eval "$SUNVIEW_CMD \!* &" \\ | |
58 ;;|| ""$EMACS_CMD -nw \!* \\ | |
59 ;;' | |
17 | 60 ;; |
61 ;; The alias works as follows: | |
82 | 62 ;; 1. If there is a suspended Emacs job that is a child of the |
17 | 63 ;; current shell, place its arguments in the ~/.emacs_args file and |
64 ;; resume it. | |
65 ;; 2. Else if the ~/.emacs_server socket has been created, presume an | |
82 | 66 ;; Emacs server is running and attempt to connect to it. If no Emacs |
17 | 67 ;; server is listening on the socket, this will fail. |
68 ;; 3. Else if the DISPLAY environment variable is set, presume we are | |
82 | 69 ;; running under X Windows and start a new GNU Emacs process in the |
70 ;; background as an X client. | |
17 | 71 ;; 4. Else if the WINDOW_PARENT environment variable is set, presume we |
82 | 72 ;; are running under SunView and start an emacstool process in the |
73 ;; background. | |
74 ;; 5. Else start a regular Emacs process. | |
17 | 75 ;; |
76 ;; Notes: | |
77 ;; The output of the "jobs" command is not piped directly into "grep" | |
78 ;; because that would run the "jobs" command in a subshell. | |
79 ;; Before resuming a suspended emacs, the current directory and all | |
82 | 80 ;; command line arguments are placed in a file name ~/.emacs_args. |
81 ;; The "-nw" switch to Emacs means no windowing system. | |
17 | 82 |
82 | 83 ;; 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
|
84 ;;(add-hook 'suspend-hook 'resume-suspend-hook) |
82 | 85 |
86 ;; Finally, put the rest in a file named "resume.el" in a lisp library | |
87 ;; directory. | |
88 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
89 ;;; Code: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
90 |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
91 (defvar resume-emacs-args-file (expand-file-name "~/.emacs_args") |
17 | 92 "*This file is where arguments are placed for a suspended emacs job.") |
93 | |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
94 (defvar resume-emacs-args-buffer " *Command Line Args*" |
82 | 95 "Buffer that is used by resume-process-args.") |
17 | 96 |
97 (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
|
98 "Handler for command line args given when Emacs is resumed." |
82 | 99 (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
|
100 (args-buffer (get-buffer-create resume-emacs-args-buffer)) |
7385 | 101 length args |
102 (command-line-default-directory default-directory)) | |
17 | 103 (unwind-protect |
104 (progn | |
82 | 105 (set-buffer args-buffer) |
17 | 106 (erase-buffer) |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
107 ;; get the contents of resume-emacs-args-file |
17 | 108 (condition-case () |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
109 (let ((result (insert-file-contents resume-emacs-args-file))) |
82 | 110 (setq length (car (cdr result)))) |
111 ;; the file doesn't exist, ergo no arguments | |
112 (file-error | |
113 (erase-buffer) | |
114 (setq length 0))) | |
115 (if (<= length 0) | |
116 (setq args nil) | |
117 ;; get the arguments from the buffer | |
118 (goto-char (point-min)) | |
119 (while (not (eobp)) | |
120 (skip-chars-forward " \t\n") | |
121 (let ((begin (point))) | |
122 (skip-chars-forward "^ \t\n") | |
123 (setq args (cons (buffer-substring begin (point)) args))) | |
124 (skip-chars-forward " \t\n")) | |
125 ;; arguments are now in reverse order | |
126 (setq args (nreverse args)) | |
127 ;; make sure they're not read again | |
128 (erase-buffer)) | |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
129 (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file) |
82 | 130 ;; if nothing was in buffer, args will be null |
131 (or (null args) | |
7385 | 132 (setq command-line-default-directory |
133 (file-name-as-directory (car args)) | |
82 | 134 args (cdr args))) |
135 ;; actually process the arguments | |
136 (command-line-1 args)) | |
17 | 137 ;; If the command line args don't result in a find-file, the |
82 | 138 ;; buffer will be left in args-buffer. So we change back to the |
17 | 139 ;; original buffer. The reason I don't just use |
140 ;; (let ((default-directory foo)) | |
141 ;; (command-line-1 args)) | |
142 ;; in the context of the original buffer is because let does not | |
143 ;; work properly with buffer-local variables. | |
82 | 144 (if (eq (current-buffer) args-buffer) |
145 (set-buffer start-buffer))))) | |
146 | |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
147 ;;;###autoload |
2537
62b0d90a62e8
(resume-suspend-hook): Renamed from resume-empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2536
diff
changeset
|
148 (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
|
149 "Clear out the file used for transmitting args when Emacs resumes." |
82 | 150 (save-excursion |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
151 (set-buffer (get-buffer-create resume-emacs-args-buffer)) |
82 | 152 (erase-buffer) |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
153 (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file))) |
82 | 154 |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
155 (defun resume-write-buffer-to-file (buffer file) |
82 | 156 "Writes the contents of BUFFER into FILE, if permissions allow." |
157 (if (not (file-writable-p file)) | |
158 (error "No permission to write file %s" file)) | |
159 (save-excursion | |
160 (set-buffer buffer) | |
161 (clear-visited-file-modtime) | |
162 (save-restriction | |
163 (widen) | |
164 (write-region (point-min) (point-max) file nil 'quiet)) | |
165 (set-buffer-modified-p nil))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
244
diff
changeset
|
166 |
7385 | 167 (provide 'resume) |
168 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
244
diff
changeset
|
169 ;;; resume.el ends here |