Mercurial > emacs
annotate lisp/resume.el @ 664:9b0e666dfdf8
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Sun, 31 May 1992 16:42:19 +0000 |
parents | 7cbd4fcd8b0f |
children | 80303373daae |
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 |
17 | 3 ;; Copyright (C) 1988 Free Software Foundation, Inc. |
4 | |
5 ;; GNU Emacs is distributed in the hope that it will be useful, | |
6 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
7 ;; accepts responsibility to anyone for the consequences of using it | |
8 ;; or for whether it serves any particular purpose or works at all, | |
9 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
10 ;; License for full details. | |
11 | |
12 ;; Everyone is granted permission to copy, modify and redistribute | |
13 ;; GNU Emacs, but only under the conditions described in the | |
14 ;; GNU Emacs General Public License. A copy of this license is | |
15 ;; supposed to have been given to you along with GNU Emacs so you | |
16 ;; can know your rights and responsibilities. It should be in a | |
17 ;; file named COPYING. Among other things, the copyright notice | |
18 ;; and this notice must be preserved on all copies. | |
19 | |
82 | 20 ;; Created by: Joe Wells, jbw@bucsf.bu.edu |
21 ;; Created on: 1988? | |
22 ;; Last modified by: Joe Wells, jbw@dodge | |
23 ;; Last modified on: Thu Jun 14 15:20:41 1990 | |
24 ;; Filename: resume.el | |
25 ;; Purpose: handle command line arguments when resuming suspended job | |
26 | |
27 ;; Stephen Gildea suggested bug fix (gildea@bbn.com). | |
17 | 28 ;; Ideas from Michael DeCorte and other people. |
29 | |
30 ;; For csh users, insert the following alias in your .cshrc file | |
82 | 31 ;; (after removing the leading double semicolons, of course): |
17 | 32 ;; |
82 | 33 ;;# The following line could be just EMACS_CMD=emacs, but this depends on |
17 | 34 ;;# your site. |
82 | 35 ;;if (! $?EMACS_CMD) set EMACS_CMD=emacs |
36 ;;set JOBS_FILE=/tmp/jobs.$USER.$$ | |
37 ;;set ARGS_FILE=~/.emacs_args | |
38 ;;set STOP_PATT='^\[[0-9]*\] *[ +-] Stopped ............ ' | |
39 ;;set SUNVIEW_CMD='emacstool -nw -f emacstool-init -f server-start' | |
40 ;;set X_CMD=\'\''$EMACS_CMD -i -f server-start' | |
17 | 41 ;;alias emacs \ |
42 ;;' \\ | |
82 | 43 ;; jobs >! "$JOBS_FILE" \\ |
44 ;; && grep "$STOP_PATT$EMACS_CMD" "$JOBS_FILE" >& /dev/null \\ | |
45 ;; && echo `pwd` \!* >! "$ARGS_FILE" && ""fg %$EMACS_CMD \\ | |
46 ;;|| if (! -e ~/.emacs_server || -f ~/.emacs_server) set status=1 \\ | |
47 ;; && emacsclient \!* \\ | |
48 ;;|| @ status=1 - $?DISPLAY && eval "$X_CMD -i \!* &" \\ | |
49 ;;|| @ status=1 - $?WINDOW_PARENT && eval "$SUNVIEW_CMD \!* &" \\ | |
50 ;;|| ""$EMACS_CMD -nw \!* \\ | |
51 ;;' | |
17 | 52 ;; |
53 ;; The alias works as follows: | |
82 | 54 ;; 1. If there is a suspended Emacs job that is a child of the |
17 | 55 ;; current shell, place its arguments in the ~/.emacs_args file and |
56 ;; resume it. | |
57 ;; 2. Else if the ~/.emacs_server socket has been created, presume an | |
82 | 58 ;; Emacs server is running and attempt to connect to it. If no Emacs |
17 | 59 ;; server is listening on the socket, this will fail. |
60 ;; 3. Else if the DISPLAY environment variable is set, presume we are | |
82 | 61 ;; running under X Windows and start a new GNU Emacs process in the |
62 ;; background as an X client. | |
17 | 63 ;; 4. Else if the WINDOW_PARENT environment variable is set, presume we |
82 | 64 ;; are running under SunView and start an emacstool process in the |
65 ;; background. | |
66 ;; 5. Else start a regular Emacs process. | |
17 | 67 ;; |
68 ;; Notes: | |
69 ;; The output of the "jobs" command is not piped directly into "grep" | |
70 ;; because that would run the "jobs" command in a subshell. | |
71 ;; Before resuming a suspended emacs, the current directory and all | |
82 | 72 ;; command line arguments are placed in a file name ~/.emacs_args. |
73 ;; The "-nw" switch to Emacs means no windowing system. | |
17 | 74 |
82 | 75 ;; Insert this in your .emacs file: |
76 ;;(setq suspend-resume-hook 'resume-process-args) | |
77 ;;(setq suspend-hook 'empty-args-file) | |
78 ;;(autoload 'empty-args-file "resume") | |
79 ;;(autoload 'resume-process-args "resume") | |
80 | |
81 ;; Finally, put the rest in a file named "resume.el" in a lisp library | |
82 ;; directory. | |
83 | |
84 (defvar emacs-args-file (expand-file-name "~/.emacs_args") | |
17 | 85 "*This file is where arguments are placed for a suspended emacs job.") |
86 | |
82 | 87 (defvar emacs-args-buffer " *Command Line Args*" |
88 "Buffer that is used by resume-process-args.") | |
17 | 89 |
90 (defun resume-process-args () | |
244 | 91 "This should be called from inside of `suspend-resume-hook'. |
92 This grabs the contents of the file whose name is stored in `emacs-args-file', | |
93 and processes these arguments like command line options." | |
82 | 94 (let ((start-buffer (current-buffer)) |
95 (args-buffer (get-buffer-create emacs-args-buffer)) | |
96 length args) | |
17 | 97 (unwind-protect |
98 (progn | |
82 | 99 (set-buffer args-buffer) |
17 | 100 (erase-buffer) |
82 | 101 ;; get the contents of emacs-args-file |
17 | 102 (condition-case () |
82 | 103 (let ((result (insert-file-contents emacs-args-file))) |
104 (setq length (car (cdr result)))) | |
105 ;; the file doesn't exist, ergo no arguments | |
106 (file-error | |
107 (erase-buffer) | |
108 (setq length 0))) | |
109 (if (<= length 0) | |
110 (setq args nil) | |
111 ;; get the arguments from the buffer | |
112 (goto-char (point-min)) | |
113 (while (not (eobp)) | |
114 (skip-chars-forward " \t\n") | |
115 (let ((begin (point))) | |
116 (skip-chars-forward "^ \t\n") | |
117 (setq args (cons (buffer-substring begin (point)) args))) | |
118 (skip-chars-forward " \t\n")) | |
119 ;; arguments are now in reverse order | |
120 (setq args (nreverse args)) | |
121 ;; make sure they're not read again | |
122 (erase-buffer)) | |
123 (write-buffer-to-file (current-buffer) emacs-args-file) | |
124 ;; if nothing was in buffer, args will be null | |
125 (or (null args) | |
126 (setq default-directory (file-name-as-directory (car args)) | |
127 args (cdr args))) | |
128 ;; actually process the arguments | |
129 (command-line-1 args)) | |
17 | 130 ;; If the command line args don't result in a find-file, the |
82 | 131 ;; buffer will be left in args-buffer. So we change back to the |
17 | 132 ;; original buffer. The reason I don't just use |
133 ;; (let ((default-directory foo)) | |
134 ;; (command-line-1 args)) | |
135 ;; in the context of the original buffer is because let does not | |
136 ;; work properly with buffer-local variables. | |
82 | 137 (if (eq (current-buffer) args-buffer) |
138 (set-buffer start-buffer))))) | |
139 | |
140 (defun empty-args-file () | |
141 "This empties the contents of the file whose name is specified by | |
244 | 142 `emacs-args-file'." |
82 | 143 (save-excursion |
144 (set-buffer (get-buffer-create emacs-args-buffer)) | |
145 (erase-buffer) | |
146 (write-buffer-to-file (current-buffer) emacs-args-file))) | |
147 | |
148 (defun write-buffer-to-file (buffer file) | |
149 "Writes the contents of BUFFER into FILE, if permissions allow." | |
150 (if (not (file-writable-p file)) | |
151 (error "No permission to write file %s" file)) | |
152 (save-excursion | |
153 (set-buffer buffer) | |
154 (clear-visited-file-modtime) | |
155 (save-restriction | |
156 (widen) | |
157 (write-region (point-min) (point-max) file nil 'quiet)) | |
158 (set-buffer-modified-p nil))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
244
diff
changeset
|
159 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
244
diff
changeset
|
160 ;;; resume.el ends here |