*** empty log message ***
[bpt/emacs.git] / lisp / startup.el
CommitLineData
c88ab9ce
ER
1;;; startup.el --- process Emacs shell arguments
2
848c7757 3;; Copyright (C) 1985, 86, 92, 94, 95, 96, 97, 98, 99, 2000, 2001
347d0813 4;; Free Software Foundation, Inc.
eea8d4ef 5
630cc463 6;; Maintainer: FSF
d7b4d18f 7;; Keywords: internal
630cc463 8
a726e0d1
JB
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
4746118a 13;; the Free Software Foundation; either version 2, or (at your option)
a726e0d1
JB
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
a726e0d1 25
630cc463 26;;; Commentary:
a726e0d1 27
ab30fc8a
RS
28;; This file parses the command line and gets Emacs running. Options on
29;; the command line are handled in precedence order. The order is the
30;; one in the list below; first described means first handled. Options
31;; within each category (delimited by a bar) are handled in the order
32;; encountered on the command line.
33
34;; -------------------------
35;; -version Print Emacs version to stderr, then exit
36;; --version successfully right away.
37;; This option is handled by emacs.c
38;; -------------------------
39;; -help Print a short usage description and exit
40;; --help successfully right away.
41;; This option is handled by emacs.c
42;; -------------------------
43;; -nl Do not use shared memory (for systems that
44;; -no-shared-memory support this) for the dumped Emacs data.
45;; This option is handled by emacs.c
46;;
47;; -map For VMS.
48;; --map-data This option is handled by emacs.c
49;; -------------------------
50;; -t FILE Use FILE as the name of the terminal.
51;; --terminal FILE Using this implies "-nw" also.
52;; This option is handled by emacs.c
53;; -------------------------
64b0dbdb 54;; -d DISPNAME Use DISPNAME as the name of the X
ab30fc8a
RS
55;; -display DISPNAME display for the initial frame.
56;; --display DISPNAME This option is handled by emacs.c
57;; -------------------------
58;; -nw Do not use a windows system (but use the
568bd708 59;; --no-window-system terminal instead.)
ab30fc8a
RS
60;; This option is handled by emacs.c
61;; -------------------------
62;; -batch Execute noninteractively (messages go to stdout,
63;; --batch variable noninteractive set to t)
64;; This option is handled by emacs.c
65;; -------------------------
66;; -q Do not load user's init file and do not load
67;; -no-init-file "default.el". Regardless of this switch,
6f9340dd 68;; --no-init-file "site-start" is still loaded.
ab30fc8a 69;; -------------------------
6f9340dd 70;; -no-site-file Do not load "site-start.el". (This is the ONLY
ab30fc8a
RS
71;; --no-site-file way to prevent loading that file.)
72;; -------------------------
73;; -u USER Load USER's init file instead of the init
74;; -user USER file belonging to the user starting Emacs.
75;; --user USER
76;; -------------------------
77;; -debug-init Don't catch errors in init files; let the
78;; --debug-init debugger run.
79;; -------------------------
80;; -i ICONTYPE Set type of icon using when Emacs is
64b0dbdb 81;; -itype ICONTYPE iconified under X.
ab30fc8a
RS
82;; --icon-type ICONTYPE This option is passed on to term/x-win.el
83;;
64b0dbdb 84;; -iconic Start Emacs iconified.
ab30fc8a
RS
85;; --iconic This option is passed on to term/x-win.el
86;; -------------------------
64b0dbdb 87;; Various X options for colors/fonts/geometry/title etc.
f5627e93 88;; These options are passed on to term/x-win.el which see.
ab30fc8a
RS
89;; -------------------------
90;; FILE Visit FILE.
dc2cd811
GM
91;; -visit FILE
92;; --visit FILE
93;; -file FILE
94;; --file FILE
ab30fc8a
RS
95;;
96;; -L DIRNAME Add DIRNAME to load-path
97;; -directory DIRNAME
98;; --directory DIRNAME
99;;
100;; -l FILE Load and execute the Emacs lisp code
101;; -load FILE in FILE.
102;; --load FILE
103;;
104;; -f FUNC Execute Emacs lisp function FUNC with
105;; -funcall FUNC no arguments. The "-e" form is outdated
106;; --funcall FUNC and should not be used. (It's a typo
107;; -e FUNC promoted to a feature.)
108;;
955093c9
EN
109;; -eval FORM Execute Emacs lisp form FORM.
110;; --eval FORM
dc2cd811
GM
111;; -execute EXPR
112;; --execute EXPR
e6b75e30 113;;
ab30fc8a
RS
114;; -insert FILE Insert the contents of FILE into buffer.
115;; --insert FILE
116;; -------------------------
117;; -kill Kill (exit) Emacs right away.
118;; --kill
119;; -------------------------
a726e0d1 120
630cc463
ER
121;;; Code:
122
a726e0d1
JB
123(setq top-level '(normal-top-level))
124
42a3e6fa 125(defvar command-line-processed nil
2879a13b 126 "Non-nil once command line has been processed.")
a726e0d1 127
42a3e6fa
RS
128(defgroup initialization nil
129 "Emacs start-up procedure"
130 :group 'internal)
131
132(defcustom inhibit-startup-message nil
1d7da582 133 "*Non-nil inhibits the initial startup message.
a726e0d1 134This is for use in your personal init file, once you are familiar
42a3e6fa
RS
135with the contents of the startup message."
136 :type 'boolean
137 :group 'initialization)
a726e0d1 138
42a3e6fa 139(defcustom inhibit-startup-echo-area-message nil
1d7da582 140 "*Non-nil inhibits the initial startup echo area message.
42a3e6fa
RS
141Setting this variable takes effect
142only if you do it with the customization buffer
94487c4e 143or if your `.emacs' file contains a line of this form:
54a003f7 144 (setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\")
e5575c06
RS
145If your `.emacs' file is byte-compiled, use the following form instead:
146 (eval '(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\"))
1d7da582 147Thus, someone else using a copy of your `.emacs' file will see
42a3e6fa
RS
148the startup message unless he personally acts to inhibit it."
149 :type '(choice (const :tag "Don't inhibit")
150 (string :tag "Enter your user name, to inhibit"))
151 :group 'initialization)
1d7da582 152
42a3e6fa
RS
153(defcustom inhibit-default-init nil
154 "*Non-nil inhibits loading the `default' library."
155 :type 'boolean
156 :group 'initialization)
a726e0d1 157
802a980a
GM
158(defcustom inhibit-startup-buffer-menu nil
159 "*Non-nil inhibits display of buffer list when more than 2 files are loaded."
160 :type 'boolean
161 :group 'initialization)
162
d7fa5aa2 163(defvar command-switch-alist nil
a726e0d1
JB
164 "Alist of command-line switches.
165Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
166HANDLER-FUNCTION receives switch name as sole arg;
167remaining command-line args are in the variable `command-line-args-left'.")
168
860befc8
RS
169(defvar command-line-args-left nil
170 "List of command-line args not yet processed.")
171
a726e0d1
JB
172(defvar command-line-functions nil ;; lrs 7/31/89
173 "List of functions to process unrecognized command-line arguments.
174Each function should access the dynamically bound variables
b4484ea8 175`argi' (the current argument) and `command-line-args-left' (the remaining
a726e0d1 176arguments). The function should return non-nil only if it recognizes and
b4484ea8
RS
177processes `argi'. If it does so, it may consume successive arguments by
178altering `command-line-args-left' to remove them.")
a726e0d1 179
09a1077c
RS
180(defvar command-line-default-directory nil
181 "Default directory to use for command line arguments.
182This is normally copied from `default-directory' when Emacs starts.")
183
b3afdeb8
RS
184;;; This is here, rather than in x-win.el, so that we can ignore these
185;;; options when we are not using X.
46cfd295 186(defconst command-line-x-option-alist
b3afdeb8
RS
187 '(("-bw" 1 x-handle-numeric-switch border-width)
188 ("-d" 1 x-handle-display)
189 ("-display" 1 x-handle-display)
5676ab57 190 ("-name" 1 x-handle-name-switch)
2c3fef40
RS
191 ("-title" 1 x-handle-switch title)
192 ("-T" 1 x-handle-switch title)
b3afdeb8
RS
193 ("-r" 0 x-handle-switch reverse t)
194 ("-rv" 0 x-handle-switch reverse t)
195 ("-reverse" 0 x-handle-switch reverse t)
196 ("-reverse-video" 0 x-handle-switch reverse t)
197 ("-fn" 1 x-handle-switch font)
198 ("-font" 1 x-handle-switch font)
199 ("-ib" 1 x-handle-numeric-switch internal-border-width)
1f7f78f1 200 ("-g" 1 x-handle-geometry)
9ff6bda1 201 ("-lsp" 1 x-handle-numeric-switch line-spacing)
1f7f78f1 202 ("-geometry" 1 x-handle-geometry)
b3afdeb8
RS
203 ("-fg" 1 x-handle-switch foreground-color)
204 ("-foreground" 1 x-handle-switch foreground-color)
205 ("-bg" 1 x-handle-switch background-color)
206 ("-background" 1 x-handle-switch background-color)
207 ("-ms" 1 x-handle-switch mouse-color)
208 ("-itype" 0 x-handle-switch icon-type t)
209 ("-i" 0 x-handle-switch icon-type t)
210 ("-iconic" 0 x-handle-iconic)
211 ("-xrm" 1 x-handle-xrm-switch)
212 ("-cr" 1 x-handle-switch cursor-color)
213 ("-vb" 0 x-handle-switch vertical-scroll-bars t)
214 ("-hb" 0 x-handle-switch horizontal-scroll-bars t)
215 ("-bd" 1 x-handle-switch)
216 ("--border-width" 1 x-handle-numeric-switch border-width)
217 ("--display" 1 x-handle-display)
5676ab57 218 ("--name" 1 x-handle-name-switch)
7775acb8 219 ("--title" 1 x-handle-switch title)
b3afdeb8
RS
220 ("--reverse-video" 0 x-handle-switch reverse t)
221 ("--font" 1 x-handle-switch font)
222 ("--internal-border" 1 x-handle-numeric-switch internal-border-width)
1f7f78f1 223 ("--geometry" 1 x-handle-geometry)
b3afdeb8
RS
224 ("--foreground-color" 1 x-handle-switch foreground-color)
225 ("--background-color" 1 x-handle-switch background-color)
226 ("--mouse-color" 1 x-handle-switch mouse-color)
227 ("--icon-type" 0 x-handle-switch icon-type t)
228 ("--iconic" 0 x-handle-iconic)
229 ("--xrm" 1 x-handle-xrm-switch)
230 ("--cursor-color" 1 x-handle-switch cursor-color)
231 ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t)
9ff6bda1 232 ("--line-spacing" 1 x-handle-numeric-switch line-spacing)
b3afdeb8
RS
233 ("--border-color" 1 x-handle-switch border-width))
234 "Alist of X Windows options.
235Each element has the form
236 (NAME NUMARGS HANDLER FRAME-PARAM VALUE)
237where NAME is the option name string, NUMARGS is the number of arguments
238that the option accepts, HANDLER is a function to call to handle the option.
239FRAME-PARAM (optional) is the frame parameter this option specifies,
240and VALUE is the value which is given to that frame parameter
241\(most options use the argument for this, so VALUE is not present).")
242
e3bd99f5 243(defvar before-init-hook nil
db3f571a 244 "Normal hook run after handling urgent options but before loading init files.")
3fc958a4 245
e3bd99f5 246(defvar after-init-hook nil
db3f571a
KH
247 "Normal hook run after loading the init files, `~/.emacs' and `default.el'.
248There is no `condition-case' around the running of these functions;
249therefore, if you set `debug-on-error' non-nil in `.emacs',
250an error in one of these functions will invoke the debugger.")
251
252(defvar emacs-startup-hook nil
253 "Normal hook run after loading init files and handling the command line.")
e3bd99f5 254
a726e0d1 255(defvar term-setup-hook nil
db3f571a
KH
256 "Normal hook run after loading terminal-specific Lisp code.
257It also follows `emacs-startup-hook'. This hook exists for users to set,
a726e0d1
JB
258so as to override the definitions made by the terminal-specific file.
259Emacs never sets this variable itself.")
260
261(defvar keyboard-type nil
b4484ea8
RS
262 "The brand of keyboard you are using.
263This variable is used to define
a726e0d1 264the proper function and keypad keys for use under X. It is used in a
94487c4e 265fashion analogous to the environment variable TERM.")
a726e0d1
JB
266
267(defvar window-setup-hook nil
b4484ea8
RS
268 "Normal hook run to initialize window system display.
269Emacs runs this hook after processing the command line arguments and loading
270the user's init file.")
a726e0d1 271
42a3e6fa
RS
272(defcustom initial-major-mode 'lisp-interaction-mode
273 "Major mode command symbol to use for the initial *scratch* buffer."
ce2f921e 274 :type 'function
42a3e6fa 275 :group 'initialization)
a726e0d1 276
42a3e6fa 277(defcustom init-file-user nil
a726e0d1 278 "Identity of user whose `.emacs' file is or was read.
d7fa5aa2
RS
279The value is nil if `-q' or `--no-init-file' was specified,
280meaning do not load any init file.
281
282Otherwise, the value may be the null string, meaning use the init file
283for the user that originally logged in, or it may be a
284string containing a user's name meaning use that person's init file.
a726e0d1 285
2bdfaa42
KH
286In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
287evaluates to the name of the directory where the `.emacs' file was
13fce4e6
RS
288looked for.
289
290Setting `init-file-user' does not prevent Emacs from loading
42a3e6fa
RS
291`site-start.el'. The only way to do that is to use `--no-site-file'."
292 :type '(choice (const :tag "none" nil) string)
293 :group 'initialization)
a726e0d1 294
42a3e6fa 295(defcustom site-run-file "site-start"
b7444d31
RS
296 "File containing site-wide run-time initializations.
297This file is loaded at run-time before `~/.emacs'. It contains inits
298that need to be in place for the entire site, but which, due to their
299higher incidence of change, don't make sense to load into emacs'
300dumped image. Thus, the run-time load order is: 1. file described in
13fce4e6
RS
301this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.
302
303Don't use the `site-start.el' file for things some users may not like.
304Put them in `default.el' instead, so that users can more easily
305override them. Users can prevent loading `default.el' with the `-q'
306option or by setting `inhibit-default-init' in their own init files,
307but inhibiting `site-start.el' requires `--no-site-file', which
42a3e6fa 308is less convenient."
93812130 309 :type '(choice (const :tag "none" nil) string)
42a3e6fa 310 :group 'initialization)
b7444d31 311
42a3e6fa
RS
312(defcustom mail-host-address nil
313 "*Name of this machine, for purposes of naming users."
314 :type '(choice (const nil) string)
315 :group 'mail)
c13fbb62 316
42a3e6fa 317(defcustom user-mail-address nil
452e9090
RS
318 "*Full mailing address of this user.
319This is initialized based on `mail-host-address',
42a3e6fa
RS
320after your init file is read, in case it sets `mail-host-address'."
321 :type 'string
322 :group 'mail)
c10d1f06 323
42a3e6fa 324(defcustom auto-save-list-file-prefix
73f13e5a
GM
325 (cond ((eq system-type 'ms-dos)
326 ;; MS-DOS cannot have initial dot, and allows only 8.3 names
4b33deaa 327 "~/_emacs.d/auto-save.list/_s")
73f13e5a
GM
328 (t
329 "~/.emacs.d/auto-save-list/.saves-"))
cdee38c3
KH
330 "Prefix for generating `auto-save-list-file-name'.
331This is used after reading your `.emacs' file to initialize
332`auto-save-list-file-name', by appending Emacs's pid and the system name,
333if you have not already set `auto-save-list-file-name' yourself.
73f13e5a 334Directories in the prefix will be created if necessary.
cdee38c3 335Set this to nil if you want to prevent `auto-save-list-file-name'
42a3e6fa 336from being initialized."
3671f444
KH
337 :type '(choice (const :tag "Don't record a session's auto save list" nil)
338 string)
42a3e6fa 339 :group 'auto-save)
2e05d063 340
a726e0d1
JB
341(defvar init-file-debug nil)
342
52320897
RS
343(defvar init-file-had-error nil)
344
95eada65
RS
345(defvar normal-top-level-add-subdirs-inode-list nil)
346
859e15c1 347(defun normal-top-level-add-subdirs-to-load-path ()
0412d833
RS
348 "Add all subdirectories of current directory to `load-path'.
349More precisely, this uses only the subdirectories whose names
f734a13e
DL
350start with letters or digits; it excludes any subdirectory named `RCS'
351or `CVS', and any subdirectory that contains a file named `.nosearch'."
859e15c1 352 (let (dirs
95eada65 353 attrs
859e15c1
KH
354 (pending (list default-directory)))
355 ;; This loop does a breadth-first tree walk on DIR's subtree,
356 ;; putting each subdir into DIRS as its contents are examined.
357 (while pending
4e0a3971 358 (push (pop pending) dirs)
722a451d
EZ
359 (let* ((this-dir (car dirs))
360 (contents (directory-files this-dir))
361 (default-directory this-dir)
362 (canonicalized (and (eq system-type 'windows-nt)
363 (untranslated-canonical-name this-dir))))
364 ;; The Windows version doesn't report meaningful inode
365 ;; numbers, so use the canonicalized absolute file name of the
366 ;; directory instead.
367 (setq attrs (or canonicalized
368 (nthcdr 10 (file-attributes this-dir))))
95eada65 369 (unless (member attrs normal-top-level-add-subdirs-inode-list)
4e0a3971
SM
370 (push attrs normal-top-level-add-subdirs-inode-list)
371 (dolist (file contents)
c4a40544 372 ;; The lower-case variants of RCS and CVS are for DOS/Windows.
4e0a3971
SM
373 (unless (member file '("." ".." "RCS" "CVS" "rcs" "cvs"))
374 (when (and (string-match "\\`[[:alnum:]]" file)
9d1fb179
RS
375 ;; Avoid doing a `stat' when it isn't necessary
376 ;; because that can cause trouble when an NFS server
377 ;; is down.
4e0a3971
SM
378 (not (string-match "\\.elc?\\'" file))
379 (file-directory-p file))
380 (let ((expanded (expand-file-name file)))
95eada65
RS
381 (unless (file-exists-p (expand-file-name ".nosearch"
382 expanded))
4e0a3971 383 (setq pending (nconc pending (list expanded)))))))))))
bb15e81a 384 (normal-top-level-add-to-load-path (cdr (nreverse dirs)))))
859e15c1 385
537b6e4e
RS
386;; This function is called from a subdirs.el file.
387;; It assumes that default-directory is the directory
388;; in which the subdirs.el file exists,
389;; and it adds to load-path the subdirs of that directory
390;; as specified in DIRS. Normally the elements of DIRS are relative.
e87a7309 391(defun normal-top-level-add-to-load-path (dirs)
cd1c10f6
RS
392 (let ((tail load-path)
393 (thisdir (directory-file-name default-directory)))
394 (while (and tail
138e541f
GM
395 ;;Don't go all the way to the nil terminator.
396 (cdr tail)
cd1c10f6
RS
397 (not (equal thisdir (car tail)))
398 (not (and (memq system-type '(ms-dos windows-nt))
399 (equal (downcase thisdir) (downcase (car tail))))))
400 (setq tail (cdr tail)))
138e541f
GM
401 ;;Splice the new section in.
402 (when tail
403 (setcdr tail (append (mapcar 'expand-file-name dirs) (cdr tail))))))
e87a7309 404
a726e0d1
JB
405(defun normal-top-level ()
406 (if command-line-processed
407 (message "Back to top level.")
408 (setq command-line-processed t)
8d4c2221
RS
409 ;; Give *Messages* the same default-directory as *scratch*,
410 ;; just to keep things predictable.
411 (let ((dir default-directory))
412 (save-excursion
413 (set-buffer (get-buffer "*Messages*"))
414 (setq default-directory dir)))
80d71556
KH
415 ;; For root, preserve owner and group when editing files.
416 (if (equal (user-uid) 0)
417 (setq backup-by-copying-when-mismatch t))
e87a7309
RS
418 ;; Look in each dir in load-path for a subdirs.el file.
419 ;; If we find one, load it, which will add the appropriate subdirs
420 ;; of that dir into load-path,
357438eb
KH
421 ;; Look for a leim-list.el file too. Loading it will register
422 ;; available input methods.
e87a7309
RS
423 (let ((tail load-path)
424 new)
425 (while tail
4e0a3971 426 (push (car tail) new)
bbfc7591
GM
427 (condition-case nil
428 (let ((default-directory (car tail)))
429 (load (expand-file-name "subdirs.el" (car tail)) t t t)))
357438eb
KH
430 (condition-case nil
431 (let ((default-directory (car tail)))
432 (load (expand-file-name "leim-list.el" (car tail)) t t t)))
e87a7309 433 (setq tail (cdr tail))))
ffd56f97 434 (if (not (eq system-type 'vax-vms))
a4b33896
JB
435 (progn
436 ;; If the PWD environment variable isn't accurate, delete it.
437 (let ((pwd (getenv "PWD")))
438 (and (stringp pwd)
439 ;; Use FOO/., so that if FOO is a symlink, file-attributes
440 ;; describes the directory linked to, not FOO itself.
441 (or (equal (file-attributes
442 (concat (file-name-as-directory pwd) "."))
443 (file-attributes
444 (concat (file-name-as-directory default-directory)
445 ".")))
446 (setq process-environment
447 (delete (concat "PWD=" pwd)
448 process-environment)))))))
492878e4 449 (setq default-directory (abbreviate-file-name default-directory))
6f2c86fa
KH
450 (let ((menubar-bindings-done nil))
451 (unwind-protect
452 (command-line)
453 ;; Do this again, in case .emacs defined more abbreviations.
454 (setq default-directory (abbreviate-file-name default-directory))
b3c7c12c
RS
455 ;; Specify the file for recording all the auto save files of this session.
456 ;; This is used by recover-session.
cdee38c3
KH
457 (or auto-save-list-file-name
458 (and auto-save-list-file-prefix
459 (setq auto-save-list-file-name
1f7f78f1
RS
460 ;; Under MS-DOS our PID is almost always reused between
461 ;; Emacs invocations. We need something more unique.
4b33deaa
EZ
462 (cond ((eq system-type 'ms-dos)
463 ;; We are going to access the auto-save
464 ;; directory, so make sure it exists.
465 (make-directory
466 (file-name-directory auto-save-list-file-prefix)
467 t)
468 (concat
469 (make-temp-name
470 (expand-file-name
471 auto-save-list-file-prefix))
472 "~"))
473 (t
474 (expand-file-name
475 (format "%s%d-%s~"
476 auto-save-list-file-prefix
477 (emacs-pid)
478 (system-name))))))))
6f2c86fa
KH
479 (run-hooks 'emacs-startup-hook)
480 (and term-setup-hook
481 (run-hooks 'term-setup-hook))
6a1e7d67
GM
482
483 ;; Don't do this if we failed to create the initial frame,
484 ;; for instance due to a dense colormap.
538ef02a
GM
485 (when (or frame-initial-frame
486 ;; If frame-initial-frame has no meaning, do this anyway.
487 (not (and window-system
488 (not noninteractive)
489 (not (eq window-system 'pc)))))
6a1e7d67
GM
490 ;; Modify the initial frame based on what .emacs puts into
491 ;; ...-frame-alist.
492 (if (fboundp 'frame-notice-user-settings)
493 (frame-notice-user-settings))
494 (if (fboundp 'frame-set-background-mode)
495 ;; Set the faces for the initial background mode even if
496 ;; frame-notice-user-settings didn't (such as on a tty).
497 ;; frame-set-background-mode is idempotent, so it won't
498 ;; cause any harm if it's already been done.
499 (let ((frame-background-mode frame-background-mode)
500 (frame (selected-frame))
501 term)
502 (when (and (null window-system)
503 ;; Don't override a possibly customized value.
504 (null frame-background-mode)
505 ;; Don't override user specifications.
506 (null (frame-parameter frame 'reverse))
507 (let ((bg (frame-parameter frame 'background-color)))
508 (or (null bg)
509 (member bg '(unspecified "unspecified-bg")))))
510 (setq term (getenv "TERM"))
511 (if (string-match "^\\(xterm\\|rxvt\\|dtterm\\|eterm\\)"
512 term)
513 (setq frame-background-mode 'light)))
514 (frame-set-background-mode (selected-frame)))))
13ab33c4 515
6f2c86fa
KH
516 ;; Now we know the user's default font, so add it to the menu.
517 (if (fboundp 'font-menu-add-default)
518 (font-menu-add-default))
519 (and window-setup-hook
520 (run-hooks 'window-setup-hook))
521 (or menubar-bindings-done
66c24e1e
EZ
522 (if (display-popup-menus-p)
523 (precompute-menubar-bindings)))))))
6f2c86fa
KH
524
525;; Precompute the keyboard equivalents in the menu bar items.
526(defun precompute-menubar-bindings ()
365636dc
RS
527 (let ((submap (lookup-key global-map [menu-bar])))
528 (while submap
529 (and (consp (car submap))
530 (symbolp (car (car submap)))
531 (stringp (car-safe (cdr (car submap))))
532 (keymapp (cdr (cdr (car submap))))
a18042d7
RS
533 (progn
534 (x-popup-menu nil (cdr (cdr (car submap))))
535 (if purify-flag
536 (garbage-collect))))
365636dc 537 (setq submap (cdr submap))))
5b61c6a7 538 (setq define-key-rebound-commands t))
a726e0d1 539
c381f482
EZ
540;; Command-line options supported by tty's:
541(defconst tty-long-option-alist
542 '(("--name" . "-name")
543 ("--title" . "-T")
544 ("--reverse-video" . "-reverse")
545 ("--foreground-color" . "-fg")
546 ("--background-color" . "-bg")))
547
b66b6aeb
GM
548(defconst tool-bar-images-pixel-height 24
549 "Height in pixels of images in the tool bar.")
550
3a55d3d0
JR
551(defvar tool-bar-originally-present nil
552 "Non-nil if tool-bars are present before user and site init files are read.")
553
c381f482
EZ
554;; Handle the X-like command line parameters "-fg", "-bg", "-name", etc.
555(defun tty-handle-args (args)
556 (let ((rest nil))
557 (message "%s" args)
558 (while (and args
559 (not (equal (car args) "--")))
560 (let* ((this (car args))
561 (orig-this this)
562 completion argval)
563 (setq args (cdr args))
564 ;; Check for long options with attached arguments
565 ;; and separate out the attached option argument into argval.
566 (if (string-match "^--[^=]*=" this)
567 (setq argval (substring this (match-end 0))
568 this (substring this 0 (1- (match-end 0)))))
569 (when (string-match "^--" this)
570 (setq completion (try-completion this tty-long-option-alist))
571 (if (eq completion t)
572 ;; Exact match for long option.
573 (setq this (cdr (assoc this tty-long-option-alist)))
574 (if (stringp completion)
575 (let ((elt (assoc completion tty-long-option-alist)))
576 ;; Check for abbreviated long option.
577 (or elt
578 (error "Option `%s' is ambiguous" this))
579 (setq this (cdr elt)))
580 ;; Check for a short option.
581 (setq argval nil this orig-this))))
582 (cond ((or (string= this "-fg") (string= this "-foreground"))
583 (or argval (setq argval (car args) args (cdr args)))
584 (setq default-frame-alist
585 (cons (cons 'foreground-color argval)
586 default-frame-alist)))
587 ((or (string= this "-bg") (string= this "-background"))
588 (or argval (setq argval (car args) args (cdr args)))
589 (setq default-frame-alist
590 (cons (cons 'background-color argval)
591 default-frame-alist)))
592 ((or (string= this "-T") (string= this "-name"))
593 (or argval (setq argval (car args) args (cdr args)))
594 (setq default-frame-alist
595 (cons
596 (cons 'title
597 (if (stringp argval)
598 argval
599 (let ((case-fold-search t)
600 i)
601 (setq argval (invocation-name))
602
603 ;; Change any . or * characters in name to
604 ;; hyphens, so as to emulate behavior on X.
605 (while
606 (setq i (string-match "[.*]" argval))
607 (aset argval i ?-))
608 argval)))
609 default-frame-alist)))
610 ((or (string= this "-r")
611 (string= this "-rv")
612 (string= this "-reverse"))
613 (setq default-frame-alist
614 (cons '(reverse . t)
615 default-frame-alist)))
616 (t (setq rest (cons this rest))))))
617 (nreverse rest)))
618
a726e0d1 619(defun command-line ()
09a1077c
RS
620 (setq command-line-default-directory default-directory)
621
849eedba
RS
622 ;; Choose a reasonable location for temporary files.
623 (setq temporary-file-directory
624 (file-name-as-directory
625 (cond ((memq system-type '(ms-dos windows-nt))
626 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
627 ((memq system-type '(vax-vms axp-vms))
628 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
629 (t
630 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp")))))
607f86f5
EZ
631 (setq small-temporary-file-directory
632 (if (eq system-type 'ms-dos)
f5568df0 633 (getenv "TMPDIR")))
849eedba 634
74f2ab06 635 ;; See if we should import version-control from the environment variable.
a726e0d1
JB
636 (let ((vc (getenv "VERSION_CONTROL")))
637 (cond ((eq vc nil)) ;don't do anything if not set
638 ((or (string= vc "t")
639 (string= vc "numbered"))
640 (setq version-control t))
641 ((or (string= vc "nil")
642 (string= vc "existing"))
643 (setq version-control nil))
644 ((or (string= vc "never")
645 (string= vc "simple"))
646 (setq version-control 'never))))
647
79058860
JB
648 ;;! This has been commented out; I currently find the behavior when
649 ;;! split-window-keep-point is nil disturbing, but if I can get used
650 ;;! to it, then it would be better to eliminate the option.
651 ;;! ;; Choose a good default value for split-window-keep-point.
652 ;;! (setq split-window-keep-point (> baud-rate 2400))
f35fe3c6 653
d4308a4d
EZ
654 ;; Set the default strings to display in mode line for
655 ;; end-of-line formats that aren't native to this platform.
656 (cond
657 ((memq system-type '(ms-dos windows-nt emx))
658 (setq eol-mnemonic-unix "(Unix)")
659 (setq eol-mnemonic-mac "(Mac)"))
660 ;; Mac-specific settings should come here, once there's a
661 ;; system-type symbol specific to MacOS.
662 (t ; this is for Unix/GNU/Linux systems
663 (setq eol-mnemonic-dos "(DOS)")
664 (setq eol-mnemonic-mac "(Mac)")))
665
a726e0d1 666 ;; Read window system's init file if using a window system.
1ed14cfd
RS
667 (condition-case error
668 (if (and window-system (not noninteractive))
669 (load (concat term-file-prefix
670 (symbol-name window-system)
671 "-win")
672 ;; Every window system should have a startup file;
673 ;; barf if we can't find it.
674 nil t))
675 ;; If we can't read it, print the error message and exit.
676 (error
2677ad61
RS
677 (princ
678 (if (eq (car error) 'error)
679 (apply 'concat (cdr error))
680 (if (memq 'file-error (get (car error) 'error-conditions))
681 (format "%s: %s"
682 (nth 1 error)
ffaf8bbb 683 (mapconcat (lambda (obj) (prin1-to-string obj t))
2677ad61
RS
684 (cdr (cdr error)) ", "))
685 (format "%s: %s"
686 (get (car error) 'error-message)
ffaf8bbb 687 (mapconcat (lambda (obj) (prin1-to-string obj t))
2677ad61
RS
688 (cdr error) ", "))))
689 'external-debugging-output)
27f5188c 690 (terpri 'external-debugging-output)
2677ad61 691 (setq window-system nil)
1ed14cfd 692 (kill-emacs)))
a726e0d1 693
c381f482
EZ
694 ;; Windowed displays do this inside their *-win.el.
695 (when (and (not (display-graphic-p))
696 (not noninteractive))
697 (setq command-line-args (tty-handle-args command-line-args)))
698
640a9cdd
JR
699 (set-locale-environment nil)
700
03e3c30a
JB
701 (let ((done nil)
702 (args (cdr command-line-args)))
703
a726e0d1
JB
704 ;; Figure out which user's init file to load,
705 ;; either from the environment or from the options.
706 (setq init-file-user (if noninteractive nil (user-login-name)))
707 ;; If user has not done su, use current $HOME to find .emacs.
708 (and init-file-user (string= init-file-user (user-real-login-name))
709 (setq init-file-user ""))
03e3c30a
JB
710
711 ;; Process the command-line args, and delete the arguments
712 ;; processed. This is consistent with the way main in emacs.c
713 ;; does things.
a726e0d1 714 (while (and (not done) args)
096b7031 715 (let ((longopts '(("--no-init-file") ("--no-site-file") ("--user")
a360cae9 716 ("--debug-init") ("--iconic") ("--icon-type")))
4e0a3971 717 (argi (pop args))
096b7031 718 (argval nil))
452e9090
RS
719 ;; Handle --OPTION=VALUE format.
720 (if (and (string-match "\\`--" argi)
721 (string-match "=" argi))
a981e7ff
KH
722 (setq argval (substring argi (match-end 0))
723 argi (substring argi 0 (match-beginning 0))))
f7ad212d
RS
724 (or (equal argi "--")
725 (let ((completion (try-completion argi longopts)))
726 (if (eq completion t)
727 (setq argi (substring argi 1))
728 (if (stringp completion)
729 (let ((elt (assoc completion longopts)))
730 (or elt
731 (error "Option `%s' is ambiguous" argi))
732 (setq argi (substring (car elt) 1)))
733 (setq argval nil)))))
a726e0d1 734 (cond
4e0a3971
SM
735 ((member argi '("-q" "-no-init-file"))
736 (setq init-file-user nil))
737 ((member argi '("-u" "-user"))
096b7031 738 (or argval
4e0a3971 739 (setq argval (pop args)))
096b7031 740 (setq init-file-user argval
4e0a3971 741 argval nil))
b7444d31 742 ((string-equal argi "-no-site-file")
4e0a3971 743 (setq site-run-file nil))
a726e0d1 744 ((string-equal argi "-debug-init")
4e0a3971 745 (setq init-file-debug t))
a360cae9 746 ((string-equal argi "-iconic")
4e0a3971 747 (push '(visibility . icon) initial-frame-alist))
a360cae9
RS
748 ((or (string-equal argi "-icon-type")
749 (string-equal argi "-i")
750 (string-equal argi "-itype"))
4e0a3971
SM
751 (push '(icon-type . t) default-frame-alist))
752 ;; Push the popped arg back on the list of arguments.
753 (t (push argi args) (setq done t)))
096b7031
KH
754 ;; Was argval set but not used?
755 (and argval
756 (error "Option `%s' doesn't allow an argument" argi))))
757
03e3c30a 758 ;; Re-attach the program name to the front of the arg list.
4048e56d 759 (and command-line-args (setcdr command-line-args args)))
a726e0d1 760
c722566c 761 ;; Under X Windows, this creates the X frame and deletes the terminal frame.
14f16b9c
GM
762 (when (fboundp 'frame-initialize)
763 (frame-initialize))
764
1fe0333f 765 ;; If frame was created with a menu bar, set menu-bar-mode on.
ffaf8bbb
SM
766 (if (and (not noninteractive)
767 (or (not (memq window-system '(x w32)))
4e0a3971 768 (> (frame-parameter nil 'menu-bar-lines) 0)))
1fe0333f 769 (menu-bar-mode t))
c722566c 770
7d1eb6a4
GM
771 ;; If frame was created with a tool bar, switch tool-bar-mode on.
772 (when (and (not noninteractive)
66c24e1e 773 (display-graphic-p)
7d1eb6a4 774 (> (frame-parameter nil 'tool-bar-lines) 0))
b66b6aeb 775 (tool-bar-mode 1))
7d1eb6a4 776
6753393b
GM
777 ;; Can't do this init in defcustom because window-system isn't set.
778 (when (and (not noninteractive)
779 (not (eq system-type 'ms-dos))
780 (memq window-system '(x w32)))
781 (setq-default blink-cursor t)
782 (blink-cursor-mode 1))
783
3ecd8ad0
GM
784 (unless noninteractive
785 ;; DOS/Windows systems have a PC-type keyboard which has both
786 ;; <delete> and <backspace> keys.
787 (when (or (memq system-type '(ms-dos windows-nt))
788 (and (memq window-system '(x))
789 (fboundp 'x-backspace-delete-keys-p)
7360b8aa
GM
790 (x-backspace-delete-keys-p))
791 ;; If the terminal Emacs is running on has erase char
792 ;; set to ^H, use the Backspace key for deleting
793 ;; backward and, and the Delete key for deleting forward.
794 (and (null window-system)
795 (eq tty-erase-char 8)))
d8e17bc6
EZ
796 (setq-default normal-erase-is-backspace t)
797 (normal-erase-is-backspace-mode 1)))
14f076a8 798
3b73087e
GM
799 (when (and (not noninteractive)
800 (display-graphic-p)
801 (fboundp 'x-show-tip))
802 (setq-default tooltip-mode t)
803 (tooltip-mode 1))
804
1592c1ef
EZ
805 ;; Register default TTY colors for the case the terminal hasn't a
806 ;; terminal init file.
807 (or (memq window-system '(x w32))
808 (not (tty-display-color-p))
809 (let* ((colors (cond ((eq window-system 'pc)
810 msdos-color-values)
811 ((eq system-type 'windows-nt)
812 w32-tty-standard-colors)
813 (t tty-standard-colors)))
814 (color (car colors)))
815 (while colors
816 (tty-color-define (car color) (cadr color) (cddr color))
817 (setq colors (cdr colors) color (car colors)))
818 ;; Modifying color mappings means realized faces don't
819 ;; use the right colors, so clear them.
820 (clear-face-cache)))
821
3a55d3d0
JR
822 ;; Record whether the tool-bar is present before the user and site
823 ;; init files are processed. frame-notice-user-settings uses this
824 ;; to determine if the tool-bar has been disabled by the init files,
825 ;; and the frame needs to be resized.
826 (when (fboundp 'frame-notice-user-settings)
827 (let ((tool-bar-lines (or (assq 'tool-bar-lines initial-frame-alist)
828 (assq 'tool-bar-lines default-frame-alist))))
829 (setq tool-bar-originally-present
830 (not (or (null tool-bar-lines)
831 (null (cdr tool-bar-lines))
6811051d 832 (eq 0 (cdr tool-bar-lines)))))))
3a55d3d0 833
752ef254
GM
834 (let ((old-scalable-fonts-allowed scalable-fonts-allowed)
835 (old-font-list-limit font-list-limit)
836 (old-face-ignored-fonts face-ignored-fonts))
837
838 (run-hooks 'before-init-hook)
839
840 ;; Run the site-start library if it exists. The point of this file is
841 ;; that it is run before .emacs. There is no point in doing this after
842 ;; .emacs; that is useless.
843 (if site-run-file
844 (load site-run-file t t))
845
846 ;; Sites should not disable this. Only individuals should disable
847 ;; the startup message.
848 (setq inhibit-startup-message nil)
849
850 ;; Load that user's init file, or the default one, or none.
851 (let (debug-on-error-from-init-file
852 debug-on-error-should-be-set
853 (debug-on-error-initial
854 (if (eq init-file-debug t) 'startup init-file-debug))
855 (orig-enable-multibyte default-enable-multibyte-characters))
856 (let ((debug-on-error debug-on-error-initial)
857 ;; This function actually reads the init files.
858 (inner
859 (function
860 (lambda ()
861 (if init-file-user
862 (let ((user-init-file-1
4e0a3971 863 (cond
752ef254
GM
864 ((eq system-type 'ms-dos)
865 (concat "~" init-file-user "/_emacs"))
866 ((eq system-type 'windows-nt)
867 (if (directory-files "~" nil "^\\.emacs\\(\\.elc?\\)?$")
868 "~/.emacs"
869 "~/_emacs"))
870 ((eq system-type 'vax-vms)
871 "sys$login:.emacs")
4e0a3971 872 (t
752ef254
GM
873 (concat "~" init-file-user "/.emacs")))))
874 ;; This tells `load' to store the file name found
875 ;; into user-init-file.
876 (setq user-init-file t)
877 (load user-init-file-1 t t)
878
879 ;; If we did not find the user's init file,
880 ;; set user-init-file conclusively to nil;
881 ;; don't let it be set from default.el.
882 (if (eq user-init-file t)
4e0a3971 883 (setq user-init-file user-init-file-1))
752ef254
GM
884
885 ;; If we loaded a compiled file, set
886 ;; `user-init-file' to the source version if that
887 ;; exists.
888 (when (and user-init-file
889 (equal (file-name-extension user-init-file)
890 "elc"))
891 (let* ((source (file-name-sans-extension user-init-file))
892 (alt (concat source ".el")))
893 (setq source (cond ((file-exists-p alt) alt)
894 ((file-exists-p source) source)
895 (t nil)))
896 (when source
897 (when (file-newer-than-file-p source user-init-file)
898 (message "Warning: %s is newer than %s"
899 source user-init-file)
900 (sit-for 1))
901 (setq user-init-file source))))
902
903 (or inhibit-default-init
904 (let ((inhibit-startup-message nil))
905 ;; Users are supposed to be told their rights.
906 ;; (Plus how to get help and how to undo.)
907 ;; Don't you dare turn this off for anyone
908 ;; except yourself.
909 (load "default" t t)))))))))
910 (if init-file-debug
911 ;; Do this without a condition-case if the user wants to debug.
912 (funcall inner)
913 (condition-case error
914 (progn
915 (funcall inner)
916 (setq init-file-had-error nil))
917 (error
918 (let ((message-log-max nil))
919 (save-excursion
920 (set-buffer (get-buffer-create "*Messages*"))
921 (insert "\n\n"
922 (format "An error has occurred while loading `%s':\n\n"
923 user-init-file)
924 (format "%s%s%s"
925 (get (car error) 'error-message)
926 (if (cdr error) ": " "")
927 (mapconcat 'prin1-to-string (cdr error) ", "))
928 "\n\n"
929 "To ensure normal operation, you should investigate the cause\n"
930 "of the error in your initialization file and remove it. Start\n"
931 "Emacs with the `--debug-init' option to view a complete error\n"
932 "backtrace\n"))
933 (message "Error in init file: %s%s%s"
934 (get (car error) 'error-message)
935 (if (cdr error) ": " "")
936 (mapconcat 'prin1-to-string (cdr error) ", "))
937 (pop-to-buffer "*Messages*")
938 (setq init-file-had-error t)))))
ac3186fd
RS
939
940 ;; If the user has a file of abbrevs, read it.
941 (if (file-exists-p abbrev-file-name)
942 (quietly-read-abbrev-file abbrev-file-name))
943
70b199c3
RS
944 ;; If the abbrevs came entirely from the init file or the
945 ;; abbrevs file, they do not need saving.
946 (setq abbrevs-changed nil)
947
752ef254
GM
948 ;; If we can tell that the init file altered debug-on-error,
949 ;; arrange to preserve the value that it set up.
950 (or (eq debug-on-error debug-on-error-initial)
951 (setq debug-on-error-should-be-set t
952 debug-on-error-from-init-file debug-on-error)))
953 (if debug-on-error-should-be-set
954 (setq debug-on-error debug-on-error-from-init-file))
955 (unless (or default-enable-multibyte-characters
956 (eq orig-enable-multibyte default-enable-multibyte-characters))
957 ;; Init file changed to unibyte. Reset existing multibyte
958 ;; buffers (probably *scratch*, *Messages*, *Minibuff-0*).
959 ;; Arguably this should only be done if they're free of
960 ;; multibyte characters.
961 (mapcar (lambda (buffer)
962 (with-current-buffer buffer
963 (if enable-multibyte-characters
964 (set-buffer-multibyte nil))))
965 (buffer-list))
966 ;; Also re-set the language environment in case it was
967 ;; originally done before unibyte was set and is sensitive to
968 ;; unibyte (display table, terminal coding system &c).
969 (set-language-environment current-language-environment)))
970
971 ;; Do this here in case the init file sets mail-host-address.
972 (or user-mail-address
973 (setq user-mail-address (concat (user-login-name) "@"
974 (or mail-host-address
975 (system-name)))))
976
977 ;; If parameter have been changed in the init file which influence
978 ;; face realization, clear the face cache so that new faces will
979 ;; be realized.
980 (unless (and (eq scalable-fonts-allowed old-scalable-fonts-allowed)
981 (eq font-list-limit old-font-list-limit)
982 (eq face-ignored-fonts old-face-ignored-fonts))
983 (clear-face-cache)))
984
e3bd99f5
RM
985 (run-hooks 'after-init-hook)
986
a726e0d1
JB
987 ;; If *scratch* exists and init file didn't change its mode, initialize it.
988 (if (get-buffer "*scratch*")
989 (save-excursion
990 (set-buffer "*scratch*")
991 (if (eq major-mode 'fundamental-mode)
992 (funcall initial-major-mode))))
e724900d 993
a726e0d1
JB
994 ;; Load library for our terminal type.
995 ;; User init file can set term-file-prefix to nil to prevent this.
996 (and term-file-prefix (not noninteractive) (not window-system)
997 (let ((term (getenv "TERM"))
998 hyphend)
999 (while (and term
1000 (not (load (concat term-file-prefix term) t t)))
1001 ;; Strip off last hyphen and what follows, then try again
1002 (if (setq hyphend (string-match "[-_][^-_]+$" term))
1003 (setq term (substring term 0 hyphend))
1004 (setq term nil)))))
1005
03e3c30a 1006 ;; Process the remaining args.
a726e0d1
JB
1007 (command-line-1 (cdr command-line-args))
1008
1009 ;; If -batch, terminate after processing the command options.
1010 (if noninteractive (kill-emacs t)))
1011
46cfd295 1012(defcustom initial-scratch-message (purecopy "\
3b79c219
GM
1013;; This buffer is for notes you don't want to save, and for Lisp evaluation.
1014;; If you want to create a file, visit that file with C-x C-f,
1015;; then enter the text in that file's own buffer.
9fe3219e 1016
46cfd295 1017")
9fe3219e
RS
1018 "Initial message displayed in *scratch* buffer at startup.
1019If this is nil, no message will be displayed."
1020 :type 'string)
1021
ce9ded5d
GM
1022\f
1023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1024;;; Fancy splash screen
1025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1026
1027(defvar fancy-splash-text
26ff68aa 1028 '((:face variable-pitch
926aa0ee 1029 "You can do basic editing with the menu bar and scroll bar \
926aa0ee 1030using the mouse.\n\n"
26ff68aa 1031 :face (variable-pitch :weight bold)
ce9ded5d 1032 "Important Help menu items:\n"
26ff68aa 1033 :face variable-pitch "\
d7618b60 1034Emacs Tutorial\tLearn-by-doing tutorial for using Emacs efficiently
1fc02b3c
GM
1035Emacs FAQ\tFrequently asked questions and answers
1036\(Non)Warranty\tGNU Emacs comes with "
26ff68aa 1037 :face (variable-pitch :slant oblique)
ce9ded5d 1038 "ABSOLUTELY NO WARRANTY\n"
26ff68aa 1039 :face variable-pitch
d3c5bad2 1040 "\
d7618b60
GM
1041Copying Conditions\tConditions for redistributing and changing Emacs
1042Ordering Manuals\tHow to order Emacs manuals from the Free Software Foundation\n")
1043 (:face variable-pitch
1044 "You can do basic editing with the menu bar and scroll bar \
1045using the mouse.\n\n"
1046 :face (variable-pitch :weight bold)
1047 "Useful File menu items:\n"
1048 :face variable-pitch "\
1049Exit Emacs\t(Or type Control-x followed by Control-c)
1050Recover Session\tRecover files you were editing before a crash
1051
1052
1053
1054"
1055 ))
ce9ded5d
GM
1056 "A list of texts to show in the middle part of splash screens.
1057Each element in the list should be a list of strings or pairs
1058`:face FACE', like `fancy-splash-insert' accepts them.")
1059
1060
fb275c02 1061(defgroup fancy-splash-screen ()
a01bb1db 1062 "Fancy splash screen when Emacs starts."
fb275c02 1063 :version "21.1"
a01bb1db
GM
1064 :group 'initialization)
1065
1066
e9da51a1 1067(defcustom fancy-splash-delay 10
49939379 1068 "*Delay in seconds between splash screens."
a01bb1db 1069 :group 'fancy-splash-screen
ce9ded5d
GM
1070 :type 'integer)
1071
1072
e9da51a1
GM
1073(defcustom fancy-splash-max-time 60
1074 "*Show splash screens for at most this number of seconds.
1075Values less than 60 seconds are ignored."
1076 :group 'fancy-splash-screen
1077 :type 'integer)
1078
1079
8ad8561b
GM
1080(defcustom fancy-splash-image nil
1081 "*The image to show in the splash screens, or nil for defaults."
a01bb1db 1082 :group 'fancy-splash-screen
8ad8561b
GM
1083 :type '(choice (const :tag "Default" nil)
1084 (file :tag "File")))
ce9ded5d
GM
1085
1086
f645586f
GM
1087;; These are temporary storage areas for the splash screen display.
1088
1089(defvar fancy-current-text nil)
1090(defvar fancy-splash-help-echo nil)
e9da51a1 1091(defvar fancy-splash-stop-time nil)
eae91b60 1092(defvar fancy-splash-outer-buffer nil)
f645586f 1093
ce9ded5d
GM
1094(defun fancy-splash-insert (&rest args)
1095 "Insert text into the current buffer, with faces.
1096Arguments from ARGS should be either strings or pairs `:face FACE',
1097where FACE is a valid face specification, as it can be used with
1098`put-text-properties'."
1099 (let ((current-face nil))
1100 (while args
1101 (if (eq (car args) :face)
1102 (setq args (cdr args) current-face (car args))
f645586f
GM
1103 (insert (propertize (car args)
1104 'face current-face
1105 'help-echo fancy-splash-help-echo)))
ce9ded5d
GM
1106 (setq args (cdr args)))))
1107
1108
1109(defun fancy-splash-head ()
1110 "Insert the head part of the splash screen into the current buffer."
51e8cfdd
GM
1111 (let* ((image-file (cond ((stringp fancy-splash-image)
1112 fancy-splash-image)
1113 ((and (display-color-p)
1114 (image-type-available-p 'xpm))
1115 (if (and (fboundp 'x-display-planes)
1116 (= (funcall 'x-display-planes) 8))
1117 "splash8.xpm"
1118 "splash.xpm"))
1119 (t "splash.pbm")))
1120 (img (create-image image-file))
ce9ded5d
GM
1121 (image-width (and img (car (image-size img))))
1122 (window-width (window-width (selected-window))))
1123 (when img
1124 (when (> window-width image-width)
f645586f 1125 ;; Center the image in the window.
ce9ded5d
GM
1126 (let ((pos (/ (- window-width image-width) 2)))
1127 (insert (propertize " " 'display `(space :align-to ,pos))))
f645586f 1128
e7f3afa9
MB
1129 ;; Change the color of the XPM version of the splash image
1130 ;; so that it is visible with a dark frame background.
1131 (when (and (memq 'xpm img)
1132 (eq (frame-parameter nil 'background-mode) 'dark))
1133 (setq img (append img '(:color-symbols (("#000000" . "gray30"))))))
1134
f645586f
GM
1135 ;; Insert the image with a help-echo and a keymap.
1136 (let ((map (make-sparse-keymap))
a622451f 1137 (help-echo "mouse-2: browse http://www.gnu.org/"))
f645586f
GM
1138 (define-key map [mouse-2]
1139 (lambda ()
1140 (interactive)
a622451f 1141 (browse-url "http://www.gnu.org/")
f645586f
GM
1142 (throw 'exit nil)))
1143 (define-key map [down-mouse-2] 'ignore)
1144 (define-key map [up-mouse-2] 'ignore)
1145 (insert-image img (propertize "xxx" 'help-echo help-echo
1146 'keymap map)))
ce9ded5d 1147 (insert "\n"))))
b831c087
GM
1148 (if (eq system-type 'gnu/linux)
1149 (fancy-splash-insert
1150 :face '(variable-pitch :foreground "red")
1151 "GNU Emacs is one component of a Linux-based GNU system.")
ce9ded5d
GM
1152 (fancy-splash-insert
1153 :face '(variable-pitch :foreground "red")
b831c087 1154 "GNU Emacs is one component of the GNU operating system."))
eae91b60
RS
1155 (insert "\n")
1156 (unless (equal (buffer-name fancy-splash-outer-buffer) "*scratch*")
1157 (fancy-splash-insert :face 'variable-pitch
1158 (substitute-command-keys
1159 "Type \\[recenter] to begin editing your file.\n"))))
ce9ded5d
GM
1160
1161
1162(defun fancy-splash-tail ()
1163 "Insert the tail part of the splash screen into the current buffer."
95fadcca
GM
1164 (let ((fg (if (eq (frame-parameter nil 'background-mode) 'dark)
1165 "cyan" "darkblue")))
1166 (fancy-splash-insert :face `(variable-pitch :foreground ,fg)
1167 "\nThis is "
1168 (emacs-version)
1169 "\n"
1170 :face '(variable-pitch :height 0.5)
ed638cc9
RS
1171 "Copyright (C) 2001 Free Software Foundation, Inc.")
1172 (and auto-save-list-file-prefix
1173 ;; Don't signal an error if the
1174 ;; directory for auto-save-list files
1175 ;; does not yet exist.
1176 (file-directory-p (file-name-directory
1177 auto-save-list-file-prefix))
1178 (directory-files
1179 (file-name-directory auto-save-list-file-prefix)
1180 nil
1181 (concat "\\`"
1182 (regexp-quote (file-name-nondirectory
1183 auto-save-list-file-prefix)))
1184 t)
1185 (fancy-splash-insert :face '(variable-pitch :foreground "red")
1186 "\n\nIf an Emacs session crashed recently, "
1187 "type M-x recover-session RET\nto recover"
1188 " the files you were editing."))))
ce9ded5d 1189
f645586f
GM
1190(defun fancy-splash-screens-1 (buffer)
1191 "Timer function displaying a splash screen."
e9da51a1
GM
1192 (when (> (float-time) fancy-splash-stop-time)
1193 (throw 'stop-splashing nil))
f645586f
GM
1194 (unless fancy-current-text
1195 (setq fancy-current-text fancy-splash-text))
1196 (let ((text (car fancy-current-text)))
1197 (set-buffer buffer)
1198 (erase-buffer)
1199 (fancy-splash-head)
1200 (apply #'fancy-splash-insert text)
1201 (fancy-splash-tail)
1202 (unless (current-message)
1203 (message fancy-splash-help-echo))
1204 (set-buffer-modified-p nil)
dbeb499b 1205 (goto-char (point-min))
f645586f
GM
1206 (force-mode-line-update)
1207 (setq fancy-current-text (cdr fancy-current-text))))
1208
1209
1210(defun fancy-splash-default-action ()
1211 "Default action for events in the splash screen buffer."
1212 (interactive)
1213 (push last-command-event unread-command-events)
1214 (throw 'exit nil))
1215
1216
ce9ded5d 1217(defun fancy-splash-screens ()
f645586f 1218 "Display fancy splash screens when Emacs starts."
5b61c6a7 1219 (setq fancy-splash-help-echo (startup-echo-area-message))
1fc02b3c 1220 (setq tab-width 20)
848c7757 1221 (let ((old-hourglass display-hourglass)
eae91b60
RS
1222 (fancy-splash-outer-buffer (current-buffer))
1223 splash-buffer
ff4ec1f7 1224 (old-minor-mode-map-alist minor-mode-map-alist)
5b61c6a7 1225 timer)
eae91b60
RS
1226 (switch-to-buffer "GNU Emacs")
1227 (setq splash-buffer (current-buffer))
e9da51a1
GM
1228 (catch 'stop-splashing
1229 (unwind-protect
56d9d0ed 1230 (let ((map (make-sparse-keymap)))
e9da51a1
GM
1231 (use-local-map map)
1232 (define-key map [t] 'fancy-splash-default-action)
1233 (define-key map [mouse-movement] 'ignore)
e85e809a 1234 (define-key map [mode-line t] 'ignore)
e9da51a1 1235 (setq cursor-type nil
848c7757 1236 display-hourglass nil
ff4ec1f7 1237 minor-mode-map-alist nil
e9da51a1 1238 buffer-undo-list t
e85e809a
GM
1239 mode-line-format (propertize "---- %b %-"
1240 'face '(:weight bold))
e9da51a1
GM
1241 fancy-splash-stop-time (+ (float-time)
1242 (max 60 fancy-splash-max-time))
1243 timer (run-with-timer 0 fancy-splash-delay
1244 #'fancy-splash-screens-1
1245 splash-buffer))
1246 (recursive-edit))
1247 (cancel-timer timer)
ff4ec1f7
GM
1248 (setq display-hourglass old-hourglass
1249 minor-mode-map-alist old-minor-mode-map-alist)
51e8cfdd 1250 (kill-buffer splash-buffer)))))
f645586f
GM
1251
1252
285991dc
GM
1253(defun use-fancy-splash-screens-p ()
1254 "Return t if fancy splash screens should be used."
1255 (when (or (and (display-color-p)
1256 (image-type-available-p 'xpm))
1257 (image-type-available-p 'pbm))
1258 (let* ((img (create-image (or fancy-splash-image
1259 (if (and (display-color-p)
1260 (image-type-available-p 'xpm))
1261 "splash.xpm" "splash.pbm"))))
1262 (image-height (and img (cdr (image-size img))))
1263 (window-height (1- (window-height (selected-window)))))
d7618b60 1264 (> window-height (+ image-height 15)))))
285991dc
GM
1265
1266
f645586f
GM
1267(defun startup-echo-area-message ()
1268 (if (eq (key-binding "\C-h\C-p") 'describe-project)
1269 "For information about the GNU Project and its goals, type C-h C-p."
1270 (substitute-command-keys
1271 "For information about the GNU Project and its goals, type \
1272\\[describe-project].")))
ce9ded5d
GM
1273
1274
49939379 1275(defun display-startup-echo-area-message ()
15fa6db0
GM
1276 (let ((resize-mini-windows t))
1277 (message (startup-echo-area-message))))
f645586f 1278
49939379 1279
a726e0d1 1280(defun command-line-1 (command-line-args-left)
52320897 1281 (or noninteractive (input-pending-p) init-file-had-error
ed638cc9
RS
1282 ;; t if the init file says to inhibit the echo area startup message.
1283 (and inhibit-startup-echo-area-message
1284 user-init-file
1285 (or (and (get 'inhibit-startup-echo-area-message 'saved-value)
1286 (equal inhibit-startup-echo-area-message
1287 (if (string= init-file-user "")
1288 (user-login-name)
1289 init-file-user)))
1290 ;; Wasn't set with custom; see if .emacs has a setq.
1291 (let ((buffer (get-buffer-create " *temp*")))
1292 (prog1
1293 (condition-case nil
1294 (save-excursion
1295 (set-buffer buffer)
1296 (insert-file-contents user-init-file)
1297 (re-search-forward
1298 (concat
1299 "([ \t\n]*setq[ \t\n]+"
1300 "inhibit-startup-echo-area-message[ \t\n]+"
1301 (regexp-quote
1302 (prin1-to-string
1303 (if (string= init-file-user "")
1304 (user-login-name)
1305 init-file-user)))
1306 "[ \t\n]*)")
1307 nil t))
1308 (error nil))
1309 (kill-buffer buffer)))))
1310 (display-startup-echo-area-message))
1311
1312 ;; Delay 2 seconds after an init file error message
1313 ;; was displayed, so user can read it.
1314 (if init-file-had-error
1315 (sit-for 2))
1316
1317 (if command-line-args-left
1318 ;; We have command args; process them.
1319 (let ((dir command-line-default-directory)
1320 (file-count 0)
1321 first-file-buffer
1322 tem
1323 just-files ;; t if this follows the magic -- option.
1324 ;; This includes our standard options' long versions
1325 ;; and long versions of what's on command-switch-alist.
1326 (longopts
1327 (append '(("--funcall") ("--load") ("--insert") ("--kill")
1328 ("--directory") ("--eval") ("--execute")
1329 ("--find-file") ("--visit") ("--file"))
1330 (mapcar (lambda (elt)
1331 (list (concat "-" (car elt))))
1332 command-switch-alist)))
1333 (line 0)
1334 (column 0))
1335
1336 ;; Add the long X options to longopts.
4e0a3971
SM
1337 (dolist (tem command-line-x-option-alist)
1338 (if (string-match "^--" (car tem))
1339 (push (list (car tem)) longopts)))
ed638cc9
RS
1340
1341 ;; Loop, processing options.
1342 (while (and command-line-args-left)
1343 (let* ((argi (car command-line-args-left))
1344 (orig-argi argi)
1345 argval completion
1346 ;; List of directories specified in -L/--directory,
1347 ;; in reverse of the order specified.
1348 extra-load-path
1349 (initial-load-path load-path))
1350 (setq command-line-args-left (cdr command-line-args-left))
1351
1352 ;; Do preliminary decoding of the option.
1353 (if just-files
1354 ;; After --, don't look for options; treat all args as files.
1355 (setq argi "")
1356 ;; Convert long options to ordinary options
1357 ;; and separate out an attached option argument into argval.
1358 (if (string-match "^--[^=]*=" argi)
1359 (setq argval (substring argi (match-end 0))
1360 argi (substring argi 0 (1- (match-end 0)))))
1361 (if (equal argi "--")
1362 (setq completion nil)
1363 (setq completion (try-completion argi longopts)))
1364 (if (eq completion t)
1365 (setq argi (substring argi 1))
1366 (if (stringp completion)
1367 (let ((elt (assoc completion longopts)))
1368 (or elt
1369 (error "Option `%s' is ambiguous" argi))
1370 (setq argi (substring (car elt) 1)))
1371 (setq argval nil argi orig-argi))))
1372
1373 ;; Execute the option.
1374 (cond ((setq tem (assoc argi command-switch-alist))
1375 (if argval
1376 (let ((command-line-args-left
1377 (cons argval command-line-args-left)))
1378 (funcall (cdr tem) argi))
1379 (funcall (cdr tem) argi)))
1380
4e0a3971
SM
1381 ((member argi '("-f" ;what the manual claims
1382 "-funcall"
1383 "-e")) ; what the source used to say
ed638cc9
RS
1384 (if argval
1385 (setq tem (intern argval))
1386 (setq tem (intern (car command-line-args-left)))
1387 (setq command-line-args-left (cdr command-line-args-left)))
1388 (if (arrayp (symbol-function tem))
1389 (command-execute tem)
1390 (funcall tem)))
1391
4e0a3971 1392 ((member argi '("-eval" "-execute"))
ed638cc9
RS
1393 (if argval
1394 (setq tem argval)
1395 (setq tem (car command-line-args-left))
1396 (setq command-line-args-left (cdr command-line-args-left)))
1397 (eval (read tem)))
1398 ;; Set the default directory as specified in -L.
1399
4e0a3971 1400 ((member argi '("-L" "-directory"))
ed638cc9
RS
1401 (if argval
1402 (setq tem argval)
1403 (setq tem (car command-line-args-left)
1404 command-line-args-left (cdr command-line-args-left)))
1405 (setq tem (command-line-normalize-file-name tem))
1406 (setq extra-load-path
1407 (cons (expand-file-name tem) extra-load-path))
1408 (setq load-path (append (nreverse extra-load-path)
1409 initial-load-path)))
1410
4e0a3971 1411 ((member argi '("-l" "-load"))
ed638cc9
RS
1412 (if argval
1413 (setq tem argval)
1414 (setq tem (car command-line-args-left)
1415 command-line-args-left (cdr command-line-args-left)))
1416 (let ((file (command-line-normalize-file-name tem)))
1417 ;; Take file from default dir if it exists there;
1418 ;; otherwise let `load' search for it.
1419 (if (file-exists-p (expand-file-name file))
1420 (setq file (expand-file-name file)))
1421 (load file nil t)))
1422
1423 ((string-equal argi "-insert")
1424 (if argval
1425 (setq tem argval)
1426 (setq tem (car command-line-args-left)
1427 command-line-args-left (cdr command-line-args-left)))
1428 (or (stringp tem)
1429 (error "File name omitted from `-insert' option"))
1430 (insert-file-contents (command-line-normalize-file-name tem)))
1431
1432 ((string-equal argi "-kill")
1433 (kill-emacs t))
1434
1435 ((string-match "^\\+[0-9]+\\'" argi)
1436 (setq line (string-to-int argi)))
1437
1438 ((string-match "^\\+\\([0-9]+\\):\\([0-9]+\\)\\'" argi)
1439 (setq line (string-to-int (match-string 1 argi))
1440 column (string-to-int (match-string 2 argi))))
1441
1442 ((setq tem (assoc argi command-line-x-option-alist))
1443 ;; Ignore X-windows options and their args if not using X.
1444 (setq command-line-args-left
1445 (nthcdr (nth 1 tem) command-line-args-left)))
1446
4e0a3971 1447 ((member argi '("-find-file" "-file" "-visit"))
ed638cc9
RS
1448 ;; An explicit option to specify visiting a file.
1449 (if argval
1450 (setq tem argval)
1451 (setq tem (car command-line-args-left)
1452 command-line-args-left (cdr command-line-args-left)))
1453 (unless (stringp tem)
1454 (error "File name omitted from `%s' option" argi))
1455 (setq file-count (1+ file-count))
1456 (let ((file (expand-file-name
1457 (command-line-normalize-file-name tem) dir)))
1458 (if (= file-count 1)
1459 (setq first-file-buffer (find-file file))
1460 (find-file-other-window file)))
1461 (or (zerop line)
1462 (goto-line line))
1463 (setq line 0)
1464 (unless (< column 1)
1465 (move-to-column (1- column)))
1466 (setq column 0))
1467
1468 ((equal argi "--")
1469 (setq just-files t))
1470 (t
1471 ;; We have almost exhausted our options. See if the
1472 ;; user has made any other command-line options available
1473 (let ((hooks command-line-functions) ;; lrs 7/31/89
1474 (did-hook nil))
1475 (while (and hooks
1476 (not (setq did-hook (funcall (car hooks)))))
1477 (setq hooks (cdr hooks)))
1478 (if (not did-hook)
1479 ;; Ok, presume that the argument is a file name
1480 (progn
1481 (if (string-match "\\`-" argi)
1482 (error "Unknown option `%s'" argi))
1483 (setq file-count (1+ file-count))
1484 (let ((file
1485 (expand-file-name
1486 (command-line-normalize-file-name orig-argi)
1487 dir)))
1488 (if (= file-count 1)
1489 (setq first-file-buffer (find-file file))
1490 (find-file-other-window file)))
1491 (or (zerop line)
1492 (goto-line line))
1493 (setq line 0)
1494 (unless (< column 1)
1495 (move-to-column (1- column)))
1496 (setq column 0))))))))
1497 ;; If 3 or more files visited, and not all visible,
1498 ;; show user what they all are. But leave the last one current.
1499 (and (> file-count 2)
1500 (not noninteractive)
26780e5b 1501 (not inhibit-startup-buffer-menu)
ed638cc9 1502 (or (get-buffer-window first-file-buffer)
eae91b60
RS
1503 (list-buffers)))))
1504
1505 ;; Maybe display a startup screen.
1506 (when (and (not inhibit-startup-message) (not noninteractive)
1507 ;; Don't display startup screen if init file
1508 ;; has started some sort of server.
1509 (not (and (fboundp 'process-list)
1510 (process-list))))
1511 ;; Display a startup screen, after some preparations.
1512
1513 ;; If there are no switches to process, we might as well
1514 ;; run this hook now, and there may be some need to do it
1515 ;; before doing any output.
1516 (and term-setup-hook
1517 (run-hooks 'term-setup-hook))
1518 ;; Don't let the hook be run twice.
1519 (setq term-setup-hook nil)
1520
1521 ;; It's important to notice the user settings before we
1522 ;; display the startup message; otherwise, the settings
1523 ;; won't take effect until the user gives the first
1524 ;; keystroke, and that's distracting.
1525 (when (fboundp 'frame-notice-user-settings)
1526 (frame-notice-user-settings))
1527
1528 ;; If there are no switches to process, we might as well
1529 ;; run this hook now, and there may be some need to do it
1530 ;; before doing any output.
1531 (when window-setup-hook
1532 (run-hooks 'window-setup-hook)
1533 ;; Don't let the hook be run twice.
1534 (setq window-setup-hook nil))
1535
1536 ;; Do this now to avoid an annoying delay if the user
1537 ;; clicks the menu bar during the sit-for.
1538 (when (display-popup-menus-p)
1539 (precompute-menubar-bindings))
1540 (setq menubar-bindings-done t)
ed638cc9 1541
eae91b60
RS
1542 ;; If *scratch* is selected and it is empty, insert an
1543 ;; initial message saying not to create a file there.
1544 (when (and initial-scratch-message
ed638cc9 1545 (string= (buffer-name) "*scratch*")
ed638cc9 1546 (= 0 (buffer-size)))
eae91b60
RS
1547 (insert initial-scratch-message)
1548 (set-buffer-modified-p nil))
ed638cc9 1549
eae91b60
RS
1550 ;; If user typed input during all that work,
1551 ;; abort the startup screen. Otherwise, display it now.
1552 (let ((buffer (current-buffer)))
ed638cc9 1553 (when (not (input-pending-p))
84403b77
RS
1554 (if (and (display-graphic-p)
1555 (use-fancy-splash-screens-p))
1556 (fancy-splash-screens)
1557 (with-current-buffer (get-buffer-create "GNU Emacs")
0baffc68
RS
1558 (let ((tab-width 8)
1559 (mode-line-format (propertize "---- %b %-"
1560 'face '(:weight bold))))
1561
ed638cc9
RS
1562 ;; The convention for this piece of code is that
1563 ;; each piece of output starts with one or two newlines
1564 ;; and does not end with any newlines.
1565 (insert "Welcome to GNU Emacs")
1566 (if (eq system-type 'gnu/linux)
1567 (insert ", one component of a Linux-based GNU system."))
1568 (insert "\n")
1569
eae91b60
RS
1570 (unless (equal (buffer-name buffer) "*scratch*")
1571 (insert (substitute-command-keys
1572 "\nType \\[recenter] to begin editing your file.\n")))
1573
ed638cc9
RS
1574 (if (display-mouse-p)
1575 ;; The user can use the mouse to activate menus
1576 ;; so give help in terms of menu items.
1577 (progn
1578 (insert "\
926aa0ee 1579You can do basic editing with the menu bar and scroll bar using the mouse.
acfd1011 1580
347d0813 1581Useful File menu items:
acfd1011
RS
1582Exit Emacs (or type Control-x followed by Control-c)
1583Recover Session recover files you were editing before a crash
1584
1585Important Help menu items:
1586Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently.
b11d37de 1587Emacs FAQ Frequently asked questions and answers
acfd1011
RS
1588\(Non)Warranty GNU Emacs comes with ABSOLUTELY NO WARRANTY
1589Copying Conditions Conditions for redistributing and changing Emacs.
1590Getting New Versions How to obtain the latest version of Emacs.
01459648 1591Ordering Manuals How to order manuals from the FSF.
acfd1011 1592")
ed638cc9
RS
1593 (insert "\n\n" (emacs-version)
1594 "
1595Copyright (C) 2001 Free Software Foundation, Inc."))
1596
1597 ;; No mouse menus, so give help using kbd commands.
1598
1599 ;; If keys have their default meanings,
1600 ;; use precomputed string to save lots of time.
1601 (if (and (eq (key-binding "\C-h") 'help-command)
1602 (eq (key-binding "\C-xu") 'advertised-undo)
1603 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-emacs)
1604 (eq (key-binding "\C-ht") 'help-with-tutorial)
1605 (eq (key-binding "\C-hi") 'info)
1606 (eq (key-binding "\C-h\C-n") 'view-emacs-news))
1607 (insert "
3f5a3e12
RS
1608Get help C-h (Hold down CTRL and press h)
1609Undo changes C-x u Exit Emacs C-x C-c
01459648
GM
1610Get a tutorial C-h t Use Info to read docs C-h i
1611Ordering manuals C-h RET")
ed638cc9
RS
1612 (insert (substitute-command-keys
1613 (format "\n
3f5a3e12
RS
1614Get help %s
1615Undo changes \\[advertised-undo]
1616Exit Emacs \\[save-buffers-kill-emacs]
1617Get a tutorial \\[help-with-tutorial]
01459648
GM
1618Use Info to read docs \\[info]
1619Ordering manuals \\[view-order-manuals]"
ed638cc9
RS
1620 (let ((where (where-is-internal
1621 'help-command nil t)))
1622 (if where
1623 (key-description where)
1624 "M-x help"))))))
1625
1626 ;; Say how to use the menu bar with the keyboard.
1627 (if (and (eq (key-binding "\M-`") 'tmm-menubar)
1628 (eq (key-binding [f10]) 'tmm-menubar))
1629 (insert "
3f5a3e12 1630Activate menubar F10 or ESC ` or M-`")
ed638cc9 1631 (insert (substitute-command-keys "
acfd1011 1632Activate menubar \\[tmm-menubar]")))
e65a6404 1633
ed638cc9
RS
1634 ;; Many users seem to have problems with these.
1635 (insert "
3f5a3e12
RS
1636\(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
1637If you have no Meta key, you may instead type ESC followed by the character.)")
acfd1011 1638
ed638cc9
RS
1639 (insert "\n\n" (emacs-version)
1640 "
30564c48 1641Copyright (C) 2001 Free Software Foundation, Inc.")
ed638cc9
RS
1642
1643 (if (and (eq (key-binding "\C-h\C-c") 'describe-copying)
1644 (eq (key-binding "\C-h\C-d") 'describe-distribution)
1645 (eq (key-binding "\C-h\C-w") 'describe-no-warranty))
1646 (insert
1647 "\n
a726e0d1 1648GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details.
70e00413
KH
1649Emacs is Free Software--Free as in Freedom--so you can redistribute copies
1650of Emacs and modify it; type C-h C-c to see the conditions.
a726e0d1 1651Type C-h C-d for information on getting the latest version.")
ed638cc9
RS
1652 (insert (substitute-command-keys
1653 "\n
a726e0d1 1654GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details.
70e00413
KH
1655Emacs is Free Software--Free as in Freedom--so you can redistribute copies
1656of Emacs and modify it; type \\[describe-copying] to see the conditions.
acfd1011 1657Type \\[describe-distribution] for information on getting the latest version."))))
ed638cc9
RS
1658
1659 ;; The rest of the startup screen is the same on all
1660 ;; kinds of terminals.
1661
1662 ;; Give information on recovering, if there was a crash.
1663 (and auto-save-list-file-prefix
1664 ;; Don't signal an error if the
1665 ;; directory for auto-save-list files
1666 ;; does not yet exist.
1667 (file-directory-p (file-name-directory
1668 auto-save-list-file-prefix))
1669 (directory-files
1670 (file-name-directory auto-save-list-file-prefix)
1671 nil
1672 (concat "\\`"
1673 (regexp-quote (file-name-nondirectory
1674 auto-save-list-file-prefix)))
1675 t)
1676 (insert "\n\nIf an Emacs session crashed recently, "
1677 "type M-x recover-session RET\nto recover"
1678 " the files you were editing."))
1679
1680 ;; Display the input that we set up in the buffer.
1681 (set-buffer-modified-p nil)
1682 (goto-char (point-min))
1683 (save-window-excursion
1684 (switch-to-buffer (current-buffer))
84403b77
RS
1685 (sit-for 120))))
1686 (kill-buffer "GNU Emacs"))))))
c88ab9ce 1687
49939379 1688
47c7adae
RS
1689(defun command-line-normalize-file-name (file)
1690 "Collapse multiple slashes to one, to handle non-Emacs file names."
6b9e794f
RS
1691 (save-match-data
1692 ;; Use arg 1 so that we don't collapse // at the start of the file name.
1693 ;; That is significant on some systems.
1694 ;; However, /// at the beginning is supposed to mean just /, not //.
1695 (if (string-match "^///+" file)
1696 (setq file (replace-match "/" t t file)))
1697 (while (string-match "//+" file 1)
1698 (setq file (replace-match "/" t t file)))
1699 file))
47c7adae 1700
c88ab9ce 1701;;; startup.el ends here