(tibetan-pre-write-conversion): Cancel previous
[bpt/emacs.git] / lisp / startup.el
1 ;;; startup.el --- process Emacs shell arguments
2
3 ;; Copyright (C) 1985, 86, 92, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: internal
7
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
12 ;; the Free Software Foundation; either version 2, or (at your option)
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 the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; This file parses the command line and gets Emacs running. Options on
28 ;; the command line are handled in precedence order. The order is the
29 ;; one in the list below; first described means first handled. Options
30 ;; within each category (delimited by a bar) are handled in the order
31 ;; encountered on the command line.
32
33 ;; -------------------------
34 ;; -version Print Emacs version to stderr, then exit
35 ;; --version successfully right away.
36 ;; This option is handled by emacs.c
37 ;; -------------------------
38 ;; -help Print a short usage description and exit
39 ;; --help successfully right away.
40 ;; This option is handled by emacs.c
41 ;; -------------------------
42 ;; -nl Do not use shared memory (for systems that
43 ;; -no-shared-memory support this) for the dumped Emacs data.
44 ;; This option is handled by emacs.c
45 ;;
46 ;; -map For VMS.
47 ;; --map-data This option is handled by emacs.c
48 ;; -------------------------
49 ;; -t FILE Use FILE as the name of the terminal.
50 ;; --terminal FILE Using this implies "-nw" also.
51 ;; This option is handled by emacs.c
52 ;; -------------------------
53 ;; -d DISPNAME Use DISPNAME as the name of the X-windows
54 ;; -display DISPNAME display for the initial frame.
55 ;; --display DISPNAME This option is handled by emacs.c
56 ;; -------------------------
57 ;; -nw Do not use a windows system (but use the
58 ;; --no-windows terminal instead.)
59 ;; This option is handled by emacs.c
60 ;; -------------------------
61 ;; -batch Execute noninteractively (messages go to stdout,
62 ;; --batch variable noninteractive set to t)
63 ;; This option is handled by emacs.c
64 ;; -------------------------
65 ;; -q Do not load user's init file and do not load
66 ;; -no-init-file "default.el". Regardless of this switch,
67 ;; --no-init-file "site-start" is still loaded.
68 ;; -------------------------
69 ;; -no-site-file Do not load "site-start.el". (This is the ONLY
70 ;; --no-site-file way to prevent loading that file.)
71 ;; -------------------------
72 ;; -u USER Load USER's init file instead of the init
73 ;; -user USER file belonging to the user starting Emacs.
74 ;; --user USER
75 ;; -------------------------
76 ;; -debug-init Don't catch errors in init files; let the
77 ;; --debug-init debugger run.
78 ;; -------------------------
79 ;; -i ICONTYPE Set type of icon using when Emacs is
80 ;; -itype ICONTYPE iconified under X-windows.
81 ;; --icon-type ICONTYPE This option is passed on to term/x-win.el
82 ;;
83 ;; -iconic Start Emacs iconified under X-windows.
84 ;; --iconic This option is passed on to term/x-win.el
85 ;; -------------------------
86 ;; Various X-windows options for colors/fonts/geometry/title etc.
87 ;; These options are passed on to term/x-win.el which see. Certain
88 ;; of these are also found in term/pc-win.el
89 ;; -------------------------
90 ;; FILE Visit FILE.
91 ;;
92 ;; -L DIRNAME Add DIRNAME to load-path
93 ;; -directory DIRNAME
94 ;; --directory DIRNAME
95 ;;
96 ;; -l FILE Load and execute the Emacs lisp code
97 ;; -load FILE in FILE.
98 ;; --load FILE
99 ;;
100 ;; -f FUNC Execute Emacs lisp function FUNC with
101 ;; -funcall FUNC no arguments. The "-e" form is outdated
102 ;; --funcall FUNC and should not be used. (It's a typo
103 ;; -e FUNC promoted to a feature.)
104 ;;
105 ;; -eval FORM Execute Emacs lisp form FORM.
106 ;; --eval FORM
107 ;;
108 ;; -insert FILE Insert the contents of FILE into buffer.
109 ;; --insert FILE
110 ;; -------------------------
111 ;; -kill Kill (exit) Emacs right away.
112 ;; --kill
113 ;; -------------------------
114
115 ;;; Code:
116
117 (setq top-level '(normal-top-level))
118
119 (defvar command-line-processed nil
120 "Non-nil once command line has been processed")
121
122 (defgroup initialization nil
123 "Emacs start-up procedure"
124 :group 'internal)
125
126 (defcustom inhibit-startup-message nil
127 "*Non-nil inhibits the initial startup message.
128 This is for use in your personal init file, once you are familiar
129 with the contents of the startup message."
130 :type 'boolean
131 :group 'initialization)
132
133 (defcustom inhibit-startup-echo-area-message nil
134 "*Non-nil inhibits the initial startup echo area message.
135 Setting this variable takes effect
136 only if you do it with the customization buffer
137 or if your `.emacs' file contains a line of this form:
138 (setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\")
139 If your `.emacs' file is byte-compiled, use the following form instead:
140 (eval '(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\"))
141 Thus, someone else using a copy of your `.emacs' file will see
142 the startup message unless he personally acts to inhibit it."
143 :type '(choice (const :tag "Don't inhibit")
144 (string :tag "Enter your user name, to inhibit"))
145 :group 'initialization)
146
147 (defcustom inhibit-default-init nil
148 "*Non-nil inhibits loading the `default' library."
149 :type 'boolean
150 :group 'initialization)
151
152 (defvar command-switch-alist nil
153 "Alist of command-line switches.
154 Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
155 HANDLER-FUNCTION receives switch name as sole arg;
156 remaining command-line args are in the variable `command-line-args-left'.")
157
158 (defvar command-line-args-left nil
159 "List of command-line args not yet processed.")
160
161 (defvar command-line-functions nil ;; lrs 7/31/89
162 "List of functions to process unrecognized command-line arguments.
163 Each function should access the dynamically bound variables
164 `argi' (the current argument) and `command-line-args-left' (the remaining
165 arguments). The function should return non-nil only if it recognizes and
166 processes `argi'. If it does so, it may consume successive arguments by
167 altering `command-line-args-left' to remove them.")
168
169 (defvar command-line-default-directory nil
170 "Default directory to use for command line arguments.
171 This is normally copied from `default-directory' when Emacs starts.")
172
173 ;;; This is here, rather than in x-win.el, so that we can ignore these
174 ;;; options when we are not using X.
175 (defvar command-line-x-option-alist
176 '(("-bw" 1 x-handle-numeric-switch border-width)
177 ("-d" 1 x-handle-display)
178 ("-display" 1 x-handle-display)
179 ("-name" 1 x-handle-name-switch)
180 ("-title" 1 x-handle-switch title)
181 ("-T" 1 x-handle-switch title)
182 ("-r" 0 x-handle-switch reverse t)
183 ("-rv" 0 x-handle-switch reverse t)
184 ("-reverse" 0 x-handle-switch reverse t)
185 ("-reverse-video" 0 x-handle-switch reverse t)
186 ("-fn" 1 x-handle-switch font)
187 ("-font" 1 x-handle-switch font)
188 ("-ib" 1 x-handle-numeric-switch internal-border-width)
189 ("-g" 1 x-handle-geometry)
190 ("-geometry" 1 x-handle-geometry)
191 ("-fg" 1 x-handle-switch foreground-color)
192 ("-foreground" 1 x-handle-switch foreground-color)
193 ("-bg" 1 x-handle-switch background-color)
194 ("-background" 1 x-handle-switch background-color)
195 ("-ms" 1 x-handle-switch mouse-color)
196 ("-itype" 0 x-handle-switch icon-type t)
197 ("-i" 0 x-handle-switch icon-type t)
198 ("-iconic" 0 x-handle-iconic)
199 ("-xrm" 1 x-handle-xrm-switch)
200 ("-cr" 1 x-handle-switch cursor-color)
201 ("-vb" 0 x-handle-switch vertical-scroll-bars t)
202 ("-hb" 0 x-handle-switch horizontal-scroll-bars t)
203 ("-bd" 1 x-handle-switch)
204 ("--border-width" 1 x-handle-numeric-switch border-width)
205 ("--display" 1 x-handle-display)
206 ("--name" 1 x-handle-name-switch)
207 ("--title" 1 x-handle-switch title)
208 ("--reverse-video" 0 x-handle-switch reverse t)
209 ("--font" 1 x-handle-switch font)
210 ("--internal-border" 1 x-handle-numeric-switch internal-border-width)
211 ("--geometry" 1 x-handle-geometry)
212 ("--foreground-color" 1 x-handle-switch foreground-color)
213 ("--background-color" 1 x-handle-switch background-color)
214 ("--mouse-color" 1 x-handle-switch mouse-color)
215 ("--icon-type" 0 x-handle-switch icon-type t)
216 ("--iconic" 0 x-handle-iconic)
217 ("--xrm" 1 x-handle-xrm-switch)
218 ("--cursor-color" 1 x-handle-switch cursor-color)
219 ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t)
220 ("--border-color" 1 x-handle-switch border-width))
221 "Alist of X Windows options.
222 Each element has the form
223 (NAME NUMARGS HANDLER FRAME-PARAM VALUE)
224 where NAME is the option name string, NUMARGS is the number of arguments
225 that the option accepts, HANDLER is a function to call to handle the option.
226 FRAME-PARAM (optional) is the frame parameter this option specifies,
227 and VALUE is the value which is given to that frame parameter
228 \(most options use the argument for this, so VALUE is not present).")
229
230 (defvar before-init-hook nil
231 "Normal hook run after handling urgent options but before loading init files.")
232
233 (defvar after-init-hook nil
234 "Normal hook run after loading the init files, `~/.emacs' and `default.el'.
235 There is no `condition-case' around the running of these functions;
236 therefore, if you set `debug-on-error' non-nil in `.emacs',
237 an error in one of these functions will invoke the debugger.")
238
239 (defvar emacs-startup-hook nil
240 "Normal hook run after loading init files and handling the command line.")
241
242 (defvar term-setup-hook nil
243 "Normal hook run after loading terminal-specific Lisp code.
244 It also follows `emacs-startup-hook'. This hook exists for users to set,
245 so as to override the definitions made by the terminal-specific file.
246 Emacs never sets this variable itself.")
247
248 (defvar keyboard-type nil
249 "The brand of keyboard you are using.
250 This variable is used to define
251 the proper function and keypad keys for use under X. It is used in a
252 fashion analogous to the environment variable TERM.")
253
254 (defvar window-setup-hook nil
255 "Normal hook run to initialize window system display.
256 Emacs runs this hook after processing the command line arguments and loading
257 the user's init file.")
258
259 (defcustom initial-major-mode 'lisp-interaction-mode
260 "Major mode command symbol to use for the initial *scratch* buffer."
261 :type 'function
262 :group 'initialization)
263
264 (defcustom init-file-user nil
265 "Identity of user whose `.emacs' file is or was read.
266 The value is nil if `-q' or `--no-init-file' was specified,
267 meaning do not load any init file.
268
269 Otherwise, the value may be the null string, meaning use the init file
270 for the user that originally logged in, or it may be a
271 string containing a user's name meaning use that person's init file.
272
273 In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
274 evaluates to the name of the directory where the `.emacs' file was
275 looked for.
276
277 Setting `init-file-user' does not prevent Emacs from loading
278 `site-start.el'. The only way to do that is to use `--no-site-file'."
279 :type '(choice (const :tag "none" nil) string)
280 :group 'initialization)
281
282 (defcustom site-run-file "site-start"
283 "File containing site-wide run-time initializations.
284 This file is loaded at run-time before `~/.emacs'. It contains inits
285 that need to be in place for the entire site, but which, due to their
286 higher incidence of change, don't make sense to load into emacs'
287 dumped image. Thus, the run-time load order is: 1. file described in
288 this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.
289
290 Don't use the `site-start.el' file for things some users may not like.
291 Put them in `default.el' instead, so that users can more easily
292 override them. Users can prevent loading `default.el' with the `-q'
293 option or by setting `inhibit-default-init' in their own init files,
294 but inhibiting `site-start.el' requires `--no-site-file', which
295 is less convenient."
296 :type '(choice (const :tag "none" nil) string)
297 :group 'initialization)
298
299 (defconst iso-8859-n-locale-regexp "8859[-_]?\\([1-49]\\)"
300 "Regexp that specifies when to enable an ISO 8859-N character set.
301 We do that if this regexp matches the locale name
302 specified by the LC_ALL, LC_CTYPE and LANG environment variables.
303 The paren group in the regexp should match the specific character
304 set number, N.")
305
306 (defcustom mail-host-address nil
307 "*Name of this machine, for purposes of naming users."
308 :type '(choice (const nil) string)
309 :group 'mail)
310
311 (defcustom user-mail-address nil
312 "*Full mailing address of this user.
313 This is initialized based on `mail-host-address',
314 after your init file is read, in case it sets `mail-host-address'."
315 :type 'string
316 :group 'mail)
317
318 (defcustom auto-save-list-file-prefix
319 (if (eq system-type 'ms-dos)
320 "~/_s" ; MS-DOS cannot have initial dot, and allows only 8.3 names
321 "~/.saves-")
322 "Prefix for generating `auto-save-list-file-name'.
323 This is used after reading your `.emacs' file to initialize
324 `auto-save-list-file-name', by appending Emacs's pid and the system name,
325 if you have not already set `auto-save-list-file-name' yourself.
326 Set this to nil if you want to prevent `auto-save-list-file-name'
327 from being initialized."
328 :type '(choice (const :tag "Don't record a session's auto save list" nil)
329 string)
330 :group 'auto-save)
331
332 (defvar locale-translation-file-name
333 (let ((files '("/usr/lib/X11/locale/locale.alias" ; e.g. X11R6.4
334 "/usr/X11R6/lib/X11/locale/locale.alias" ; e.g. RedHat 4.2
335 "/usr/openwin/lib/locale/locale.alias" ; e.g. Solaris 2.6
336 ;;
337 ;; The following name appears after the X-related names above,
338 ;; since the X-related names are what X actually uses.
339 "/usr/share/locale/locale.alias" ; GNU/Linux sans X
340 )))
341 (while (and files (not (file-exists-p (car files))))
342 (setq files (cdr files)))
343 (car files))
344 "*File name for the system's file of locale-name aliases, or nil if none.")
345
346 (defvar init-file-debug nil)
347
348 (defvar init-file-had-error nil)
349
350 (defun normal-top-level-add-subdirs-to-load-path ()
351 "Add all subdirectories of current directory to `load-path'.
352 More precisely, this uses only the subdirectories whose names
353 start with letters or digits; it excludes any subdirectory named `RCS'
354 or `CVS', and any subdirectory that contains a file named `.nosearch'."
355 (let (dirs
356 (pending (list default-directory)))
357 ;; This loop does a breadth-first tree walk on DIR's subtree,
358 ;; putting each subdir into DIRS as its contents are examined.
359 (while pending
360 (setq dirs (cons (car pending) dirs))
361 (setq pending (cdr pending))
362 (let ((contents (directory-files (car dirs)))
363 (default-directory (car dirs)))
364 (while contents
365 (unless (member (car contents) '("." ".." "RCS" "CVS"))
366 (when (and (string-match "\\`[a-zA-Z0-9]" (car contents))
367 (file-directory-p (car contents)))
368 (let ((expanded (expand-file-name (car contents))))
369 (unless (file-exists-p (expand-file-name ".nosearch"
370 expanded))
371 (setq pending (nconc pending (list expanded)))))))
372 (setq contents (cdr contents)))))
373 (normal-top-level-add-to-load-path (cdr (nreverse dirs)))))
374
375 ;; This function is called from a subdirs.el file.
376 ;; It assumes that default-directory is the directory
377 ;; in which the subdirs.el file exists,
378 ;; and it adds to load-path the subdirs of that directory
379 ;; as specified in DIRS. Normally the elements of DIRS are relative.
380 (defun normal-top-level-add-to-load-path (dirs)
381 (let ((tail load-path)
382 (thisdir (directory-file-name default-directory)))
383 (while (and tail
384 (not (equal thisdir (car tail)))
385 (not (and (memq system-type '(ms-dos windows-nt))
386 (equal (downcase thisdir) (downcase (car tail))))))
387 (setq tail (cdr tail)))
388 (setcdr tail (append (mapcar 'expand-file-name dirs) (cdr tail)))))
389
390 (defun normal-top-level ()
391 (if command-line-processed
392 (message "Back to top level.")
393 (setq command-line-processed t)
394 ;; Give *Messages* the same default-directory as *scratch*,
395 ;; just to keep things predictable.
396 (let ((dir default-directory))
397 (save-excursion
398 (set-buffer (get-buffer "*Messages*"))
399 (setq default-directory dir)))
400 ;; For root, preserve owner and group when editing files.
401 (if (equal (user-uid) 0)
402 (setq backup-by-copying-when-mismatch t))
403 ;; Look in each dir in load-path for a subdirs.el file.
404 ;; If we find one, load it, which will add the appropriate subdirs
405 ;; of that dir into load-path,
406 (let ((tail load-path)
407 new)
408 (while tail
409 (setq new (cons (car tail) new))
410 (let ((default-directory (car tail)))
411 (load (expand-file-name "subdirs.el" (car tail)) t t t))
412 (setq tail (cdr tail))))
413 (if (not (eq system-type 'vax-vms))
414 (progn
415 ;; If the PWD environment variable isn't accurate, delete it.
416 (let ((pwd (getenv "PWD")))
417 (and (stringp pwd)
418 ;; Use FOO/., so that if FOO is a symlink, file-attributes
419 ;; describes the directory linked to, not FOO itself.
420 (or (equal (file-attributes
421 (concat (file-name-as-directory pwd) "."))
422 (file-attributes
423 (concat (file-name-as-directory default-directory)
424 ".")))
425 (setq process-environment
426 (delete (concat "PWD=" pwd)
427 process-environment)))))))
428 (setq default-directory (abbreviate-file-name default-directory))
429 (let ((menubar-bindings-done nil))
430 (unwind-protect
431 (command-line)
432 ;; Do this again, in case .emacs defined more abbreviations.
433 (setq default-directory (abbreviate-file-name default-directory))
434 ;; Specify the file for recording all the auto save files of this session.
435 ;; This is used by recover-session.
436 (or auto-save-list-file-name
437 (and auto-save-list-file-prefix
438 (setq auto-save-list-file-name
439 ;; Under MS-DOS our PID is almost always reused between
440 ;; Emacs invocations. We need something more unique.
441 (if (eq system-type 'ms-dos)
442 (concat
443 (make-temp-name
444 (expand-file-name auto-save-list-file-prefix))
445 "~")
446
447 (expand-file-name (format "%s%d-%s~"
448 auto-save-list-file-prefix
449 (emacs-pid)
450 (system-name)))))))
451 (run-hooks 'emacs-startup-hook)
452 (and term-setup-hook
453 (run-hooks 'term-setup-hook))
454 ;; Modify the initial frame based on what .emacs puts into
455 ;; ...-frame-alist.
456 (if (fboundp 'frame-notice-user-settings)
457 (frame-notice-user-settings))
458 ;; Now we know the user's default font, so add it to the menu.
459 (if (fboundp 'font-menu-add-default)
460 (font-menu-add-default))
461 (and window-setup-hook
462 (run-hooks 'window-setup-hook))
463 (or menubar-bindings-done
464 (if (memq window-system '(x w32))
465 (precompute-menubar-bindings)))))))
466
467 ;; Precompute the keyboard equivalents in the menu bar items.
468 (defun precompute-menubar-bindings ()
469 (let ((submap (lookup-key global-map [menu-bar])))
470 (while submap
471 (and (consp (car submap))
472 (symbolp (car (car submap)))
473 (stringp (car-safe (cdr (car submap))))
474 (keymapp (cdr (cdr (car submap))))
475 (progn
476 (x-popup-menu nil (cdr (cdr (car submap))))
477 (if purify-flag
478 (garbage-collect))))
479 (setq submap (cdr submap))))
480 (setq define-key-rebound-commands t))
481
482 (defun command-line ()
483 (setq command-line-default-directory default-directory)
484
485 ;; Choose a reasonable location for temporary files.
486 (setq temporary-file-directory
487 (file-name-as-directory
488 (cond ((memq system-type '(ms-dos windows-nt))
489 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
490 ((memq system-type '(vax-vms axp-vms))
491 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
492 (t
493 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp")))))
494
495 ;; See if we should import version-control from the environment variable.
496 (let ((vc (getenv "VERSION_CONTROL")))
497 (cond ((eq vc nil)) ;don't do anything if not set
498 ((or (string= vc "t")
499 (string= vc "numbered"))
500 (setq version-control t))
501 ((or (string= vc "nil")
502 (string= vc "existing"))
503 (setq version-control nil))
504 ((or (string= vc "never")
505 (string= vc "simple"))
506 (setq version-control 'never))))
507
508 (let ((ctype
509 ;; Use the first of these three envvars that has a nonempty value.
510 (or (let ((string (getenv "LC_ALL")))
511 (and (not (equal string "")) string))
512 (let ((string (getenv "LC_CTYPE")))
513 (and (not (equal string "")) string))
514 (let ((string (getenv "LANG")))
515 (and (not (equal string "")) string)))))
516 ;; Translate "swedish" into "sv_SE.ISO-8859-1", and so on,
517 ;; using the translation file that GNU/Linux systems have.
518 (and ctype
519 locale-translation-file-name
520 (not (string-match iso-8859-n-locale-regexp ctype))
521 (with-temp-buffer
522 (insert-file-contents locale-translation-file-name)
523 (if (re-search-forward
524 (concat "^" (regexp-quote ctype) ":?[ \t]+") nil t)
525 (setq ctype (buffer-substring (point)
526 (progn (end-of-line) (point)))))))
527 ;; Now see if the locale specifies an ISO 8859 character set.
528 (when (and ctype
529 (string-match iso-8859-n-locale-regexp ctype))
530 (let (charset (which (match-string 1 ctype)))
531 (if (equal "9" which)
532 (setq which "5"))
533 (setq charset (concat "latin-" which))
534 (when (string-match "latin-[12345]" charset)
535 ;; Set up for this character set.
536 ;; This is now the right way to do it
537 ;; for both unibyte and multibyte modes.
538 (set-language-environment charset)
539 (unless (or noninteractive (eq window-system 'x))
540 ;; Send those codes literally to a non-X terminal.
541 (when default-enable-multibyte-characters
542 ;; If this is nil, we are using single-byte characters,
543 ;; so the terminal coding system is irrelevant.
544 (set-terminal-coding-system
545 (intern (downcase charset)))))
546 (standard-display-european-internal)))))
547
548 ;;! This has been commented out; I currently find the behavior when
549 ;;! split-window-keep-point is nil disturbing, but if I can get used
550 ;;! to it, then it would be better to eliminate the option.
551 ;;! ;; Choose a good default value for split-window-keep-point.
552 ;;! (setq split-window-keep-point (> baud-rate 2400))
553
554 ;; Read window system's init file if using a window system.
555 (condition-case error
556 (if (and window-system (not noninteractive))
557 (load (concat term-file-prefix
558 (symbol-name window-system)
559 "-win")
560 ;; Every window system should have a startup file;
561 ;; barf if we can't find it.
562 nil t))
563 ;; If we can't read it, print the error message and exit.
564 (error
565 (princ
566 (if (eq (car error) 'error)
567 (apply 'concat (cdr error))
568 (if (memq 'file-error (get (car error) 'error-conditions))
569 (format "%s: %s"
570 (nth 1 error)
571 (mapconcat '(lambda (obj) (prin1-to-string obj t))
572 (cdr (cdr error)) ", "))
573 (format "%s: %s"
574 (get (car error) 'error-message)
575 (mapconcat '(lambda (obj) (prin1-to-string obj t))
576 (cdr error) ", "))))
577 'external-debugging-output)
578 (setq window-system nil)
579 (kill-emacs)))
580
581 (let ((done nil)
582 (args (cdr command-line-args)))
583
584 ;; Figure out which user's init file to load,
585 ;; either from the environment or from the options.
586 (setq init-file-user (if noninteractive nil (user-login-name)))
587 ;; If user has not done su, use current $HOME to find .emacs.
588 (and init-file-user (string= init-file-user (user-real-login-name))
589 (setq init-file-user ""))
590
591 ;; Process the command-line args, and delete the arguments
592 ;; processed. This is consistent with the way main in emacs.c
593 ;; does things.
594 (while (and (not done) args)
595 (let ((longopts '(("--no-init-file") ("--no-site-file") ("--user")
596 ("--debug-init") ("--iconic") ("--icon-type")))
597 (argi (car args))
598 (argval nil))
599 ;; Handle --OPTION=VALUE format.
600 (if (and (string-match "\\`--" argi)
601 (string-match "=" argi))
602 (setq argval (substring argi (match-end 0))
603 argi (substring argi 0 (match-beginning 0))))
604 (or (equal argi "--")
605 (let ((completion (try-completion argi longopts)))
606 (if (eq completion t)
607 (setq argi (substring argi 1))
608 (if (stringp completion)
609 (let ((elt (assoc completion longopts)))
610 (or elt
611 (error "Option `%s' is ambiguous" argi))
612 (setq argi (substring (car elt) 1)))
613 (setq argval nil)))))
614 (cond
615 ((or (string-equal argi "-q")
616 (string-equal argi "-no-init-file"))
617 (setq init-file-user nil
618 args (cdr args)))
619 ((or (string-equal argi "-u")
620 (string-equal argi "-user"))
621 (or argval
622 (setq args (cdr args)
623 argval (car args)))
624 (setq init-file-user argval
625 argval nil
626 args (cdr args)))
627 ((string-equal argi "-no-site-file")
628 (setq site-run-file nil
629 args (cdr args)))
630 ((string-equal argi "-debug-init")
631 (setq init-file-debug t
632 args (cdr args)))
633 ((string-equal argi "-iconic")
634 (setq initial-frame-alist
635 (cons '(visibility . icon) initial-frame-alist))
636 (setq args (cdr args)))
637 ((or (string-equal argi "-icon-type")
638 (string-equal argi "-i")
639 (string-equal argi "-itype"))
640 (setq default-frame-alist
641 (cons '(icon-type . t) default-frame-alist))
642 (setq args (cdr args)))
643 (t (setq done t)))
644 ;; Was argval set but not used?
645 (and argval
646 (error "Option `%s' doesn't allow an argument" argi))))
647
648 ;; Re-attach the program name to the front of the arg list.
649 (and command-line-args (setcdr command-line-args args)))
650
651 ;; Under X Windows, this creates the X frame and deletes the terminal frame.
652 (if (fboundp 'frame-initialize)
653 (frame-initialize))
654 ;; If frame was created with a menu bar, set menu-bar-mode on.
655 (if (or (not (memq window-system '(x w32)))
656 (> (cdr (assq 'menu-bar-lines (frame-parameters))) 0))
657 (menu-bar-mode t))
658
659 (run-hooks 'before-init-hook)
660
661 ;; Run the site-start library if it exists. The point of this file is
662 ;; that it is run before .emacs. There is no point in doing this after
663 ;; .emacs; that is useless.
664 (if site-run-file
665 (load site-run-file t t))
666
667 ;; Register available input methods by loading LEIM list file.
668 (load "leim-list.el" 'noerror 'nomessage 'nosuffix)
669
670 ;; Sites should not disable this. Only individuals should disable
671 ;; the startup message.
672 (setq inhibit-startup-message nil)
673
674 ;; Load that user's init file, or the default one, or none.
675 (let (debug-on-error-from-init-file
676 debug-on-error-should-be-set
677 (debug-on-error-initial
678 (if (eq init-file-debug t) 'startup init-file-debug)))
679 (let ((debug-on-error debug-on-error-initial)
680 ;; This function actually reads the init files.
681 (inner
682 (function
683 (lambda ()
684 (if init-file-user
685 (progn
686 (setq user-init-file
687 (cond
688 ((eq system-type 'ms-dos)
689 (concat "~" init-file-user "/_emacs"))
690 ((eq system-type 'windows-nt)
691 (if (file-exists-p "~/.emacs")
692 "~/.emacs"
693 "~/_emacs"))
694 ((eq system-type 'vax-vms)
695 "sys$login:.emacs")
696 (t
697 (concat "~" init-file-user "/.emacs"))))
698 (load user-init-file t t)
699 (or inhibit-default-init
700 (let ((inhibit-startup-message nil))
701 ;; Users are supposed to be told their rights.
702 ;; (Plus how to get help and how to undo.)
703 ;; Don't you dare turn this off for anyone
704 ;; except yourself.
705 (load "default" t t)))))))))
706 (if init-file-debug
707 ;; Do this without a condition-case if the user wants to debug.
708 (funcall inner)
709 (condition-case error
710 (progn
711 (funcall inner)
712 (setq init-file-had-error nil))
713 (error (message "Error in init file: %s%s%s"
714 (get (car error) 'error-message)
715 (if (cdr error) ": " "")
716 (mapconcat 'prin1-to-string (cdr error) ", "))
717 (setq init-file-had-error t))))
718 ;; If we can tell that the init file altered debug-on-error,
719 ;; arrange to preserve the value that it set up.
720 (or (eq debug-on-error debug-on-error-initial)
721 (setq debug-on-error-should-be-set t
722 debug-on-error-from-init-file debug-on-error)))
723 (if debug-on-error-should-be-set
724 (setq debug-on-error debug-on-error-from-init-file)))
725
726 ;; Do this here in case the init file sets mail-host-address.
727 (or user-mail-address
728 (setq user-mail-address (concat (user-login-name) "@"
729 (or mail-host-address
730 (system-name)))))
731
732 (run-hooks 'after-init-hook)
733
734 ;; If *scratch* exists and init file didn't change its mode, initialize it.
735 (if (get-buffer "*scratch*")
736 (save-excursion
737 (set-buffer "*scratch*")
738 (if (eq major-mode 'fundamental-mode)
739 (funcall initial-major-mode))))
740 ;; Load library for our terminal type.
741 ;; User init file can set term-file-prefix to nil to prevent this.
742 (and term-file-prefix (not noninteractive) (not window-system)
743 (let ((term (getenv "TERM"))
744 hyphend)
745 (while (and term
746 (not (load (concat term-file-prefix term) t t)))
747 ;; Strip off last hyphen and what follows, then try again
748 (if (setq hyphend (string-match "[-_][^-_]+$" term))
749 (setq term (substring term 0 hyphend))
750 (setq term nil)))))
751
752 ;; Process the remaining args.
753 (command-line-1 (cdr command-line-args))
754
755 ;; If -batch, terminate after processing the command options.
756 (if noninteractive (kill-emacs t)))
757
758 (defcustom initial-scratch-message "\
759 This buffer is for notes you don't want to save, and for Lisp evaluation.
760 If you want to create a file, visit that file with C-x C-f,
761 then enter the text in that file's own buffer.
762
763 "
764 "Initial message displayed in *scratch* buffer at startup.
765 If this is nil, no message will be displayed."
766 :type 'string)
767
768 (defun command-line-1 (command-line-args-left)
769 (or noninteractive (input-pending-p) init-file-had-error
770 (and inhibit-startup-echo-area-message
771 user-init-file
772 (or (and (get 'inhibit-startup-echo-area-message 'saved-value)
773 (equal inhibit-startup-echo-area-message
774 (if (string= init-file-user "")
775 (user-login-name)
776 init-file-user)))
777 ;; Wasn't set with custom; see if .emacs has a setq.
778 (let ((buffer (get-buffer-create " *temp*")))
779 (prog1
780 (condition-case nil
781 (save-excursion
782 (set-buffer buffer)
783 (insert-file-contents user-init-file)
784 (re-search-forward
785 (concat
786 "([ \t\n]*setq[ \t\n]+"
787 "inhibit-startup-echo-area-message[ \t\n]+"
788 (regexp-quote
789 (prin1-to-string
790 (if (string= init-file-user "")
791 (user-login-name)
792 init-file-user)))
793 "[ \t\n]*)")
794 nil t))
795 (error nil))
796 (kill-buffer buffer)))))
797 (message (if (eq (key-binding "\C-h\C-p") 'describe-project)
798 "For information about the GNU Project and its goals, type C-h C-p."
799 (substitute-command-keys
800 "For information about the GNU Project and its goals, type \\[describe-project]."))))
801 (if (null command-line-args-left)
802 (cond ((and (not inhibit-startup-message) (not noninteractive)
803 ;; Don't clobber a non-scratch buffer if init file
804 ;; has selected it.
805 (string= (buffer-name) "*scratch*"))
806 ;; If there are no switches to process, we might as well
807 ;; run this hook now, and there may be some need to do it
808 ;; before doing any output.
809 (and term-setup-hook
810 (run-hooks 'term-setup-hook))
811 ;; Don't let the hook be run twice.
812 (setq term-setup-hook nil)
813
814 ;; It's important to notice the user settings before we
815 ;; display the startup message; otherwise, the settings
816 ;; won't take effect until the user gives the first
817 ;; keystroke, and that's distracting.
818 (if (fboundp 'frame-notice-user-settings)
819 (frame-notice-user-settings))
820
821 (and window-setup-hook
822 (run-hooks 'window-setup-hook))
823 (setq window-setup-hook nil)
824 ;; Do this now to avoid an annoying delay if the user
825 ;; clicks the menu bar during the sit-for.
826 (if (memq window-system '(x w32))
827 (precompute-menubar-bindings))
828 (setq menubar-bindings-done t)
829 (when (= (buffer-size) 0)
830 (let ((buffer-undo-list t))
831 (unwind-protect
832 (when (not (input-pending-p))
833 (goto-char (point-max))
834 ;; The convention for this piece of code is that
835 ;; each piece of output starts with one or two newlines
836 ;; and does not end with any newlines.
837 (insert "Welcome to GNU Emacs")
838 (if (eq system-type 'gnu/linux)
839 (insert ", one component of a Linux-based GNU system."))
840 (insert "\n")
841 (if (assq 'display (frame-parameters))
842 (progn
843 (insert "\
844 The menu bar and scroll bar are sufficient for basic editing with the mouse.
845
846 Useful Files menu items:
847 Exit Emacs (or type Control-x followed by Control-c)
848 Recover Session recover files you were editing before a crash
849
850 Important Help menu items:
851 Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently.
852 \(Non)Warranty GNU Emacs comes with ABSOLUTELY NO WARRANTY
853 Copying Conditions Conditions for redistributing and changing Emacs.
854 Getting New Versions How to obtain the latest version of Emacs.
855 ")
856 (insert "\n\n" (emacs-version)
857 "
858 Copyright (C) 1998 Free Software Foundation, Inc."))
859 ;; If keys have their default meanings,
860 ;; use precomputed string to save lots of time.
861 (if (and (eq (key-binding "\C-h") 'help-command)
862 (eq (key-binding "\C-xu") 'advertised-undo)
863 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-emacs)
864 (eq (key-binding "\C-ht") 'help-with-tutorial)
865 (eq (key-binding "\C-hi") 'info)
866 (eq (key-binding "\C-h\C-n") 'view-emacs-news))
867 (insert "
868 Get help C-h (Hold down CTRL and press h)
869 Undo changes C-x u Exit Emacs C-x C-c
870 Get a tutorial C-h t Use Info to read docs C-h i")
871 (insert (substitute-command-keys
872 (format "\n
873 Get help %s
874 Undo changes \\[advertised-undo]
875 Exit Emacs \\[save-buffers-kill-emacs]
876 Get a tutorial \\[help-with-tutorial]
877 Use Info to read docs \\[info]"
878 (let ((where (where-is-internal
879 'help-command nil t)))
880 (if where
881 (key-description where)
882 "M-x help"))))))
883 ;; Say how to use the menu bar
884 ;; if that is not with the mouse.
885 (if (and (eq (key-binding "\M-`") 'tmm-menubar)
886 (eq (key-binding [f10]) 'tmm-menubar))
887 (insert "
888 Activate menubar F10 or ESC ` or M-`")
889 (insert (substitute-command-keys "
890 Activate menubar \\[tmm-menubar]")))
891
892 ;; Windows and MSDOS (currently) do not count as
893 ;; window systems, but do have mouse support.
894 (if window-system
895 (insert "
896 Mode-specific menu C-mouse-3 (third button, with CTRL)"))
897 ;; Many users seem to have problems with these.
898 (insert "
899 \(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
900 If you have no Meta key, you may instead type ESC followed by the character.)")
901 (and auto-save-list-file-prefix
902 (directory-files
903 (file-name-directory auto-save-list-file-prefix)
904 nil
905 (concat "\\`"
906 (regexp-quote (file-name-nondirectory
907 auto-save-list-file-prefix)))
908 t)
909 (insert "\n\nIf an Emacs session crashed recently, "
910 "type M-x recover-session RET\nto recover"
911 " the files you were editing."))
912
913 (insert "\n\n" (emacs-version)
914 "
915 Copyright (C) 1998 Free Software Foundation, Inc.")
916 (if (and (eq (key-binding "\C-h\C-c") 'describe-copying)
917 (eq (key-binding "\C-h\C-d") 'describe-distribution)
918 (eq (key-binding "\C-h\C-w") 'describe-no-warranty))
919 (insert
920 "\n
921 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details.
922 You may give out copies of Emacs; type C-h C-c to see the conditions.
923 Type C-h C-d for information on getting the latest version.")
924 (insert (substitute-command-keys
925 "\n
926 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details.
927 You may give out copies of Emacs; type \\[describe-copying] to see the conditions.
928 Type \\[describe-distribution] for information on getting the latest version."))))
929 (goto-char (point-min))
930
931 (set-buffer-modified-p nil)
932 (sit-for 120))
933 (with-current-buffer (get-buffer "*scratch*")
934 (erase-buffer)
935 (and initial-scratch-message
936 (insert initial-scratch-message))
937 (set-buffer-modified-p nil)))))))
938 ;; Delay 2 seconds after the init file error message
939 ;; was displayed, so user can read it.
940 (if init-file-had-error
941 (sit-for 2))
942 (let ((dir command-line-default-directory)
943 (file-count 0)
944 first-file-buffer
945 tem
946 just-files ;; t if this follows the magic -- option.
947 ;; This includes our standard options' long versions
948 ;; and long versions of what's on command-switch-alist.
949 (longopts
950 (append '(("--funcall") ("--load") ("--insert") ("--kill")
951 ("--directory") ("--eval") ("--find-file") ("--visit"))
952 (mapcar '(lambda (elt)
953 (list (concat "-" (car elt))))
954 command-switch-alist)))
955 (line 0))
956
957 ;; Add the long X options to longopts.
958 (setq tem command-line-x-option-alist)
959 (while tem
960 (if (string-match "^--" (car (car tem)))
961 (setq longopts (cons (list (car (car tem))) longopts)))
962 (setq tem (cdr tem)))
963
964 ;; Loop, processing options.
965 (while (and command-line-args-left)
966 (let* ((argi (car command-line-args-left))
967 (orig-argi argi)
968 argval completion
969 ;; List of directories specified in -L/--directory,
970 ;; in reverse of the order specified.
971 extra-load-path
972 (initial-load-path load-path))
973 (setq command-line-args-left (cdr command-line-args-left))
974
975 ;; Do preliminary decoding of the option.
976 (if just-files
977 ;; After --, don't look for options; treat all args as files.
978 (setq argi "")
979 ;; Convert long options to ordinary options
980 ;; and separate out an attached option argument into argval.
981 (if (string-match "^--[^=]*=" argi)
982 (setq argval (substring argi (match-end 0))
983 argi (substring argi 0 (1- (match-end 0)))))
984 (if (equal argi "--")
985 (setq completion nil)
986 (setq completion (try-completion argi longopts)))
987 (if (eq completion t)
988 (setq argi (substring argi 1))
989 (if (stringp completion)
990 (let ((elt (assoc completion longopts)))
991 (or elt
992 (error "Option `%s' is ambiguous" argi))
993 (setq argi (substring (car elt) 1)))
994 (setq argval nil argi orig-argi))))
995
996 ;; Execute the option.
997 (cond ((setq tem (assoc argi command-switch-alist))
998 (if argval
999 (let ((command-line-args-left
1000 (cons argval command-line-args-left)))
1001 (funcall (cdr tem) argi))
1002 (funcall (cdr tem) argi)))
1003 ((or (string-equal argi "-f") ;what the manual claims
1004 (string-equal argi "-funcall")
1005 (string-equal argi "-e")) ; what the source used to say
1006 (if argval
1007 (setq tem (intern argval))
1008 (setq tem (intern (car command-line-args-left)))
1009 (setq command-line-args-left (cdr command-line-args-left)))
1010 (if (arrayp (symbol-function tem))
1011 (command-execute tem)
1012 (funcall tem)))
1013 ((string-equal argi "-eval")
1014 (if argval
1015 (setq tem argval)
1016 (setq tem (car command-line-args-left))
1017 (setq command-line-args-left (cdr command-line-args-left)))
1018 (eval (read tem)))
1019 ;; Set the default directory as specified in -L.
1020 ((or (string-equal argi "-L")
1021 (string-equal argi "-directory"))
1022 (if argval
1023 (setq tem argval)
1024 (setq tem (car command-line-args-left)
1025 command-line-args-left (cdr command-line-args-left)))
1026 (setq tem (command-line-normalize-file-name tem))
1027 (setq extra-load-path
1028 (cons (expand-file-name tem) extra-load-path))
1029 (setq load-path (append (nreverse extra-load-path)
1030 initial-load-path)))
1031 ((or (string-equal argi "-l")
1032 (string-equal argi "-load"))
1033 (if argval
1034 (setq tem argval)
1035 (setq tem (car command-line-args-left)
1036 command-line-args-left (cdr command-line-args-left)))
1037 (let ((file (command-line-normalize-file-name tem)))
1038 ;; Take file from default dir if it exists there;
1039 ;; otherwise let `load' search for it.
1040 (if (file-exists-p (expand-file-name file))
1041 (setq file (expand-file-name file)))
1042 (load file nil t)))
1043 ((string-equal argi "-insert")
1044 (if argval
1045 (setq tem argval)
1046 (setq tem (car command-line-args-left)
1047 command-line-args-left (cdr command-line-args-left)))
1048 (or (stringp tem)
1049 (error "File name omitted from `-insert' option"))
1050 (insert-file-contents (command-line-normalize-file-name tem)))
1051 ((string-equal argi "-kill")
1052 (kill-emacs t))
1053 ((string-match "^\\+[0-9]+\\'" argi)
1054 (setq line (string-to-int argi)))
1055 ((setq tem (assoc argi command-line-x-option-alist))
1056 ;; Ignore X-windows options and their args if not using X.
1057 (setq command-line-args-left
1058 (nthcdr (nth 1 tem) command-line-args-left)))
1059 ((or (string-equal argi "-find-file")
1060 (string-equal argi "-visit"))
1061 ;; An explicit option to specify visiting a file.
1062 (setq file-count (1+ file-count))
1063 (let ((file
1064 (expand-file-name
1065 (command-line-normalize-file-name orig-argi)
1066 dir)))
1067 (if (= file-count 1)
1068 (setq first-file-buffer (find-file file))
1069 (find-file-other-window file)))
1070 (or (zerop line)
1071 (goto-line line))
1072 (setq line 0))
1073 ((equal argi "--")
1074 (setq just-files t))
1075 (t
1076 ;; We have almost exhausted our options. See if the
1077 ;; user has made any other command-line options available
1078 (let ((hooks command-line-functions);; lrs 7/31/89
1079 (did-hook nil))
1080 (while (and hooks
1081 (not (setq did-hook (funcall (car hooks)))))
1082 (setq hooks (cdr hooks)))
1083 (if (not did-hook)
1084 ;; Ok, presume that the argument is a file name
1085 (progn
1086 (if (string-match "\\`-" argi)
1087 (error "Unknown option `%s'" argi))
1088 (setq file-count (1+ file-count))
1089 (let ((file
1090 (expand-file-name
1091 (command-line-normalize-file-name orig-argi)
1092 dir)))
1093 (if (= file-count 1)
1094 (setq first-file-buffer (find-file file))
1095 (find-file-other-window file)))
1096 (or (zerop line)
1097 (goto-line line))
1098 (setq line 0))))))))
1099 ;; If 3 or more files visited, and not all visible,
1100 ;; show user what they all are.
1101 (and (> file-count 2)
1102 (not noninteractive)
1103 (or (get-buffer-window first-file-buffer)
1104 (progn (other-window 1)
1105 (buffer-menu)))))))
1106
1107 (defun command-line-normalize-file-name (file)
1108 "Collapse multiple slashes to one, to handle non-Emacs file names."
1109 (save-match-data
1110 ;; Use arg 1 so that we don't collapse // at the start of the file name.
1111 ;; That is significant on some systems.
1112 ;; However, /// at the beginning is supposed to mean just /, not //.
1113 (if (string-match "^///+" file)
1114 (setq file (replace-match "/" t t file)))
1115 (while (string-match "//+" file 1)
1116 (setq file (replace-match "/" t t file)))
1117 file))
1118
1119 ;;; startup.el ends here