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