Mercurial > emacs
annotate lisp/startup.el @ 739:0bb85f26b79c
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 04 Jul 1992 16:51:02 +0000 |
parents | e4253da532fb |
children | 4714ad36583c |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
1 ;;; startup.el --- process Emacs shell arguments |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
2 |
621 | 3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. |
322 | 4 |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
621 | 9 ;; the Free Software Foundation; either version 2, or (at your option) |
322 | 10 ;; any later version. |
11 | |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 | |
17 ;; You should have received a copy of the GNU General Public License | |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
21 | |
22 ; These are processed only at the beginning of the argument list. | |
23 ; -batch execute noninteractively (messages go to stdout, | |
24 ; variable noninteractive set to t) | |
25 ; This option must be the first in the arglist. | |
26 ; Processed by `main' in emacs.c -- never seen by lisp | |
27 ; -t file Specify to use file rather than stdin/stdout | |
28 ; as the terminal. | |
29 ; This option must be the first in the arglist. | |
30 ; Processed by `main' in emacs.c -- never seen by lisp | |
31 ; -nw Inhibit the use of any window-system-specific display | |
32 ; code; use the current virtual terminal. | |
33 ; This option must be the first in the arglist. | |
34 ; Processed by `main' in emacs.c -- never seen by lisp | |
35 ; -q load no init file | |
36 ; -no-init-file same | |
37 ; -u user load user's init file | |
38 ; -user user same | |
39 ; -debug-init Don't catch errors in init file; let debugger run. | |
40 | |
41 ; These are processed in the order encountered. | |
42 ; -f function execute function | |
43 ; -funcall function same | |
44 ; -l file load file | |
45 ; -load file same | |
46 ; -i file insert file into buffer | |
47 ; -insert file same | |
48 ; file visit file | |
49 ; -kill kill (exit) emacs | |
50 | |
51 (setq top-level '(normal-top-level)) | |
52 | |
53 (defvar command-line-processed nil "t once command line has been processed") | |
54 | |
55 (defconst inhibit-startup-message nil | |
56 "*Non-nil inhibits the initial startup messages. | |
57 This is for use in your personal init file, once you are familiar | |
58 with the contents of the startup message.") | |
59 | |
60 (defconst inhibit-default-init nil | |
61 "*Non-nil inhibits loading the `default' library.") | |
62 | |
63 (defconst command-switch-alist nil | |
64 "Alist of command-line switches. | |
65 Elements look like (SWITCH-STRING . HANDLER-FUNCTION). | |
66 HANDLER-FUNCTION receives switch name as sole arg; | |
67 remaining command-line args are in the variable `command-line-args-left'.") | |
68 | |
69 (defvar command-line-functions nil ;; lrs 7/31/89 | |
70 "List of functions to process unrecognized command-line arguments. | |
71 Each function should access the dynamically bound variables | |
72 argi (the current argument) and command-line-args-left (the remaining | |
73 arguments). The function should return non-nil only if it recognizes and | |
74 processes argi. If it does so, it may consume successive arguments by | |
75 altering command-line-args-left to remove them.") | |
76 | |
688 | 77 (defvar before-init-hook nil |
370 | 78 "Functions to call after handling urgent options but before loading init file. |
384 | 79 The screen system uses this to open screens to display messages while |
370 | 80 Emacs loads the user's initialization file.") |
81 | |
688 | 82 (defvar after-init-hook nil |
83 "Functions to call after loading the init file (~/.emacs). | |
84 The call is not protected by a condition-case, so you can set `debug-on-error' | |
85 in .emacs, and put all the actual code on `after-init-hook'.") | |
86 | |
322 | 87 (defvar term-setup-hook nil |
688 | 88 "Functions to be called after loading terminal-specific lisp code. |
89 See `run-hooks'. This variable exists for users to set, | |
322 | 90 so as to override the definitions made by the terminal-specific file. |
91 Emacs never sets this variable itself.") | |
92 | |
93 (defvar keyboard-type nil | |
94 "The brand of keyboard you are using. This variable is used to define | |
95 the proper function and keypad keys for use under X. It is used in a | |
96 fashion analogous to the environment value TERM.") | |
97 | |
98 (defvar window-setup-hook nil | |
370 | 99 "Function called to initialize window system display. |
100 Emacs calls this after processing the command line arguments and loading | |
101 the user's init file. | |
102 | |
322 | 103 Users should not set this variable; use term-setup-hook instead.") |
104 | |
105 (defconst initial-major-mode 'lisp-interaction-mode | |
106 "Major mode command symbol to use for the initial *scratch* buffer.") | |
107 | |
108 (defvar init-file-user nil | |
109 "Identity of user whose `.emacs' file is or was read. | |
110 The value may be the null string or a string containing a user's name. | |
111 If the value is a null string, it means that the init file was taken from | |
112 the user that originally logged in. | |
113 | |
114 In all cases, `(concat \"~\" init-file-user \"/\")' evaluates to the | |
115 directory name of the directory where the `.emacs' file was looked for.") | |
116 | |
117 (defvar init-file-debug nil) | |
118 | |
119 (defun normal-top-level () | |
120 (if command-line-processed | |
121 (message "Back to top level.") | |
122 (setq command-line-processed t) | |
123 ;; In presence of symlinks, switch to cleaner form of default directory. | |
648 | 124 (if (not (eq system-type 'vax-vms)) |
125 (mapcar (function | |
126 (lambda (var) | |
650 | 127 (let ((value (getenv var))) |
648 | 128 (if (and value |
129 (< (length value) (length default-directory)) | |
130 (equal (file-attributes default-directory) | |
131 (file-attributes value))) | |
132 (setq default-directory | |
133 (file-name-as-directory value)))))) | |
134 '("PWD" "HOME"))) | |
707 | 135 (setq default-directory (abbreviate-file-name default-directory)) |
322 | 136 (unwind-protect |
137 (command-line) | |
138 (run-hooks 'emacs-startup-hook) | |
139 (and term-setup-hook | |
140 (run-hooks 'term-setup-hook)) | |
141 (and window-setup-hook | |
142 (run-hooks 'window-setup-hook))))) | |
143 | |
144 (defun command-line () | |
145 ;; See if we should import version-control from the envionment variable. | |
146 (let ((vc (getenv "VERSION_CONTROL"))) | |
147 (cond ((eq vc nil)) ;don't do anything if not set | |
148 ((or (string= vc "t") | |
149 (string= vc "numbered")) | |
150 (setq version-control t)) | |
151 ((or (string= vc "nil") | |
152 (string= vc "existing")) | |
153 (setq version-control nil)) | |
154 ((or (string= vc "never") | |
155 (string= vc "simple")) | |
156 (setq version-control 'never)))) | |
157 | |
384 | 158 ;; Choose a good default value for split-window-keep-point. |
437 | 159 (setq split-window-keep-point (> baud-rate 2400)) |
384 | 160 |
322 | 161 ;; Read window system's init file if using a window system. |
162 (if (and window-system (not noninteractive)) | |
437 | 163 (load (concat term-file-prefix |
164 (symbol-name window-system) | |
165 "-win") | |
166 ;; Every window system should have a startup file; | |
167 ;; barf if we can't find it. | |
168 nil t)) | |
322 | 169 |
326 | 170 (let ((done nil) |
171 (args (cdr command-line-args))) | |
172 | |
322 | 173 ;; Figure out which user's init file to load, |
174 ;; either from the environment or from the options. | |
175 (setq init-file-user (if noninteractive nil (user-login-name))) | |
176 ;; If user has not done su, use current $HOME to find .emacs. | |
177 (and init-file-user (string= init-file-user (user-real-login-name)) | |
178 (setq init-file-user "")) | |
326 | 179 |
180 ;; Process the command-line args, and delete the arguments | |
181 ;; processed. This is consistent with the way main in emacs.c | |
182 ;; does things. | |
322 | 183 (while (and (not done) args) |
184 (let ((argi (car args))) | |
185 (cond | |
186 ((or (string-equal argi "-q") | |
187 (string-equal argi "-no-init-file")) | |
188 (setq init-file-user nil | |
189 args (cdr args))) | |
190 ((or (string-equal argi "-u") | |
191 (string-equal argi "-user")) | |
192 (setq args (cdr args) | |
193 init-file-user (car args) | |
194 args (cdr args))) | |
195 ((string-equal argi "-debug-init") | |
196 (setq init-file-debug t | |
197 args (cdr args))) | |
326 | 198 (t (setq done t))))) |
199 | |
200 ;; Re-attach the program name to the front of the arg list. | |
201 (setcdr command-line-args args)) | |
322 | 202 |
688 | 203 (run-hooks 'before-init-hook) |
370 | 204 |
322 | 205 ;; Load that user's init file, or the default one, or none. |
206 (let ((debug-on-error init-file-debug) | |
207 ;; This function actually reads the init files. | |
208 (inner | |
209 (function | |
210 (lambda () | |
211 (if init-file-user | |
212 (progn (load (if (eq system-type 'vax-vms) | |
213 "sys$login:.emacs" | |
214 (concat "~" init-file-user "/.emacs")) | |
215 t t t) | |
216 (or inhibit-default-init | |
217 (let ((inhibit-startup-message nil)) | |
218 ;; Users are supposed to be told their rights. | |
219 ;; (Plus how to get help and how to undo.) | |
220 ;; Don't you dare turn this off for anyone | |
221 ;; except yourself. | |
222 (load "default" t t))))))))) | |
223 (if init-file-debug | |
224 ;; Do this without a condition-case if the user wants to debug. | |
225 (funcall inner) | |
226 (condition-case error | |
227 (funcall inner) | |
228 (error (message "Error in init file: %s%s%s" | |
229 (get (car error) 'error-message) | |
230 (if (cdr error) ": ") | |
231 (mapconcat 'prin1-to-string (cdr error) ", ")))))) | |
370 | 232 |
688 | 233 (run-hooks 'after-init-hook) |
234 | |
322 | 235 ;; If *scratch* exists and init file didn't change its mode, initialize it. |
236 (if (get-buffer "*scratch*") | |
237 (save-excursion | |
238 (set-buffer "*scratch*") | |
239 (if (eq major-mode 'fundamental-mode) | |
240 (funcall initial-major-mode)))) | |
241 ;; Load library for our terminal type. | |
242 ;; User init file can set term-file-prefix to nil to prevent this. | |
243 (and term-file-prefix (not noninteractive) (not window-system) | |
244 (let ((term (getenv "TERM")) | |
245 hyphend) | |
246 (while (and term | |
247 (not (load (concat term-file-prefix term) t t))) | |
248 ;; Strip off last hyphen and what follows, then try again | |
249 (if (setq hyphend (string-match "[-_][^-_]+$" term)) | |
250 (setq term (substring term 0 hyphend)) | |
251 (setq term nil))))) | |
252 | |
326 | 253 ;; Process the remaining args. |
322 | 254 (command-line-1 (cdr command-line-args)) |
255 | |
256 ;; If -batch, terminate after processing the command options. | |
257 (if noninteractive (kill-emacs t))) | |
258 | |
259 (defun command-line-1 (command-line-args-left) | |
260 (if (null command-line-args-left) | |
261 (cond ((and (not inhibit-startup-message) (not noninteractive) | |
262 ;; Don't clobber a non-scratch buffer if init file | |
263 ;; has selected it. | |
264 (string= (buffer-name) "*scratch*") | |
265 (not (input-pending-p))) | |
266 ;; If there are no switches to process, we might as well | |
267 ;; run this hook now, and there may be some need to do it | |
268 ;; before doing any output. | |
269 (and term-setup-hook | |
270 (run-hooks 'term-setup-hook)) | |
271 ;; Don't let the hook be run twice. | |
272 (setq term-setup-hook nil) | |
273 (and window-setup-hook | |
274 (run-hooks 'window-setup-hook)) | |
275 (setq window-setup-hook nil) | |
276 (unwind-protect | |
277 (progn | |
278 (insert (emacs-version) | |
279 " | |
370 | 280 Copyright (C) 1991 Free Software Foundation, Inc.\n\n") |
322 | 281 ;; If keys have their default meanings, |
282 ;; use precomputed string to save lots of time. | |
283 (if (and (eq (key-binding "\C-h") 'help-command) | |
284 (eq (key-binding "\C-xu") 'advertised-undo) | |
285 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-emacs) | |
286 (eq (key-binding "\C-h\C-c") 'describe-copying) | |
287 (eq (key-binding "\C-h\C-d") 'describe-distribution) | |
288 (eq (key-binding "\C-h\C-w") 'describe-no-warranty) | |
289 (eq (key-binding "\C-ht") 'help-with-tutorial)) | |
290 (insert | |
291 "Type C-h for help; C-x u to undo changes. (`C-' means use CTRL key.) | |
292 To kill the Emacs job, type C-x C-c. | |
293 Type C-h t for a tutorial on using Emacs. | |
294 | |
295 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details. | |
296 You may give out copies of Emacs; type C-h C-c to see the conditions. | |
297 Type C-h C-d for information on getting the latest version.") | |
298 (insert (substitute-command-keys | |
299 "Type \\[help-command] for help; \\[advertised-undo] to undo changes. (`C-' means use CTRL key.) | |
300 To kill the Emacs job, type \\[save-buffers-kill-emacs]. | |
301 Type \\[help-with-tutorial] for a tutorial on using Emacs. | |
302 | |
303 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details. | |
304 You may give out copies of Emacs; type \\[describe-copying] to see the conditions. | |
305 Type \\[describe-distribution] for information on getting the latest version."))) | |
306 (set-buffer-modified-p nil) | |
307 (sit-for 120)) | |
308 (save-excursion | |
309 ;; In case the Emacs server has already selected | |
310 ;; another buffer, erase the one our message is in. | |
311 (set-buffer (get-buffer "*scratch*")) | |
312 (erase-buffer) | |
313 (set-buffer-modified-p nil))))) | |
314 (let ((dir default-directory) | |
315 (file-count 0) | |
316 first-file-buffer | |
317 (line 0)) | |
318 (while command-line-args-left | |
319 (let ((argi (car command-line-args-left)) | |
320 tem) | |
321 (setq command-line-args-left (cdr command-line-args-left)) | |
322 (cond ((setq tem (assoc argi command-switch-alist)) | |
323 (funcall (cdr tem) argi)) | |
324 ((or (string-equal argi "-f") ;what the manual claims | |
325 (string-equal argi "-funcall") | |
326 (string-equal argi "-e")) ; what the source used to say | |
327 (setq tem (intern (car command-line-args-left))) | |
328 (setq command-line-args-left (cdr command-line-args-left)) | |
329 (funcall tem)) | |
330 ((or (string-equal argi "-l") | |
331 (string-equal argi "-load")) | |
332 (let ((file (car command-line-args-left))) | |
333 ;; Take file from default dir if it exists there; | |
334 ;; otherwise let `load' search for it. | |
335 (if (file-exists-p (expand-file-name file)) | |
336 (setq file (expand-file-name file))) | |
337 (load file nil t)) | |
338 (setq command-line-args-left (cdr command-line-args-left))) | |
339 ((or (string-equal argi "-i") | |
340 (string-equal argi "-insert")) | |
341 (insert-file-contents (car command-line-args-left)) | |
342 (setq command-line-args-left (cdr command-line-args-left))) | |
343 ((string-equal argi "-kill") | |
344 (kill-emacs t)) | |
345 ((string-match "^\\+[0-9]+\\'" argi) | |
346 (setq line (string-to-int argi))) | |
347 (t | |
348 ;; We have almost exhausted our options. See if the | |
349 ;; user has made any other command-line options available | |
350 (let ((hooks command-line-functions);; lrs 7/31/89 | |
351 (did-hook nil)) | |
352 (while (and hooks | |
353 (not (setq did-hook (funcall (car hooks))))) | |
354 (setq hooks (cdr hooks))) | |
355 (if (not did-hook) | |
356 ;; Ok, presume that the argument is a file name | |
357 (progn | |
358 (setq file-count (1+ file-count)) | |
359 (cond ((= file-count 1) | |
360 (setq first-file-buffer | |
361 (find-file (expand-file-name argi dir)))) | |
362 (t | |
363 (find-file-other-window (expand-file-name argi dir)))) | |
364 (or (zerop line) | |
365 (goto-line line)) | |
366 (setq line 0)))))))) | |
367 ;; If 3 or more files visited, and not all visible, | |
368 ;; show user what they all are. | |
369 (if (> file-count 2) | |
370 (or (get-buffer-window first-file-buffer) | |
371 (progn (other-window) | |
372 (buffer-menu))))))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
373 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
374 ;;; startup.el ends here |