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