(PURESIZE): Increase non-MULTI_FRAME value.
[bpt/emacs.git] / lisp / startup.el
CommitLineData
c88ab9ce
ER
1;;; startup.el --- process Emacs shell arguments
2
1d7da582 3;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
eea8d4ef 4
630cc463 5;; Maintainer: FSF
d7b4d18f 6;; Keywords: internal
630cc463 7
a726e0d1
JB
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
4746118a 12;; the Free Software Foundation; either version 2, or (at your option)
a726e0d1
JB
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
630cc463 24;;; Commentary:
a726e0d1
JB
25
26; These are processed only at the beginning of the argument list.
27; -batch execute noninteractively (messages go to stdout,
28; variable noninteractive set to t)
29; This option must be the first in the arglist.
30; Processed by `main' in emacs.c -- never seen by lisp
31; -t file Specify to use file rather than stdin/stdout
32; as the terminal.
33; This option must be the first in the arglist.
34; Processed by `main' in emacs.c -- never seen by lisp
35; -nw Inhibit the use of any window-system-specific display
36; code; use the current virtual terminal.
37; This option must be the first in the arglist.
38; Processed by `main' in emacs.c -- never seen by lisp
39; -q load no init file
40; -no-init-file same
41; -u user load user's init file
42; -user user same
43; -debug-init Don't catch errors in init file; let debugger run.
44
45; These are processed in the order encountered.
46; -f function execute function
47; -funcall function same
48; -l file load file
49; -load file same
a726e0d1
JB
50; -insert file same
51; file visit file
52; -kill kill (exit) emacs
53
630cc463
ER
54;;; Code:
55
a726e0d1
JB
56(setq top-level '(normal-top-level))
57
58(defvar command-line-processed nil "t once command line has been processed")
59
60(defconst inhibit-startup-message nil
1d7da582 61 "*Non-nil inhibits the initial startup message.
a726e0d1
JB
62This is for use in your personal init file, once you are familiar
63with the contents of the startup message.")
64
1d7da582
RS
65(defconst inhibit-startup-echo-area-message nil
66 "*Non-nil inhibits the initial startup echo area message.
67Inhibition takes effect only if your `.emacs' file contains
e5575c06 68a line of this form:
54a003f7 69 (setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\")
e5575c06
RS
70If your `.emacs' file is byte-compiled, use the following form instead:
71 (eval '(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\"))
1d7da582
RS
72Thus, someone else using a copy of your `.emacs' file will see
73the startup message unless he personally acts to inhibit it.")
74
a726e0d1
JB
75(defconst inhibit-default-init nil
76 "*Non-nil inhibits loading the `default' library.")
77
78(defconst command-switch-alist nil
79 "Alist of command-line switches.
80Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
81HANDLER-FUNCTION receives switch name as sole arg;
82remaining command-line args are in the variable `command-line-args-left'.")
83
84(defvar command-line-functions nil ;; lrs 7/31/89
85 "List of functions to process unrecognized command-line arguments.
86Each function should access the dynamically bound variables
b4484ea8 87`argi' (the current argument) and `command-line-args-left' (the remaining
a726e0d1 88arguments). The function should return non-nil only if it recognizes and
b4484ea8
RS
89processes `argi'. If it does so, it may consume successive arguments by
90altering `command-line-args-left' to remove them.")
a726e0d1 91
09a1077c
RS
92(defvar command-line-default-directory nil
93 "Default directory to use for command line arguments.
94This is normally copied from `default-directory' when Emacs starts.")
95
e3bd99f5 96(defvar before-init-hook nil
b4484ea8 97 "Functions to call after handling urgent options but before init files.
0cc89026 98The frame system uses this to open frames to display messages while
3fc958a4
JB
99Emacs loads the user's initialization file.")
100
e3bd99f5 101(defvar after-init-hook nil
a0965605 102 "Functions to call after loading the init file (`~/.emacs').
e3bd99f5 103The call is not protected by a condition-case, so you can set `debug-on-error'
a0965605 104in `.emacs', and put all the actual code on `after-init-hook'.")
e3bd99f5 105
a726e0d1 106(defvar term-setup-hook nil
b4484ea8 107 "Functions to be called after loading terminal-specific Lisp code.
e3bd99f5 108See `run-hooks'. This variable exists for users to set,
a726e0d1
JB
109so as to override the definitions made by the terminal-specific file.
110Emacs never sets this variable itself.")
111
112(defvar keyboard-type nil
b4484ea8
RS
113 "The brand of keyboard you are using.
114This variable is used to define
a726e0d1
JB
115the proper function and keypad keys for use under X. It is used in a
116fashion analogous to the environment value TERM.")
117
118(defvar window-setup-hook nil
b4484ea8
RS
119 "Normal hook run to initialize window system display.
120Emacs runs this hook after processing the command line arguments and loading
121the user's init file.")
a726e0d1
JB
122
123(defconst initial-major-mode 'lisp-interaction-mode
124 "Major mode command symbol to use for the initial *scratch* buffer.")
125
126(defvar init-file-user nil
127 "Identity of user whose `.emacs' file is or was read.
2bdfaa42
KH
128The value is nil if no init file is being used; otherwise, it may be either
129the null string, meaning that the init file was taken from the user that
130originally logged in, or it may be a string containing a user's name.
a726e0d1 131
2bdfaa42
KH
132In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
133evaluates to the name of the directory where the `.emacs' file was
134looked for.")
a726e0d1 135
b7444d31
RS
136(defvar site-run-file "site-start"
137 "File containing site-wide run-time initializations.
138This file is loaded at run-time before `~/.emacs'. It contains inits
139that need to be in place for the entire site, but which, due to their
140higher incidence of change, don't make sense to load into emacs'
141dumped image. Thus, the run-time load order is: 1. file described in
142this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
143
30dc01ea
RS
144(defconst iso-8859-1-locale-regexp "8859[-_]?1"
145 "Regexp that specifies when to enable the ISO 8859-1 character set.
146We do that if this regexp matches the locale name
147specified by the LC_ALL, LC_CTYPE and LANG environment variables.")
148
c10d1f06
RS
149(defvar user-mail-address nil
150 "Full mailing address of this user.")
151
a726e0d1
JB
152(defvar init-file-debug nil)
153
52320897
RS
154(defvar init-file-had-error nil)
155
a726e0d1
JB
156(defun normal-top-level ()
157 (if command-line-processed
158 (message "Back to top level.")
159 (setq command-line-processed t)
ffd56f97 160 (if (not (eq system-type 'vax-vms))
a4b33896
JB
161 (progn
162 ;; If the PWD environment variable isn't accurate, delete it.
163 (let ((pwd (getenv "PWD")))
164 (and (stringp pwd)
165 ;; Use FOO/., so that if FOO is a symlink, file-attributes
166 ;; describes the directory linked to, not FOO itself.
167 (or (equal (file-attributes
168 (concat (file-name-as-directory pwd) "."))
169 (file-attributes
170 (concat (file-name-as-directory default-directory)
171 ".")))
172 (setq process-environment
173 (delete (concat "PWD=" pwd)
174 process-environment)))))))
492878e4 175 (setq default-directory (abbreviate-file-name default-directory))
c10d1f06 176 (setq user-mail-address (concat (user-login-name) "@" (system-name)))
6f2c86fa
KH
177 (let ((menubar-bindings-done nil))
178 (unwind-protect
179 (command-line)
180 ;; Do this again, in case .emacs defined more abbreviations.
181 (setq default-directory (abbreviate-file-name default-directory))
182 (run-hooks 'emacs-startup-hook)
183 (and term-setup-hook
184 (run-hooks 'term-setup-hook))
185 ;; Modify the initial frame based on what .emacs puts into
186 ;; ...-frame-alist.
187 (if (fboundp 'frame-notice-user-settings)
188 (frame-notice-user-settings))
189 ;; Now we know the user's default font, so add it to the menu.
190 (if (fboundp 'font-menu-add-default)
191 (font-menu-add-default))
192 (and window-setup-hook
193 (run-hooks 'window-setup-hook))
194 (or menubar-bindings-done
195 (precompute-menubar-bindings))))))
196
197;; Precompute the keyboard equivalents in the menu bar items.
198(defun precompute-menubar-bindings ()
42a49b29 199 (if (eq window-system 'x)
6f2c86fa
KH
200 (let ((submap (lookup-key global-map [menu-bar])))
201 (while submap
202 (and (consp (car submap))
203 (symbolp (car (car submap)))
204 (stringp (car-safe (cdr (car submap))))
205 (keymapp (cdr (cdr (car submap))))
206 (x-popup-menu nil (cdr (cdr (car submap)))))
207 (setq submap (cdr submap))))))
a726e0d1
JB
208
209(defun command-line ()
09a1077c
RS
210 (setq command-line-default-directory default-directory)
211
74f2ab06 212 ;; See if we should import version-control from the environment variable.
a726e0d1
JB
213 (let ((vc (getenv "VERSION_CONTROL")))
214 (cond ((eq vc nil)) ;don't do anything if not set
215 ((or (string= vc "t")
216 (string= vc "numbered"))
217 (setq version-control t))
218 ((or (string= vc "nil")
219 (string= vc "existing"))
220 (setq version-control nil))
221 ((or (string= vc "never")
222 (string= vc "simple"))
223 (setq version-control 'never))))
224
30dc01ea
RS
225 (if (let ((ctype
226 ;; Use the first of these three envvars that has a nonempty value.
227 (or (let ((string (getenv "LC_ALL")))
228 (and (not (equal string "")) string))
229 (let ((string (getenv "LC_CTYPE")))
230 (and (not (equal string "")) string))
231 (let ((string (getenv "LANG")))
232 (and (not (equal string "")) string)))))
233 (and ctype
234 (string-match iso-8859-1-locale-regexp ctype)))
e9d8e8c7
RS
235 (progn
236 (standard-display-european t)
237 (require 'iso-syntax)))
238
79058860
JB
239 ;;! This has been commented out; I currently find the behavior when
240 ;;! split-window-keep-point is nil disturbing, but if I can get used
241 ;;! to it, then it would be better to eliminate the option.
242 ;;! ;; Choose a good default value for split-window-keep-point.
243 ;;! (setq split-window-keep-point (> baud-rate 2400))
f35fe3c6 244
a726e0d1
JB
245 ;; Read window system's init file if using a window system.
246 (if (and window-system (not noninteractive))
c35f9044
JB
247 (load (concat term-file-prefix
248 (symbol-name window-system)
249 "-win")
250 ;; Every window system should have a startup file;
251 ;; barf if we can't find it.
252 nil t))
a726e0d1 253
03e3c30a
JB
254 (let ((done nil)
255 (args (cdr command-line-args)))
256
a726e0d1
JB
257 ;; Figure out which user's init file to load,
258 ;; either from the environment or from the options.
259 (setq init-file-user (if noninteractive nil (user-login-name)))
260 ;; If user has not done su, use current $HOME to find .emacs.
261 (and init-file-user (string= init-file-user (user-real-login-name))
262 (setq init-file-user ""))
03e3c30a
JB
263
264 ;; Process the command-line args, and delete the arguments
265 ;; processed. This is consistent with the way main in emacs.c
266 ;; does things.
a726e0d1
JB
267 (while (and (not done) args)
268 (let ((argi (car args)))
269 (cond
270 ((or (string-equal argi "-q")
271 (string-equal argi "-no-init-file"))
272 (setq init-file-user nil
273 args (cdr args)))
274 ((or (string-equal argi "-u")
275 (string-equal argi "-user"))
276 (setq args (cdr args)
277 init-file-user (car args)
278 args (cdr args)))
b7444d31
RS
279 ((string-equal argi "-no-site-file")
280 (setq site-run-file nil
281 args (cdr args)))
a726e0d1
JB
282 ((string-equal argi "-debug-init")
283 (setq init-file-debug t
284 args (cdr args)))
03e3c30a
JB
285 (t (setq done t)))))
286
287 ;; Re-attach the program name to the front of the arg list.
288 (setcdr command-line-args args))
a726e0d1 289
c722566c 290 ;; Under X Windows, this creates the X frame and deletes the terminal frame.
4e1b1e72
JB
291 (if (fboundp 'face-initialize)
292 (face-initialize))
853ccbd5
RS
293 (if (fboundp 'frame-initialize)
294 (frame-initialize))
c722566c 295
e3bd99f5 296 (run-hooks 'before-init-hook)
3fc958a4 297
09973c54
RM
298 ;; Run the site-start library if it exists. The point of this file is
299 ;; that it is run before .emacs. There is no point in doing this after
300 ;; .emacs; that is useless.
b7444d31
RS
301 (if site-run-file
302 (load site-run-file t t))
09973c54 303
8a988f45
RS
304 ;; Sites should not disable this. Only individuals should disable
305 ;; the startup message.
306 (setq inhibit-startup-message nil)
307
a726e0d1 308 ;; Load that user's init file, or the default one, or none.
3d1b78f0
RS
309 (let (debug-on-error-from-init-file
310 debug-on-error-should-be-set
311 (debug-on-error-initial
312 (if (eq init-file-debug t) 'startup init-file-debug)))
313 (let ((debug-on-error debug-on-error-initial)
314 ;; This function actually reads the init files.
315 (inner
316 (function
317 (lambda ()
318 (if init-file-user
a4c5c705
RS
319 (progn
320 (setq user-init-file
321 (cond
322 ((eq system-type 'ms-dos)
323 (concat "~" init-file-user "/_emacs"))
324 ((eq system-type 'vax-vms)
325 "sys$login:.emacs")
326 (t
327 (concat "~" init-file-user "/.emacs"))))
328 (load user-init-file t t t)
329 (or inhibit-default-init
330 (let ((inhibit-startup-message nil))
331 ;; Users are supposed to be told their rights.
332 ;; (Plus how to get help and how to undo.)
333 ;; Don't you dare turn this off for anyone
334 ;; except yourself.
335 (load "default" t t)))))))))
3d1b78f0
RS
336 (if init-file-debug
337 ;; Do this without a condition-case if the user wants to debug.
338 (funcall inner)
339 (condition-case error
340 (progn
341 (funcall inner)
342 (setq init-file-had-error nil))
343 (error (message "Error in init file: %s%s%s"
344 (get (car error) 'error-message)
ad2aeb8d 345 (if (cdr error) ": " "")
3d1b78f0
RS
346 (mapconcat 'prin1-to-string (cdr error) ", "))
347 (setq init-file-had-error t))))
ad2aeb8d 348 ;; If we can tell that the init file altered debug-on-error,
3d1b78f0
RS
349 ;; arrange to preserve the value that it set up.
350 (or (eq debug-on-error debug-on-error-initial)
351 (setq debug-on-error-should-be-set t
352 debug-on-error-from-init-file debug-on-error)))
353 (if debug-on-error-should-be-set
354 (setq debug-on-error debug-on-error-from-init-file)))
3fc958a4 355
e3bd99f5
RM
356 (run-hooks 'after-init-hook)
357
a726e0d1
JB
358 ;; If *scratch* exists and init file didn't change its mode, initialize it.
359 (if (get-buffer "*scratch*")
360 (save-excursion
361 (set-buffer "*scratch*")
362 (if (eq major-mode 'fundamental-mode)
363 (funcall initial-major-mode))))
364 ;; Load library for our terminal type.
365 ;; User init file can set term-file-prefix to nil to prevent this.
366 (and term-file-prefix (not noninteractive) (not window-system)
367 (let ((term (getenv "TERM"))
368 hyphend)
369 (while (and term
370 (not (load (concat term-file-prefix term) t t)))
371 ;; Strip off last hyphen and what follows, then try again
372 (if (setq hyphend (string-match "[-_][^-_]+$" term))
373 (setq term (substring term 0 hyphend))
374 (setq term nil)))))
375
03e3c30a 376 ;; Process the remaining args.
a726e0d1
JB
377 (command-line-1 (cdr command-line-args))
378
379 ;; If -batch, terminate after processing the command options.
380 (if noninteractive (kill-emacs t)))
381
382(defun command-line-1 (command-line-args-left)
52320897 383 (or noninteractive (input-pending-p) init-file-had-error
1d7da582
RS
384 (and inhibit-startup-echo-area-message
385 (let ((buffer (get-buffer-create " *temp*")))
386 (prog1
387 (condition-case nil
388 (save-excursion
389 (set-buffer buffer)
390 (insert-file-contents user-init-file)
391 (re-search-forward
392 (concat
d9a71a8f
RS
393 "([ \t\n]*setq[ \t\n]+"
394 "inhibit-startup-echo-area-message[ \t\n]+"
395 (regexp-quote
396 (prin1-to-string
397 (if (string= init-file-user "")
398 (user-login-name)
399 init-file-user)))
400 "[ \t\n]*)")
1d7da582
RS
401 nil t))
402 (error nil))
403 (kill-buffer buffer))))
404 (message (if (eq (key-binding "\C-h\C-p") 'describe-project)
405 "For information about the GNU Project and its goals, type C-h C-p."
406 (substitute-command-keys
407 "For information about the GNU Project and its goals, type \\[describe-project]."))))
a726e0d1
JB
408 (if (null command-line-args-left)
409 (cond ((and (not inhibit-startup-message) (not noninteractive)
410 ;; Don't clobber a non-scratch buffer if init file
411 ;; has selected it.
412 (string= (buffer-name) "*scratch*")
413 (not (input-pending-p)))
414 ;; If there are no switches to process, we might as well
415 ;; run this hook now, and there may be some need to do it
416 ;; before doing any output.
417 (and term-setup-hook
418 (run-hooks 'term-setup-hook))
419 ;; Don't let the hook be run twice.
420 (setq term-setup-hook nil)
4e1b1e72
JB
421
422 ;; It's important to notice the user settings before we
423 ;; display the startup message; otherwise, the settings
424 ;; won't take effect until the user gives the first
425 ;; keystroke, and that's distracting.
426 (if (fboundp 'frame-notice-user-settings)
427 (frame-notice-user-settings))
428
a726e0d1
JB
429 (and window-setup-hook
430 (run-hooks 'window-setup-hook))
431 (setq window-setup-hook nil)
fd11871a
RS
432 ;; Do this now to avoid an annoying delay if the user
433 ;; clicks the menu bar during the sit-for.
434 (precompute-menubar-bindings)
435 (setq menubar-bindings-done t)
a726e0d1
JB
436 (unwind-protect
437 (progn
438 (insert (emacs-version)
439 "
1d7da582 440Copyright (C) 1994 Free Software Foundation, Inc.\n\n")
a726e0d1
JB
441 ;; If keys have their default meanings,
442 ;; use precomputed string to save lots of time.
443 (if (and (eq (key-binding "\C-h") 'help-command)
444 (eq (key-binding "\C-xu") 'advertised-undo)
445 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-emacs)
446 (eq (key-binding "\C-h\C-c") 'describe-copying)
447 (eq (key-binding "\C-h\C-d") 'describe-distribution)
448 (eq (key-binding "\C-h\C-w") 'describe-no-warranty)
449 (eq (key-binding "\C-ht") 'help-with-tutorial))
450 (insert
451 "Type C-h for help; C-x u to undo changes. (`C-' means use CTRL key.)
452To kill the Emacs job, type C-x C-c.
453Type C-h t for a tutorial on using Emacs.
54a0539a 454Type C-h i to enter Info, which you can use to read GNU documentation.
a726e0d1
JB
455
456GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details.
457You may give out copies of Emacs; type C-h C-c to see the conditions.
458Type C-h C-d for information on getting the latest version.")
459 (insert (substitute-command-keys
460 "Type \\[help-command] for help; \\[advertised-undo] to undo changes. (`C-' means use CTRL key.)
461To kill the Emacs job, type \\[save-buffers-kill-emacs].
462Type \\[help-with-tutorial] for a tutorial on using Emacs.
54a0539a 463Type \\[info] to enter Info, which you can use to read GNU documentation.
a726e0d1
JB
464
465GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details.
466You may give out copies of Emacs; type \\[describe-copying] to see the conditions.
467Type \\[describe-distribution] for information on getting the latest version.")))
468 (set-buffer-modified-p nil)
469 (sit-for 120))
470 (save-excursion
471 ;; In case the Emacs server has already selected
472 ;; another buffer, erase the one our message is in.
473 (set-buffer (get-buffer "*scratch*"))
474 (erase-buffer)
475 (set-buffer-modified-p nil)))))
09a1077c 476 (let ((dir command-line-default-directory)
a726e0d1
JB
477 (file-count 0)
478 first-file-buffer
479 (line 0))
480 (while command-line-args-left
481 (let ((argi (car command-line-args-left))
482 tem)
483 (setq command-line-args-left (cdr command-line-args-left))
484 (cond ((setq tem (assoc argi command-switch-alist))
485 (funcall (cdr tem) argi))
a726e0d1
JB
486 ((or (string-equal argi "-f") ;what the manual claims
487 (string-equal argi "-funcall")
488 (string-equal argi "-e")) ; what the source used to say
489 (setq tem (intern (car command-line-args-left)))
490 (setq command-line-args-left (cdr command-line-args-left))
491 (funcall tem))
492 ((or (string-equal argi "-l")
493 (string-equal argi "-load"))
494 (let ((file (car command-line-args-left)))
495 ;; Take file from default dir if it exists there;
496 ;; otherwise let `load' search for it.
497 (if (file-exists-p (expand-file-name file))
498 (setq file (expand-file-name file)))
499 (load file nil t))
500 (setq command-line-args-left (cdr command-line-args-left)))
fbce8654 501 ((string-equal argi "-insert")
cf91c6c8 502 (or (stringp (car command-line-args-left))
fbce8654 503 (error "filename omitted from `-insert' option"))
a726e0d1
JB
504 (insert-file-contents (car command-line-args-left))
505 (setq command-line-args-left (cdr command-line-args-left)))
506 ((string-equal argi "-kill")
507 (kill-emacs t))
508 ((string-match "^\\+[0-9]+\\'" argi)
509 (setq line (string-to-int argi)))
510 (t
511 ;; We have almost exhausted our options. See if the
512 ;; user has made any other command-line options available
513 (let ((hooks command-line-functions);; lrs 7/31/89
514 (did-hook nil))
515 (while (and hooks
516 (not (setq did-hook (funcall (car hooks)))))
517 (setq hooks (cdr hooks)))
518 (if (not did-hook)
519 ;; Ok, presume that the argument is a file name
520 (progn
521 (setq file-count (1+ file-count))
522 (cond ((= file-count 1)
523 (setq first-file-buffer
524 (find-file (expand-file-name argi dir))))
525 (t
526 (find-file-other-window (expand-file-name argi dir))))
527 (or (zerop line)
528 (goto-line line))
529 (setq line 0))))))))
530 ;; If 3 or more files visited, and not all visible,
531 ;; show user what they all are.
532 (if (> file-count 2)
533 (or (get-buffer-window first-file-buffer)
7e0795a4 534 (progn (other-window 1)
e8997612 535 (buffer-menu)))))))
c88ab9ce
ER
536
537;;; startup.el ends here