Mercurial > emacs
annotate lisp/resume.el @ 70241:07c1b5999e53
(url-open-stream): Don't hide errors.
(url-gateway-nslookup-host, url-open-telnet): Use with-current-buffer.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 26 Apr 2006 20:40:18 +0000 |
parents | 3bd95f4f2941 |
children | bc753f4d57ab c5406394f567 |
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 |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
3 ;; Copyright (C) 1992, 2002, 2003, 2004, 2005, |
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
4 ;; 2006 Free Software Foundation, Inc. |
845 | 5 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
6 ;; Author: Joe Wells <jbw@bucsf.bu.edu> |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
7 ;; Adapted-By: ESR |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
8 ;; Keywords: processes |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
9 |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
11 |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
12 ;; 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
|
13 ;; it under the terms of the GNU General Public License as published by |
12244 | 14 ;; 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
|
15 ;; any later version. |
17 | 16 |
17 ;; 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
|
18 ;; 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
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
20 ;; GNU General Public License for more details. |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
21 |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
17 | 26 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
27 ;;; Commentary: |
17 | 28 |
15120 | 29 ;; The purpose of this library is to handle command line arguments |
30 ;; when you resume an existing Emacs job. | |
31 | |
32 ;; In order to use it, you must put this code in your .emacs file. | |
33 | |
34 ;; (add-hook 'suspend-hook 'resume-suspend-hook) | |
35 ;; (add-hook 'suspend-resume-hook 'resume-process-args) | |
36 | |
37 ;; You can't get the benefit of this library by using the `emacs' command, | |
15121 | 38 ;; since that always starts a new Emacs job. Instead you must use a |
39 ;; command called `edit' which knows how to resume an existing Emacs job | |
40 ;; if you have one, or start a new Emacs job if you don't have one. | |
41 | |
42 ;; To define the `edit' command, run the script etc/emacs.csh (if you use CSH), | |
43 ;; or etc/emacs.bash if you use BASH. You would normally do this in your | |
44 ;; login script. | |
82 | 45 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
46 ;; Stephan Gildea suggested bug fix (gildea@bbn.com). |
17 | 47 ;; Ideas from Michael DeCorte and other people. |
48 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
49 ;;; Code: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
664
diff
changeset
|
50 |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
51 (defvar resume-emacs-args-file (expand-file-name "~/.emacs_args") |
17 | 52 "*This file is where arguments are placed for a suspended emacs job.") |
53 | |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
54 (defvar resume-emacs-args-buffer " *Command Line Args*" |
82 | 55 "Buffer that is used by resume-process-args.") |
17 | 56 |
57 (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
|
58 "Handler for command line args given when Emacs is resumed." |
82 | 59 (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
|
60 (args-buffer (get-buffer-create resume-emacs-args-buffer)) |
7385 | 61 length args |
62 (command-line-default-directory default-directory)) | |
17 | 63 (unwind-protect |
64 (progn | |
82 | 65 (set-buffer args-buffer) |
17 | 66 (erase-buffer) |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
67 ;; get the contents of resume-emacs-args-file |
17 | 68 (condition-case () |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
69 (let ((result (insert-file-contents resume-emacs-args-file))) |
82 | 70 (setq length (car (cdr result)))) |
71 ;; the file doesn't exist, ergo no arguments | |
72 (file-error | |
73 (erase-buffer) | |
74 (setq length 0))) | |
75 (if (<= length 0) | |
76 (setq args nil) | |
77 ;; get the arguments from the buffer | |
78 (goto-char (point-min)) | |
79 (while (not (eobp)) | |
80 (skip-chars-forward " \t\n") | |
81 (let ((begin (point))) | |
82 (skip-chars-forward "^ \t\n") | |
83 (setq args (cons (buffer-substring begin (point)) args))) | |
84 (skip-chars-forward " \t\n")) | |
85 ;; arguments are now in reverse order | |
86 (setq args (nreverse args)) | |
87 ;; make sure they're not read again | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
15121
diff
changeset
|
88 (erase-buffer)) |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
89 (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file) |
82 | 90 ;; if nothing was in buffer, args will be null |
91 (or (null args) | |
7385 | 92 (setq command-line-default-directory |
93 (file-name-as-directory (car args)) | |
82 | 94 args (cdr args))) |
95 ;; actually process the arguments | |
96 (command-line-1 args)) | |
17 | 97 ;; If the command line args don't result in a find-file, the |
82 | 98 ;; buffer will be left in args-buffer. So we change back to the |
17 | 99 ;; original buffer. The reason I don't just use |
100 ;; (let ((default-directory foo)) | |
101 ;; (command-line-1 args)) | |
102 ;; in the context of the original buffer is because let does not | |
103 ;; work properly with buffer-local variables. | |
82 | 104 (if (eq (current-buffer) args-buffer) |
105 (set-buffer start-buffer))))) | |
106 | |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
107 ;;;###autoload |
2537
62b0d90a62e8
(resume-suspend-hook): Renamed from resume-empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2536
diff
changeset
|
108 (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
|
109 "Clear out the file used for transmitting args when Emacs resumes." |
82 | 110 (save-excursion |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
111 (set-buffer (get-buffer-create resume-emacs-args-buffer)) |
82 | 112 (erase-buffer) |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
113 (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file))) |
82 | 114 |
2536
e8426c217792
(resume-empty-args-file): Renamed from empty-args-file.
Richard M. Stallman <rms@gnu.org>
parents:
2110
diff
changeset
|
115 (defun resume-write-buffer-to-file (buffer file) |
82 | 116 "Writes the contents of BUFFER into FILE, if permissions allow." |
117 (if (not (file-writable-p file)) | |
118 (error "No permission to write file %s" file)) | |
119 (save-excursion | |
120 (set-buffer buffer) | |
121 (clear-visited-file-modtime) | |
122 (save-restriction | |
123 (widen) | |
124 (write-region (point-min) (point-max) file nil 'quiet)) | |
125 (set-buffer-modified-p nil))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
244
diff
changeset
|
126 |
7385 | 127 (provide 'resume) |
128 | |
52401 | 129 ;;; arch-tag: c90b2761-4803-4e58-a0ae-c4721368b628 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
244
diff
changeset
|
130 ;;; resume.el ends here |