]> code.delx.au - gnu-emacs/blob - lisp/startup.el
* lisp/progmodes/meta-mode.el: (meta-indent-line): Simplify.
[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,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
6
7 ;; Maintainer: FSF
8 ;; Keywords: internal
9 ;; Package: emacs
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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 'environment)
42
43 (defcustom initial-buffer-choice nil
44 "Buffer to show after starting Emacs.
45 If the value is nil and `inhibit-startup-screen' is nil, show the
46 startup screen. If the value is string, visit the specified file or
47 directory using `find-file'. If t, open the `*scratch*' buffer."
48 :type '(choice
49 (const :tag "Startup screen" nil)
50 (directory :tag "Directory" :value "~/")
51 (file :tag "File" :value "~/.emacs")
52 (const :tag "Lisp scratch buffer" t))
53 :version "23.1"
54 :group 'initialization)
55
56 (defcustom inhibit-startup-screen nil
57 "Non-nil inhibits the startup screen.
58
59 This is for use in your personal init file (but NOT site-start.el),
60 once you are familiar with the contents of the startup screen."
61 :type 'boolean
62 :group 'initialization)
63
64 (defvaralias 'inhibit-splash-screen 'inhibit-startup-screen)
65 (defvaralias 'inhibit-startup-message 'inhibit-startup-screen)
66
67 (defvar startup-screen-inhibit-startup-screen nil)
68
69 (defcustom inhibit-startup-echo-area-message nil
70 "Non-nil inhibits the initial startup echo area message.
71 Setting this variable takes effect
72 only if you do it with the customization buffer
73 or if your `.emacs' file contains a line of this form:
74 (setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\")
75 If your `.emacs' file is byte-compiled, use the following form instead:
76 (eval '(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\"))
77 Thus, someone else using a copy of your `.emacs' file will see
78 the startup message unless he personally acts to inhibit it."
79 :type '(choice (const :tag "Don't inhibit")
80 (string :tag "Enter your user name, to inhibit"))
81 :group 'initialization)
82
83 (defcustom inhibit-default-init nil
84 "Non-nil inhibits loading the `default' library."
85 :type 'boolean
86 :group 'initialization)
87
88 (defcustom inhibit-startup-buffer-menu nil
89 "Non-nil inhibits display of buffer list when more than 2 files are loaded."
90 :type 'boolean
91 :group 'initialization)
92
93 (defvar command-switch-alist nil
94 "Alist of command-line switches.
95 Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
96 HANDLER-FUNCTION receives the switch string as its sole argument;
97 the remaining command-line args are in the variable `command-line-args-left'.")
98
99 (defvar command-line-args-left nil
100 "List of command-line args not yet processed.")
101
102 (defvaralias 'argv 'command-line-args-left
103 "List of command-line args not yet processed.
104 This is a convenience alias, so that one can write \(pop argv\)
105 inside of --eval command line arguments in order to access
106 following arguments.")
107
108 (defvar command-line-functions nil ;; lrs 7/31/89
109 "List of functions to process unrecognized command-line arguments.
110 Each function should access the dynamically bound variables
111 `argi' (the current argument) and `command-line-args-left' (the remaining
112 arguments). The function should return non-nil only if it recognizes and
113 processes `argi'. If it does so, it may consume successive arguments by
114 altering `command-line-args-left' to remove them.")
115
116 (defvar command-line-default-directory nil
117 "Default directory to use for command line arguments.
118 This is normally copied from `default-directory' when Emacs starts.")
119
120 ;;; This is here, rather than in x-win.el, so that we can ignore these
121 ;;; options when we are not using X.
122 (defconst command-line-x-option-alist
123 '(("-bw" 1 x-handle-numeric-switch border-width)
124 ("-d" 1 x-handle-display)
125 ("-display" 1 x-handle-display)
126 ("-name" 1 x-handle-name-switch)
127 ("-title" 1 x-handle-switch title)
128 ("-T" 1 x-handle-switch title)
129 ("-r" 0 x-handle-switch reverse t)
130 ("-rv" 0 x-handle-switch reverse t)
131 ("-reverse" 0 x-handle-switch reverse t)
132 ("-reverse-video" 0 x-handle-switch reverse t)
133 ("-fn" 1 x-handle-switch font)
134 ("-font" 1 x-handle-switch font)
135 ("-fs" 0 x-handle-initial-switch fullscreen fullboth)
136 ("-fw" 0 x-handle-initial-switch fullscreen fullwidth)
137 ("-fh" 0 x-handle-initial-switch fullscreen fullheight)
138 ("-mm" 0 x-handle-initial-switch fullscreen maximized)
139 ("-ib" 1 x-handle-numeric-switch internal-border-width)
140 ("-g" 1 x-handle-geometry)
141 ("-lsp" 1 x-handle-numeric-switch line-spacing)
142 ("-geometry" 1 x-handle-geometry)
143 ("-fg" 1 x-handle-switch foreground-color)
144 ("-foreground" 1 x-handle-switch foreground-color)
145 ("-bg" 1 x-handle-switch background-color)
146 ("-background" 1 x-handle-switch background-color)
147 ("-ms" 1 x-handle-switch mouse-color)
148 ("-nbi" 0 x-handle-switch icon-type nil)
149 ("-iconic" 0 x-handle-iconic)
150 ("-xrm" 1 x-handle-xrm-switch)
151 ("-cr" 1 x-handle-switch cursor-color)
152 ("-vb" 0 x-handle-switch vertical-scroll-bars t)
153 ("-hb" 0 x-handle-switch horizontal-scroll-bars t)
154 ("-bd" 1 x-handle-switch)
155 ("--border-width" 1 x-handle-numeric-switch border-width)
156 ("--display" 1 x-handle-display)
157 ("--name" 1 x-handle-name-switch)
158 ("--title" 1 x-handle-switch title)
159 ("--reverse-video" 0 x-handle-switch reverse t)
160 ("--font" 1 x-handle-switch font)
161 ("--fullscreen" 0 x-handle-initial-switch fullscreen fullboth)
162 ("--fullwidth" 0 x-handle-initial-switch fullscreen fullwidth)
163 ("--fullheight" 0 x-handle-initial-switch fullscreen fullheight)
164 ("--maximized" 0 x-handle-initial-switch fullscreen maximized)
165 ("--internal-border" 1 x-handle-numeric-switch internal-border-width)
166 ("--geometry" 1 x-handle-geometry)
167 ("--foreground-color" 1 x-handle-switch foreground-color)
168 ("--background-color" 1 x-handle-switch background-color)
169 ("--mouse-color" 1 x-handle-switch mouse-color)
170 ("--no-bitmap-icon" 0 x-handle-no-bitmap-icon)
171 ("--iconic" 0 x-handle-iconic)
172 ("--xrm" 1 x-handle-xrm-switch)
173 ("--cursor-color" 1 x-handle-switch cursor-color)
174 ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t)
175 ("--line-spacing" 1 x-handle-numeric-switch line-spacing)
176 ("--border-color" 1 x-handle-switch border-color)
177 ("--smid" 1 x-handle-smid)
178 ("--parent-id" 1 x-handle-parent-id))
179 "Alist of X Windows options.
180 Each element has the form
181 (NAME NUMARGS HANDLER FRAME-PARAM VALUE)
182 where NAME is the option name string, NUMARGS is the number of arguments
183 that the option accepts, HANDLER is a function to call to handle the option.
184 FRAME-PARAM (optional) is the frame parameter this option specifies,
185 and VALUE is the value which is given to that frame parameter
186 \(most options use the argument for this, so VALUE is not present).")
187
188 (defconst command-line-ns-option-alist
189 '(("-NSAutoLaunch" 1 ns-ignore-1-arg)
190 ("-NXAutoLaunch" 1 ns-ignore-1-arg)
191 ("-macosx" 0 ignore)
192 ("-NSHost" 1 ns-ignore-1-arg)
193 ("-_NSMachLaunch" 1 ns-ignore-1-arg)
194 ("-MachLaunch" 1 ns-ignore-1-arg)
195 ("-NXOpen" 1 ns-ignore-1-arg)
196 ("-NSOpen" 1 ns-handle-nxopen)
197 ("-NXOpenTemp" 1 ns-ignore-1-arg)
198 ("-NSOpenTemp" 1 ns-handle-nxopentemp)
199 ("-GSFilePath" 1 ns-handle-nxopen)
200 ;;("-bw" . x-handle-numeric-switch)
201 ;;("-d" . x-handle-display)
202 ;;("-display" . x-handle-display)
203 ("-name" 1 x-handle-name-switch)
204 ("-title" 1 x-handle-switch title)
205 ("-T" 1 x-handle-switch title)
206 ("-r" 0 x-handle-switch reverse t)
207 ("-rv" 0 x-handle-switch reverse t)
208 ("-reverse" 0 x-handle-switch reverse t)
209 ("-fn" 1 x-handle-switch font)
210 ("-font" 1 x-handle-switch font)
211 ("-ib" 1 x-handle-numeric-switch internal-border-width)
212 ;;("-g" . x-handle-geometry)
213 ;;("-geometry" . x-handle-geometry)
214 ("-fg" 1 x-handle-switch foreground-color)
215 ("-foreground" 1 x-handle-switch foreground-color)
216 ("-bg" 1 x-handle-switch background-color)
217 ("-background" 1 x-handle-switch background-color)
218 ; ("-ms" 1 x-handle-switch mouse-color)
219 ("-itype" 0 x-handle-switch icon-type t)
220 ("-i" 0 x-handle-switch icon-type t)
221 ("-iconic" 0 x-handle-iconic icon-type t)
222 ;;("-xrm" . x-handle-xrm-switch)
223 ("-cr" 1 x-handle-switch cursor-color)
224 ("-vb" 0 x-handle-switch vertical-scroll-bars t)
225 ("-hb" 0 x-handle-switch horizontal-scroll-bars t)
226 ("-bd" 1 x-handle-switch)
227 ;; ("--border-width" 1 x-handle-numeric-switch border-width)
228 ;; ("--display" 1 ns-handle-display)
229 ("--name" 1 x-handle-name-switch)
230 ("--title" 1 x-handle-switch title)
231 ("--reverse-video" 0 x-handle-switch reverse t)
232 ("--font" 1 x-handle-switch font)
233 ("--internal-border" 1 x-handle-numeric-switch internal-border-width)
234 ;; ("--geometry" 1 ns-handle-geometry)
235 ("--foreground-color" 1 x-handle-switch foreground-color)
236 ("--background-color" 1 x-handle-switch background-color)
237 ("--mouse-color" 1 x-handle-switch mouse-color)
238 ("--icon-type" 0 x-handle-switch icon-type t)
239 ("--iconic" 0 x-handle-iconic)
240 ;; ("--xrm" 1 ns-handle-xrm-switch)
241 ("--cursor-color" 1 x-handle-switch cursor-color)
242 ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t)
243 ("--border-color" 1 x-handle-switch border-width))
244 "Alist of NS options.
245 Each element has the form
246 (NAME NUMARGS HANDLER FRAME-PARAM VALUE)
247 where NAME is the option name string, NUMARGS is the number of arguments
248 that the option accepts, HANDLER is a function to call to handle the option.
249 FRAME-PARAM (optional) is the frame parameter this option specifies,
250 and VALUE is the value which is given to that frame parameter
251 \(most options use the argument for this, so VALUE is not present).")
252
253
254 (defvar before-init-hook nil
255 "Normal hook run after handling urgent options but before loading init files.")
256
257 (defvar after-init-hook nil
258 "Normal hook run after loading the init files, `~/.emacs' and `default.el'.
259 There is no `condition-case' around the running of these functions;
260 therefore, if you set `debug-on-error' non-nil in `.emacs',
261 an error in one of these functions will invoke the debugger.")
262
263 (defvar emacs-startup-hook nil
264 "Normal hook run after loading init files and handling the command line.")
265
266 (defvar term-setup-hook nil
267 "Normal hook run after loading terminal-specific Lisp code.
268 It also follows `emacs-startup-hook'. This hook exists for users to set,
269 so as to override the definitions made by the terminal-specific file.
270 Emacs never sets this variable itself.")
271
272 (defvar inhibit-startup-hooks nil
273 "Non-nil means don't run `term-setup-hook' and `emacs-startup-hook'.
274 This is because we already did so.")
275
276 (defvar keyboard-type nil
277 "The brand of keyboard you are using.
278 This variable is used to define the proper function and keypad
279 keys for use under X. It is used in a fashion analogous to the
280 environment variable TERM.")
281
282 (defvar window-setup-hook nil
283 "Normal hook run to initialize window system display.
284 Emacs runs this hook after processing the command line arguments and loading
285 the user's init file.")
286
287 (defcustom initial-major-mode 'lisp-interaction-mode
288 "Major mode command symbol to use for the initial `*scratch*' buffer."
289 :type 'function
290 :group 'initialization)
291
292 (defvar init-file-user nil
293 "Identity of user whose `.emacs' file is or was read.
294 The value is nil if `-q' or `--no-init-file' was specified,
295 meaning do not load any init file.
296
297 Otherwise, the value may be an empty string, meaning
298 use the init file for the user who originally logged in,
299 or it may be a string containing a user's name meaning
300 use that person's init file.
301
302 In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
303 evaluates to the name of the directory where the `.emacs' file was
304 looked for.
305
306 Setting `init-file-user' does not prevent Emacs from loading
307 `site-start.el'. The only way to do that is to use `--no-site-file'.")
308
309 (defcustom site-run-file (purecopy "site-start")
310 "File containing site-wide run-time initializations.
311 This file is loaded at run-time before `~/.emacs'. It contains inits
312 that need to be in place for the entire site, but which, due to their
313 higher incidence of change, don't make sense to load into Emacs's
314 dumped image. Thus, the run-time load order is: 1. file described in
315 this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.
316
317 Don't use the `site-start.el' file for things some users may not like.
318 Put them in `default.el' instead, so that users can more easily
319 override them. Users can prevent loading `default.el' with the `-q'
320 option or by setting `inhibit-default-init' in their own init files,
321 but inhibiting `site-start.el' requires `--no-site-file', which
322 is less convenient.
323
324 This variable is defined for customization so as to make
325 it visible in the relevant context. However, actually customizing it
326 is not allowed, since it would not work anyway. The only way to set
327 this variable usefully is to set it while building and dumping Emacs."
328 :type '(choice (const :tag "none" nil) string)
329 :group 'initialization
330 :initialize 'custom-initialize-default
331 :set (lambda (variable value)
332 (error "Customizing `site-run-file' does not work")))
333
334 (defcustom mail-host-address nil
335 "Name of this machine, for purposes of naming users."
336 :type '(choice (const nil) string)
337 :group 'mail)
338
339 (defcustom user-mail-address (if command-line-processed
340 (or (getenv "EMAIL")
341 (concat (user-login-name) "@"
342 (or mail-host-address
343 (system-name))))
344 ;; Empty string means "not set yet".
345 "")
346 "Full mailing address of this user.
347 This is initialized with environment variable `EMAIL' or, as a
348 fallback, using `mail-host-address'. This is done after your
349 init file is read, in case it sets `mail-host-address'."
350 :type 'string
351 :group 'mail)
352
353 (defcustom auto-save-list-file-prefix
354 (cond ((eq system-type 'ms-dos)
355 ;; MS-DOS cannot have initial dot, and allows only 8.3 names
356 (concat user-emacs-directory "auto-save.list/_s"))
357 (t
358 (concat user-emacs-directory "auto-save-list/.saves-")))
359 "Prefix for generating `auto-save-list-file-name'.
360 This is used after reading your `.emacs' file to initialize
361 `auto-save-list-file-name', by appending Emacs's pid and the system name,
362 if you have not already set `auto-save-list-file-name' yourself.
363 Directories in the prefix will be created if necessary.
364 Set this to nil if you want to prevent `auto-save-list-file-name'
365 from being initialized."
366 :type '(choice (const :tag "Don't record a session's auto save list" nil)
367 string)
368 :group 'auto-save)
369
370 (defvar emacs-basic-display nil)
371
372 (defvar init-file-debug nil)
373
374 (defvar init-file-had-error nil
375 "Non-nil if there was an error loading the user's init file.")
376
377 (defvar normal-top-level-add-subdirs-inode-list nil)
378
379 (defvar no-blinking-cursor nil)
380
381 (defvar default-frame-background-mode)
382
383 (defvar pure-space-overflow nil
384 "Non-nil if building Emacs overflowed pure space.")
385
386 (defvar pure-space-overflow-message (purecopy "\
387 Warning Warning!!! Pure space overflow !!!Warning Warning
388 \(See the node Pure Storage in the Lisp manual for details.)\n"))
389
390 (defcustom tutorial-directory
391 (file-name-as-directory (expand-file-name "tutorials" data-directory))
392 "Directory containing the Emacs TUTORIAL files."
393 :group 'installation
394 :type 'directory
395 :initialize 'custom-initialize-delay)
396
397 (defun normal-top-level-add-subdirs-to-load-path ()
398 "Add all subdirectories of current directory to `load-path'.
399 More precisely, this uses only the subdirectories whose names
400 start with letters or digits; it excludes any subdirectory named `RCS'
401 or `CVS', and any subdirectory that contains a file named `.nosearch'."
402 (let (dirs
403 attrs
404 (pending (list default-directory)))
405 ;; This loop does a breadth-first tree walk on DIR's subtree,
406 ;; putting each subdir into DIRS as its contents are examined.
407 (while pending
408 (push (pop pending) dirs)
409 (let* ((this-dir (car dirs))
410 (contents (directory-files this-dir))
411 (default-directory this-dir)
412 (canonicalized (if (fboundp 'untranslated-canonical-name)
413 (untranslated-canonical-name this-dir))))
414 ;; The Windows version doesn't report meaningful inode
415 ;; numbers, so use the canonicalized absolute file name of the
416 ;; directory instead.
417 (setq attrs (or canonicalized
418 (nthcdr 10 (file-attributes this-dir))))
419 (unless (member attrs normal-top-level-add-subdirs-inode-list)
420 (push attrs normal-top-level-add-subdirs-inode-list)
421 (dolist (file contents)
422 ;; The lower-case variants of RCS and CVS are for DOS/Windows.
423 (unless (member file '("." ".." "RCS" "CVS" "rcs" "cvs"))
424 (when (and (string-match "\\`[[:alnum:]]" file)
425 ;; Avoid doing a `stat' when it isn't necessary
426 ;; because that can cause trouble when an NFS server
427 ;; is down.
428 (not (string-match "\\.elc?\\'" file))
429 (file-directory-p file))
430 (let ((expanded (expand-file-name file)))
431 (unless (file-exists-p (expand-file-name ".nosearch"
432 expanded))
433 (setq pending (nconc pending (list expanded)))))))))))
434 (normal-top-level-add-to-load-path (cdr (nreverse dirs)))))
435
436 ;; This function is called from a subdirs.el file.
437 ;; It assumes that default-directory is the directory
438 ;; in which the subdirs.el file exists,
439 ;; and it adds to load-path the subdirs of that directory
440 ;; as specified in DIRS. Normally the elements of DIRS are relative.
441 (defun normal-top-level-add-to-load-path (dirs)
442 (let ((tail load-path)
443 (thisdir (directory-file-name default-directory)))
444 (while (and tail
445 ;;Don't go all the way to the nil terminator.
446 (cdr tail)
447 (not (equal thisdir (car tail)))
448 (not (and (memq system-type '(ms-dos windows-nt))
449 (equal (downcase thisdir) (downcase (car tail))))))
450 (setq tail (cdr tail)))
451 ;;Splice the new section in.
452 (when tail
453 (setcdr tail (append (mapcar 'expand-file-name dirs) (cdr tail))))))
454
455 (defun normal-top-level ()
456 (if command-line-processed
457 (message "Back to top level.")
458 (setq command-line-processed t)
459 (let ((dir default-directory))
460 (with-current-buffer "*Messages*"
461 ;; Make it easy to do like "tail -f".
462 (set (make-local-variable 'window-point-insertion-type) t)
463 ;; Give *Messages* the same default-directory as *scratch*,
464 ;; just to keep things predictable.
465 (setq default-directory dir)))
466 ;; `user-full-name' is now known; reset its standard-value here.
467 (put 'user-full-name 'standard-value
468 (list (default-value 'user-full-name)))
469 ;; For root, preserve owner and group when editing files.
470 (if (equal (user-uid) 0)
471 (setq backup-by-copying-when-mismatch t))
472 ;; Look in each dir in load-path for a subdirs.el file.
473 ;; If we find one, load it, which will add the appropriate subdirs
474 ;; of that dir into load-path,
475 ;; Look for a leim-list.el file too. Loading it will register
476 ;; available input methods.
477 (let ((tail load-path) dir)
478 (while tail
479 (setq dir (car tail))
480 (let ((default-directory dir))
481 (load (expand-file-name "subdirs.el") t t t))
482 (let ((default-directory dir))
483 (load (expand-file-name "leim-list.el") t t t))
484 ;; We don't use a dolist loop and we put this "setq-cdr" command at
485 ;; the end, because the subdirs.el files may add elements to the end
486 ;; of load-path and we want to take it into account.
487 (setq tail (cdr tail))))
488 ;; If the PWD environment variable isn't accurate, delete it.
489 (let ((pwd (getenv "PWD")))
490 (and (stringp pwd)
491 ;; Use FOO/., so that if FOO is a symlink, file-attributes
492 ;; describes the directory linked to, not FOO itself.
493 (or (equal (file-attributes
494 (concat (file-name-as-directory pwd) "."))
495 (file-attributes
496 (concat (file-name-as-directory default-directory)
497 ".")))
498 (setq process-environment
499 (delete (concat "PWD=" pwd)
500 process-environment)))))
501 (setq default-directory (abbreviate-file-name default-directory))
502 (let ((old-face-font-rescale-alist face-font-rescale-alist))
503 (unwind-protect
504 (command-line)
505 ;; Do this again, in case .emacs defined more abbreviations.
506 (setq default-directory (abbreviate-file-name default-directory))
507 ;; Specify the file for recording all the auto save files of this session.
508 ;; This is used by recover-session.
509 (or auto-save-list-file-name
510 (and auto-save-list-file-prefix
511 (setq auto-save-list-file-name
512 ;; Under MS-DOS our PID is almost always reused between
513 ;; Emacs invocations. We need something more unique.
514 (cond ((eq system-type 'ms-dos)
515 ;; We are going to access the auto-save
516 ;; directory, so make sure it exists.
517 (make-directory
518 (file-name-directory auto-save-list-file-prefix)
519 t)
520 (concat
521 (make-temp-name
522 (expand-file-name
523 auto-save-list-file-prefix))
524 "~"))
525 (t
526 (expand-file-name
527 (format "%s%d-%s~"
528 auto-save-list-file-prefix
529 (emacs-pid)
530 (system-name))))))))
531 (unless inhibit-startup-hooks
532 (run-hooks 'emacs-startup-hook)
533 (and term-setup-hook
534 (run-hooks 'term-setup-hook)))
535
536 ;; Don't do this if we failed to create the initial frame,
537 ;; for instance due to a dense colormap.
538 (when (or frame-initial-frame
539 ;; If frame-initial-frame has no meaning, do this anyway.
540 (not (and initial-window-system
541 (not noninteractive)
542 (not (eq initial-window-system 'pc)))))
543
544 ;; FIXME: The user's init file may change
545 ;; face-font-rescale-alist. However, the default face
546 ;; already has an assigned font object, which does not take
547 ;; face-font-rescale-alist into account. For such
548 ;; situations, we ought to have a way to find all font
549 ;; objects and regenerate them; currently we do not. As a
550 ;; workaround, we specifically reset te default face's :font
551 ;; attribute here. See bug#1785.
552 (unless (eq face-font-rescale-alist
553 old-face-font-rescale-alist)
554 (set-face-attribute 'default nil :font (font-spec)))
555
556 ;; Modify the initial frame based on what .emacs puts into
557 ;; ...-frame-alist.
558 (if (fboundp 'frame-notice-user-settings)
559 (frame-notice-user-settings))
560 ;; Set the faces for the initial background mode even if
561 ;; frame-notice-user-settings didn't (such as on a tty).
562 ;; frame-set-background-mode is idempotent, so it won't
563 ;; cause any harm if it's already been done.
564 (if (fboundp 'frame-set-background-mode)
565 (frame-set-background-mode (selected-frame))))
566
567 ;; Now we know the user's default font, so add it to the menu.
568 (if (fboundp 'font-menu-add-default)
569 (font-menu-add-default))
570 (and window-setup-hook
571 (run-hooks 'window-setup-hook))))
572 ;; Subprocesses of Emacs do not have direct access to the terminal, so
573 ;; unless told otherwise they should only assume a dumb terminal.
574 ;; We are careful to do it late (after term-setup-hook), although the
575 ;; new multi-tty code does not use $TERM any more there anyway.
576 (setenv "TERM" "dumb")
577 ;; Remove DISPLAY from the process-environment as well. This allows
578 ;; `callproc.c' to give it a useful adaptive default which is either
579 ;; the value of the `display' frame-parameter or the DISPLAY value
580 ;; from initial-environment.
581 (let ((display (frame-parameter nil 'display)))
582 ;; Be careful which DISPLAY to remove from process-environment: follow
583 ;; the logic of `callproc.c'.
584 (if (stringp display) (setq display (concat "DISPLAY=" display))
585 (dolist (varval initial-environment)
586 (if (string-match "\\`DISPLAY=" varval)
587 (setq display varval))))
588 (when display
589 (delete display process-environment)))))
590
591 ;; Precompute the keyboard equivalents in the menu bar items.
592 ;; Command-line options supported by tty's:
593 (defconst tty-long-option-alist
594 '(("--name" . "-name")
595 ("--title" . "-T")
596 ("--reverse-video" . "-reverse")
597 ("--foreground-color" . "-fg")
598 ("--background-color" . "-bg")
599 ("--color" . "-color")))
600
601 (defconst tool-bar-images-pixel-height 24
602 "Height in pixels of images in the tool-bar.")
603
604 (defvar tool-bar-originally-present nil
605 "Non-nil if tool-bars are present before user and site init files are read.")
606
607 (defvar handle-args-function-alist '((nil . tty-handle-args))
608 "Functions for processing window-system dependent command-line arguments.
609 Window system startup files should add their own function to this
610 alist, which should parse the command line arguments. Those
611 pertaining to the window system should be processed and removed
612 from the returned command line.")
613
614 (defvar window-system-initialization-alist '((nil . ignore))
615 "Alist of window-system initialization functions.
616 Window-system startup files should add their own initialization
617 function to this list. The function should take no arguments,
618 and initialize the window system environment to prepare for
619 opening the first frame (e.g. open a connection to an X server).")
620
621 ;; Handle the X-like command-line arguments "-fg", "-bg", "-name", etc.
622 (defun tty-handle-args (args)
623 (let (rest)
624 (message "%S" args)
625 (while (and args
626 (not (equal (car args) "--")))
627 (let* ((argi (pop args))
628 (orig-argi argi)
629 argval completion)
630 ;; Check for long options with attached arguments
631 ;; and separate out the attached option argument into argval.
632 (when (string-match "^\\(--[^=]*\\)=" argi)
633 (setq argval (substring argi (match-end 0))
634 argi (match-string 1 argi)))
635 (when (string-match "^--" argi)
636 (setq completion (try-completion argi tty-long-option-alist))
637 (if (eq completion t)
638 ;; Exact match for long option.
639 (setq argi (cdr (assoc argi tty-long-option-alist)))
640 (if (stringp completion)
641 (let ((elt (assoc completion tty-long-option-alist)))
642 ;; Check for abbreviated long option.
643 (or elt
644 (error "Option `%s' is ambiguous" argi))
645 (setq argi (cdr elt)))
646 ;; Check for a short option.
647 (setq argval nil
648 argi orig-argi))))
649 (cond ((member argi '("-fg" "-foreground"))
650 (push (cons 'foreground-color (or argval (pop args)))
651 default-frame-alist))
652 ((member argi '("-bg" "-background"))
653 (push (cons 'background-color (or argval (pop args)))
654 default-frame-alist))
655 ((member argi '("-T" "-name"))
656 (unless argval (setq argval (pop args)))
657 (push (cons 'title
658 (if (stringp argval)
659 argval
660 (let ((case-fold-search t)
661 i)
662 (setq argval (invocation-name))
663
664 ;; Change any . or * characters in name to
665 ;; hyphens, so as to emulate behavior on X.
666 (while
667 (setq i (string-match "[.*]" argval))
668 (aset argval i ?-))
669 argval)))
670 default-frame-alist))
671 ((member argi '("-r" "-rv" "-reverse"))
672 (push '(reverse . t)
673 default-frame-alist))
674 ((equal argi "-color")
675 (unless argval (setq argval 8)) ; default --color means 8 ANSI colors
676 (push (cons 'tty-color-mode
677 (cond
678 ((numberp argval) argval)
679 ((string-match "-?[0-9]+" argval)
680 (string-to-number argval))
681 (t (intern argval))))
682 default-frame-alist))
683 (t
684 (push argi rest)))))
685 (nreverse rest)))
686
687 (declare-function x-get-resource "frame.c"
688 (attribute class &optional component subclass))
689 (declare-function tool-bar-mode "tool-bar" (&optional arg))
690 (declare-function tool-bar-setup "tool-bar")
691
692 (defvar server-name)
693 (defvar server-process)
694 ;; Autoload in package.el, but when we bootstrap, we don't have loaddefs yet.
695 (defvar package-enable-at-startup)
696 (declare-function package-initialize "package" ())
697
698 (defun command-line ()
699 (setq before-init-time (current-time)
700 after-init-time nil
701 command-line-default-directory default-directory)
702
703 ;; Force recomputation, in case it was computed during the dump.
704 (setq abbreviated-home-dir nil)
705
706 ;; See if we should import version-control from the environment variable.
707 (let ((vc (getenv "VERSION_CONTROL")))
708 (cond ((eq vc nil)) ;don't do anything if not set
709 ((member vc '("t" "numbered"))
710 (setq version-control t))
711 ((member vc '("nil" "existing"))
712 (setq version-control nil))
713 ((member vc '("never" "simple"))
714 (setq version-control 'never))))
715
716 ;;! This has been commented out; I currently find the behavior when
717 ;;! split-window-keep-point is nil disturbing, but if I can get used
718 ;;! to it, then it would be better to eliminate the option.
719 ;;! ;; Choose a good default value for split-window-keep-point.
720 ;;! (setq split-window-keep-point (> baud-rate 2400))
721
722 ;; Set the default strings to display in mode line for
723 ;; end-of-line formats that aren't native to this platform.
724 (cond
725 ((memq system-type '(ms-dos windows-nt))
726 (setq eol-mnemonic-unix "(Unix)"
727 eol-mnemonic-mac "(Mac)"))
728 (t ; this is for Unix/GNU/Linux systems
729 (setq eol-mnemonic-dos "(DOS)"
730 eol-mnemonic-mac "(Mac)")))
731
732 (set-locale-environment nil)
733
734 ;; Convert preloaded file names in load-history to absolute.
735 (let ((simple-file-name
736 ;; Look for simple.el or simple.elc and use their directory
737 ;; as the place where all Lisp files live.
738 (locate-file "simple" load-path (get-load-suffixes)))
739 lisp-dir)
740 ;; Don't abort if simple.el cannot be found, but print a warning.
741 (if (null simple-file-name)
742 (progn
743 (princ "Warning: Could not find simple.el nor simple.elc"
744 'external-debugging-output)
745 (terpri 'external-debugging-output))
746 (setq lisp-dir (file-truename (file-name-directory simple-file-name)))
747 (setq load-history
748 (mapcar (lambda (elt)
749 (if (and (stringp (car elt))
750 (not (file-name-absolute-p (car elt))))
751 (cons (concat lisp-dir
752 (car elt))
753 (cdr elt))
754 elt))
755 load-history))))
756
757 ;; Convert the arguments to Emacs internal representation.
758 (let ((args (cdr command-line-args)))
759 (while args
760 (setcar args
761 (decode-coding-string (car args) locale-coding-system t))
762 (pop args)))
763
764 (let ((done nil)
765 (args (cdr command-line-args))
766 display-arg)
767
768 ;; Figure out which user's init file to load,
769 ;; either from the environment or from the options.
770 (setq init-file-user (if noninteractive nil (user-login-name)))
771 ;; If user has not done su, use current $HOME to find .emacs.
772 (and init-file-user
773 (equal init-file-user (user-real-login-name))
774 (setq init-file-user ""))
775
776 ;; Process the command-line args, and delete the arguments
777 ;; processed. This is consistent with the way main in emacs.c
778 ;; does things.
779 (while (and (not done) args)
780 (let* ((longopts '(("--no-init-file") ("--no-site-file") ("--debug-init")
781 ("--user") ("--iconic") ("--icon-type") ("--quick")
782 ("--no-blinking-cursor") ("--basic-display")))
783 (argi (pop args))
784 (orig-argi argi)
785 argval)
786 ;; Handle --OPTION=VALUE format.
787 (when (string-match "\\`\\(--[^=]*\\)=" argi)
788 (setq argval (substring argi (match-end 0))
789 argi (match-string 1 argi)))
790 (when (string-match "\\`--." orig-argi)
791 (let ((completion (try-completion argi longopts)))
792 (cond ((eq completion t)
793 (setq argi (substring argi 1)))
794 ((stringp completion)
795 (let ((elt (assoc completion longopts)))
796 (unless elt
797 (error "Option `%s' is ambiguous" argi))
798 (setq argi (substring (car elt) 1))))
799 (t
800 (setq argval nil
801 argi orig-argi)))))
802 (cond
803 ;; The --display arg is handled partly in C, partly in Lisp.
804 ;; When it shows up here, we just put it back to be handled
805 ;; by `command-line-1'.
806 ((member argi '("-d" "-display"))
807 (setq display-arg (list argi (pop args))))
808 ((member argi '("-Q" "-quick"))
809 (setq init-file-user nil
810 site-run-file nil
811 inhibit-x-resources t))
812 ((member argi '("-D" "-basic-display"))
813 (setq no-blinking-cursor t
814 emacs-basic-display t)
815 (push '(vertical-scroll-bars . nil) initial-frame-alist))
816 ((member argi '("-q" "-no-init-file"))
817 (setq init-file-user nil))
818 ((member argi '("-u" "-user"))
819 (setq init-file-user (or argval (pop args))
820 argval nil))
821 ((equal argi "-no-site-file")
822 (setq site-run-file nil))
823 ((equal argi "-debug-init")
824 (setq init-file-debug t))
825 ((equal argi "-iconic")
826 (push '(visibility . icon) initial-frame-alist))
827 ((member argi '("-nbc" "-no-blinking-cursor"))
828 (setq no-blinking-cursor t))
829 ;; Push the popped arg back on the list of arguments.
830 (t
831 (push argi args)
832 (setq done t)))
833 ;; Was argval set but not used?
834 (and argval
835 (error "Option `%s' doesn't allow an argument" argi))))
836
837 ;; Re-attach the --display arg.
838 (and display-arg (setq args (append display-arg args)))
839
840 ;; Re-attach the program name to the front of the arg list.
841 (and command-line-args
842 (setcdr command-line-args args)))
843
844 ;; Make sure window system's init file was loaded in loadup.el if
845 ;; using a window system.
846 ;; Initialize the window-system only after processing the command-line
847 ;; args so that -Q can influence this initialization.
848 (condition-case error
849 (unless noninteractive
850 (if (and initial-window-system
851 (not (featurep
852 (intern
853 (concat (symbol-name initial-window-system) "-win")))))
854 (error "Unsupported window system `%s'" initial-window-system))
855 ;; Process window-system specific command line parameters.
856 (setq command-line-args
857 (funcall
858 (or (cdr (assq initial-window-system handle-args-function-alist))
859 (error "Unsupported window system `%s'" initial-window-system))
860 command-line-args))
861 ;; Initialize the window system. (Open connection, etc.)
862 (funcall
863 (or (cdr (assq initial-window-system window-system-initialization-alist))
864 (error "Unsupported window system `%s'" initial-window-system))))
865 ;; If there was an error, print the error message and exit.
866 (error
867 (princ
868 (if (eq (car error) 'error)
869 (apply 'concat (cdr error))
870 (if (memq 'file-error (get (car error) 'error-conditions))
871 (format "%s: %s"
872 (nth 1 error)
873 (mapconcat (lambda (obj) (prin1-to-string obj t))
874 (cdr (cdr error)) ", "))
875 (format "%s: %s"
876 (get (car error) 'error-message)
877 (mapconcat (lambda (obj) (prin1-to-string obj t))
878 (cdr error) ", "))))
879 'external-debugging-output)
880 (terpri 'external-debugging-output)
881 (setq initial-window-system nil)
882 (kill-emacs)))
883
884 (run-hooks 'before-init-hook)
885
886 ;; Under X, this creates the X frame and deletes the terminal frame.
887 (unless (daemonp)
888 ;; Enable or disable the tool-bar and menu-bar.
889 ;; While we're at it, set `no-blinking-cursor' too.
890 (cond
891 ((or noninteractive emacs-basic-display)
892 (setq menu-bar-mode nil
893 tool-bar-mode nil
894 no-blinking-cursor t))
895 ;; Check X resources if available.
896 ((memq initial-window-system '(x w32 ns))
897 (let ((no-vals '("no" "off" "false" "0")))
898 (if (member (x-get-resource "menuBar" "MenuBar") no-vals)
899 (setq menu-bar-mode nil))
900 (if (member (x-get-resource "toolBar" "ToolBar") no-vals)
901 (setq tool-bar-mode nil))
902 (if (member (x-get-resource "cursorBlink" "CursorBlink")
903 no-vals)
904 (setq no-blinking-cursor t)))))
905 (frame-initialize))
906
907 (when (fboundp 'x-create-frame)
908 ;; Set up the tool-bar (even in tty frames, since Emacs might open a
909 ;; graphical frame later).
910 (unless noninteractive
911 (tool-bar-setup)))
912
913 ;; Turn off blinking cursor if so specified in X resources. This is here
914 ;; only because all other settings of no-blinking-cursor are here.
915 (unless (or noninteractive
916 emacs-basic-display
917 (and (memq window-system '(x w32 ns))
918 (not (member (x-get-resource "cursorBlink" "CursorBlink")
919 '("off" "false")))))
920 (setq no-blinking-cursor t))
921
922 ;; Re-evaluate predefined variables whose initial value depends on
923 ;; the runtime context.
924 (mapc 'custom-reevaluate-setting
925 ;; Initialize them in the same order they were loaded, in case there
926 ;; are dependencies between them.
927 (prog1 (nreverse custom-delayed-init-variables)
928 (setq custom-delayed-init-variables nil)))
929
930 (normal-erase-is-backspace-setup-frame)
931
932 ;; Register default TTY colors for the case the terminal hasn't a
933 ;; terminal init file. We do this regardles of whether the terminal
934 ;; supports colors or not and regardless the current display type,
935 ;; since users can connect to color-capable terminals and also
936 ;; switch color support on or off in mid-session by setting the
937 ;; tty-color-mode frame parameter.
938 ;; Exception: the `pc' ``window system'' has only 16 fixed colors,
939 ;; and they are already set at this point by a suitable function in
940 ;; window-system-initialization-alist.
941 (or (eq initial-window-system 'pc)
942 (tty-register-default-colors))
943
944 ;; Record whether the tool-bar is present before the user and site
945 ;; init files are processed. frame-notice-user-settings uses this
946 ;; to determine if the tool-bar has been disabled by the init files,
947 ;; and the frame needs to be resized.
948 (when (fboundp 'frame-notice-user-settings)
949 (let ((tool-bar-lines (or (assq 'tool-bar-lines initial-frame-alist)
950 (assq 'tool-bar-lines default-frame-alist))))
951 (setq tool-bar-originally-present
952 (and tool-bar-lines
953 (cdr tool-bar-lines)
954 (not (eq 0 (cdr tool-bar-lines)))))))
955
956 (let ((old-scalable-fonts-allowed scalable-fonts-allowed)
957 (old-font-list-limit font-list-limit)
958 (old-face-ignored-fonts face-ignored-fonts))
959
960 ;; Run the site-start library if it exists. The point of this file is
961 ;; that it is run before .emacs. There is no point in doing this after
962 ;; .emacs; that is useless.
963 ;; Note that user-init-file is nil at this point. Code that might
964 ;; be loaded from site-run-file and wants to test if -q was given
965 ;; should check init-file-user instead, since that is already set.
966 ;; See cus-edit.el for an example.
967 (if site-run-file
968 (load site-run-file t t))
969
970 ;; Sites should not disable this. Only individuals should disable
971 ;; the startup screen.
972 (setq inhibit-startup-screen nil)
973
974 ;; Warn for invalid user name.
975 (when init-file-user
976 (if (string-match "[~/:\n]" init-file-user)
977 (display-warning 'initialization
978 (format "Invalid user name %s"
979 init-file-user)
980 :error)
981 (if (file-directory-p (expand-file-name
982 ;; We don't support ~USER on MS-Windows
983 ;; and MS-DOS except for the current
984 ;; user, and always load .emacs from
985 ;; the current user's home directory
986 ;; (see below). So always check "~",
987 ;; even if invoked with "-u USER", or
988 ;; if $USER or $LOGNAME are set to
989 ;; something different.
990 (if (memq system-type '(windows-nt ms-dos))
991 "~"
992 (concat "~" init-file-user))))
993 nil
994 (display-warning 'initialization
995 (format "User %s has no home directory"
996 init-file-user)
997 :error))))
998
999 ;; Load that user's init file, or the default one, or none.
1000 (let (debug-on-error-from-init-file
1001 debug-on-error-should-be-set
1002 (debug-on-error-initial
1003 (if (eq init-file-debug t) 'startup init-file-debug))
1004 (orig-enable-multibyte (default-value 'enable-multibyte-characters)))
1005 (let ((debug-on-error debug-on-error-initial)
1006 ;; This function actually reads the init files.
1007 (inner
1008 (function
1009 (lambda ()
1010 (if init-file-user
1011 (let ((user-init-file-1
1012 (cond
1013 ((eq system-type 'ms-dos)
1014 (concat "~" init-file-user "/_emacs"))
1015 ((eq system-type 'windows-nt)
1016 ;; Prefer .emacs on Windows.
1017 (if (directory-files "~" nil "^\\.emacs\\(\\.elc?\\)?$")
1018 "~/.emacs"
1019 ;; Also support _emacs for compatibility.
1020 (if (directory-files "~" nil "^_emacs\\(\\.elc?\\)?$")
1021 "~/_emacs"
1022 ;; But default to .emacs if _emacs does not exist.
1023 "~/.emacs")))
1024 (t
1025 (concat "~" init-file-user "/.emacs")))))
1026 ;; This tells `load' to store the file name found
1027 ;; into user-init-file.
1028 (setq user-init-file t)
1029 (load user-init-file-1 t t)
1030
1031 (when (eq user-init-file t)
1032 ;; If we did not find ~/.emacs, try
1033 ;; ~/.emacs.d/init.el.
1034 (let ((otherfile
1035 (expand-file-name
1036 "init"
1037 (file-name-as-directory
1038 (concat "~" init-file-user "/.emacs.d")))))
1039 (load otherfile t t)
1040
1041 ;; If we did not find the user's init file,
1042 ;; set user-init-file conclusively.
1043 ;; Don't let it be set from default.el.
1044 (when (eq user-init-file t)
1045 (setq user-init-file user-init-file-1))))
1046
1047 ;; If we loaded a compiled file, set
1048 ;; `user-init-file' to the source version if that
1049 ;; exists.
1050 (when (and user-init-file
1051 (equal (file-name-extension user-init-file)
1052 "elc"))
1053 (let* ((source (file-name-sans-extension user-init-file))
1054 (alt (concat source ".el")))
1055 (setq source (cond ((file-exists-p alt) alt)
1056 ((file-exists-p source) source)
1057 (t nil)))
1058 (when source
1059 (when (file-newer-than-file-p source user-init-file)
1060 (message "Warning: %s is newer than %s"
1061 source user-init-file)
1062 (sit-for 1))
1063 (setq user-init-file source))))
1064
1065 (unless inhibit-default-init
1066 (let ((inhibit-startup-screen nil))
1067 ;; Users are supposed to be told their rights.
1068 ;; (Plus how to get help and how to undo.)
1069 ;; Don't you dare turn this off for anyone
1070 ;; except yourself.
1071 (load "default" t t)))))))))
1072 (if init-file-debug
1073 ;; Do this without a condition-case if the user wants to debug.
1074 (funcall inner)
1075 (condition-case error
1076 (progn
1077 (funcall inner)
1078 (setq init-file-had-error nil))
1079 (error
1080 (display-warning
1081 'initialization
1082 (format "An error occurred while loading `%s':\n\n%s%s%s\n\n\
1083 To ensure normal operation, you should investigate and remove the
1084 cause of the error in your initialization file. Start Emacs with
1085 the `--debug-init' option to view a complete error backtrace."
1086 user-init-file
1087 (get (car error) 'error-message)
1088 (if (cdr error) ": " "")
1089 (mapconcat (lambda (s) (prin1-to-string s t)) (cdr error) ", "))
1090 :warning)
1091 (setq init-file-had-error t))))
1092
1093 (if (and deactivate-mark transient-mark-mode)
1094 (with-current-buffer (window-buffer)
1095 (deactivate-mark)))
1096
1097 ;; If the user has a file of abbrevs, read it (unless -batch).
1098 (when (and (not noninteractive)
1099 (file-exists-p abbrev-file-name)
1100 (file-readable-p abbrev-file-name))
1101 (quietly-read-abbrev-file abbrev-file-name))
1102
1103 ;; If the abbrevs came entirely from the init file or the
1104 ;; abbrevs file, they do not need saving.
1105 (setq abbrevs-changed nil)
1106
1107 ;; If we can tell that the init file altered debug-on-error,
1108 ;; arrange to preserve the value that it set up.
1109 (or (eq debug-on-error debug-on-error-initial)
1110 (setq debug-on-error-should-be-set t
1111 debug-on-error-from-init-file debug-on-error)))
1112 (if debug-on-error-should-be-set
1113 (setq debug-on-error debug-on-error-from-init-file))
1114 (unless (or (default-value 'enable-multibyte-characters)
1115 (eq orig-enable-multibyte (default-value
1116 'enable-multibyte-characters)))
1117 ;; Init file changed to unibyte. Reset existing multibyte
1118 ;; buffers (probably *scratch*, *Messages*, *Minibuff-0*).
1119 ;; Arguably this should only be done if they're free of
1120 ;; multibyte characters.
1121 (mapc (lambda (buffer)
1122 (with-current-buffer buffer
1123 (if enable-multibyte-characters
1124 (set-buffer-multibyte nil))))
1125 (buffer-list))
1126 ;; Also re-set the language environment in case it was
1127 ;; originally done before unibyte was set and is sensitive to
1128 ;; unibyte (display table, terminal coding system &c).
1129 (set-language-environment current-language-environment)))
1130
1131 ;; Do this here in case the init file sets mail-host-address.
1132 (if (equal user-mail-address "")
1133 (setq user-mail-address (or (getenv "EMAIL")
1134 (concat (user-login-name) "@"
1135 (or mail-host-address
1136 (system-name))))))
1137
1138 ;; Originally face attributes were specified via
1139 ;; `font-lock-face-attributes'. Users then changed the default
1140 ;; face attributes by setting that variable. However, we try and
1141 ;; be back-compatible and respect its value if set except for
1142 ;; faces where M-x customize has been used to save changes for the
1143 ;; face.
1144 (when (boundp 'font-lock-face-attributes)
1145 (let ((face-attributes font-lock-face-attributes))
1146 (while face-attributes
1147 (let* ((face-attribute (pop face-attributes))
1148 (face (car face-attribute)))
1149 ;; Rustle up a `defface' SPEC from a
1150 ;; `font-lock-face-attributes' entry.
1151 (unless (get face 'saved-face)
1152 (let ((foreground (nth 1 face-attribute))
1153 (background (nth 2 face-attribute))
1154 (bold-p (nth 3 face-attribute))
1155 (italic-p (nth 4 face-attribute))
1156 (underline-p (nth 5 face-attribute))
1157 face-spec)
1158 (when foreground
1159 (setq face-spec (cons ':foreground (cons foreground face-spec))))
1160 (when background
1161 (setq face-spec (cons ':background (cons background face-spec))))
1162 (when bold-p
1163 (setq face-spec (append '(:weight bold) face-spec)))
1164 (when italic-p
1165 (setq face-spec (append '(:slant italic) face-spec)))
1166 (when underline-p
1167 (setq face-spec (append '(:underline t) face-spec)))
1168 (face-spec-set face (list (list t face-spec)) nil)))))))
1169
1170 ;; If parameter have been changed in the init file which influence
1171 ;; face realization, clear the face cache so that new faces will
1172 ;; be realized.
1173 (unless (and (eq scalable-fonts-allowed old-scalable-fonts-allowed)
1174 (eq font-list-limit old-font-list-limit)
1175 (eq face-ignored-fonts old-face-ignored-fonts))
1176 (clear-face-cache)))
1177
1178 ;; If any package directory exists, initialize the package system.
1179 (and user-init-file
1180 package-enable-at-startup
1181 (catch 'package-dir-found
1182 (let (dirs)
1183 (if (boundp 'package-directory-list)
1184 (setq dirs package-directory-list)
1185 (dolist (f load-path)
1186 (and (stringp f)
1187 (equal (file-name-nondirectory f) "site-lisp")
1188 (push (expand-file-name "elpa" f) dirs))))
1189 (push (if (boundp 'package-user-dir)
1190 package-user-dir
1191 (locate-user-emacs-file "elpa"))
1192 dirs)
1193 (dolist (dir dirs)
1194 (when (file-directory-p dir)
1195 (dolist (subdir (directory-files dir))
1196 (when (and (file-directory-p (expand-file-name subdir dir))
1197 ;; package-subdirectory-regexp from package.el
1198 (string-match "^\\([^.].*\\)-\\([0-9]+\\(?:[.][0-9]+\\)*\\)$"
1199 subdir))
1200 (throw 'package-dir-found t)))))))
1201 (package-initialize))
1202
1203 (setq after-init-time (current-time))
1204 (run-hooks 'after-init-hook)
1205
1206 ;; Decode all default-directory.
1207 (if (and (default-value 'enable-multibyte-characters) locale-coding-system)
1208 (save-excursion
1209 (dolist (elt (buffer-list))
1210 (set-buffer elt)
1211 (if default-directory
1212 (setq default-directory
1213 (decode-coding-string default-directory
1214 locale-coding-system t))))
1215 (setq command-line-default-directory
1216 (decode-coding-string command-line-default-directory
1217 locale-coding-system t))))
1218
1219 ;; If *scratch* exists and init file didn't change its mode, initialize it.
1220 (if (get-buffer "*scratch*")
1221 (with-current-buffer "*scratch*"
1222 (if (eq major-mode 'fundamental-mode)
1223 (funcall initial-major-mode))))
1224
1225 ;; Load library for our terminal type.
1226 ;; User init file can set term-file-prefix to nil to prevent this.
1227 (unless (or noninteractive
1228 initial-window-system)
1229 (tty-run-terminal-initialization (selected-frame)))
1230
1231 ;; Update the out-of-memory error message based on user's key bindings
1232 ;; for save-some-buffers.
1233 (setq memory-signal-data
1234 (list 'error
1235 (substitute-command-keys "Memory exhausted--use \\[save-some-buffers] then exit and restart Emacs")))
1236
1237 ;; Process the remaining args.
1238 (command-line-1 (cdr command-line-args))
1239
1240 ;; If -batch, terminate after processing the command options.
1241 (if noninteractive (kill-emacs t))
1242
1243 ;; In daemon mode, start the server to allow clients to connect.
1244 ;; This is done after loading the user's init file and after
1245 ;; processing all command line arguments to allow e.g. `server-name'
1246 ;; to be changed before the server starts.
1247 (let ((dn (daemonp)))
1248 (when dn
1249 (when (stringp dn) (setq server-name dn))
1250 (server-start)
1251 (if server-process
1252 (daemon-initialized)
1253 (if (stringp dn)
1254 (message
1255 "Unable to start daemon: Emacs server named %S already running"
1256 server-name)
1257 (message "Unable to start the daemon.\nAnother instance of Emacs is running the server, either as daemon or interactively.\nYou can use emacsclient to connect to that Emacs process."))
1258 (kill-emacs 1))))
1259
1260 ;; Run emacs-session-restore (session management) if started by
1261 ;; the session manager and we have a session manager connection.
1262 (if (and (boundp 'x-session-previous-id)
1263 (stringp x-session-previous-id))
1264 (with-no-warnings
1265 (emacs-session-restore x-session-previous-id))))
1266
1267 (defcustom initial-scratch-message (purecopy "\
1268 ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
1269 ;; If you want to create a file, visit that file with C-x C-f,
1270 ;; then enter the text in that file's own buffer.
1271
1272 ")
1273 "Initial message displayed in *scratch* buffer at startup.
1274 If this is nil, no message will be displayed."
1275 :type '(choice (text :tag "Message")
1276 (const :tag "none" nil))
1277 :group 'initialization)
1278
1279 \f
1280 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1281 ;;; Fancy splash screen
1282 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1283
1284 (defconst fancy-startup-text
1285 '((:face (variable-pitch (:foreground "red"))
1286 "Welcome to "
1287 :link ("GNU Emacs"
1288 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/"))
1289 "Browse http://www.gnu.org/software/emacs/")
1290 ", one component of the "
1291 :link
1292 (lambda ()
1293 (if (eq system-type 'gnu/linux)
1294 '("GNU/Linux"
1295 (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html"))
1296 "Browse http://www.gnu.org/gnu/linux-and-gnu.html")
1297 '("GNU" (lambda (button) (describe-gnu-project))
1298 "Display info on the GNU project")))
1299 " operating system.\n\n"
1300 :face variable-pitch
1301 :link ("Emacs Tutorial" (lambda (button) (help-with-tutorial)))
1302 "\tLearn basic keystroke commands"
1303 (lambda ()
1304 (let* ((en "TUTORIAL")
1305 (tut (or (get-language-info current-language-environment
1306 'tutorial)
1307 en))
1308 (title (with-temp-buffer
1309 (insert-file-contents
1310 (expand-file-name tut tutorial-directory)
1311 nil 0 256)
1312 (search-forward ".")
1313 (buffer-substring (point-min) (1- (point))))))
1314 ;; If there is a specific tutorial for the current language
1315 ;; environment and it is not English, append its title.
1316 (if (string= en tut)
1317 ""
1318 (concat " (" title ")"))))
1319 "\n"
1320 :link ("Emacs Guided Tour"
1321 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/tour/"))
1322 "Browse http://www.gnu.org/software/emacs/tour/")
1323 "\tOverview of Emacs features at gnu.org\n"
1324 :link ("View Emacs Manual" (lambda (button) (info-emacs-manual)))
1325 "\tView the Emacs manual using Info\n"
1326 :link ("Absence of Warranty" (lambda (button) (describe-no-warranty)))
1327 "\tGNU Emacs comes with "
1328 :face (variable-pitch (:slant oblique))
1329 "ABSOLUTELY NO WARRANTY\n"
1330 :face variable-pitch
1331 :link ("Copying Conditions" (lambda (button) (describe-copying)))
1332 "\tConditions for redistributing and changing Emacs\n"
1333 :link ("Ordering Manuals" (lambda (button) (view-order-manuals)))
1334 "\tPurchasing printed copies of manuals\n"
1335 "\n"))
1336 "A list of texts to show in the middle part of splash screens.
1337 Each element in the list should be a list of strings or pairs
1338 `:face FACE', like `fancy-splash-insert' accepts them.")
1339
1340 (defconst fancy-about-text
1341 '((:face (variable-pitch (:foreground "red"))
1342 "This is "
1343 :link ("GNU Emacs"
1344 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/"))
1345 "Browse http://www.gnu.org/software/emacs/")
1346 ", one component of the "
1347 :link
1348 (lambda ()
1349 (if (eq system-type 'gnu/linux)
1350 '("GNU/Linux"
1351 (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html"))
1352 "Browse http://www.gnu.org/gnu/linux-and-gnu.html")
1353 '("GNU" (lambda (button) (describe-gnu-project))
1354 "Display info on the GNU project.")))
1355 " operating system.\n"
1356 :face (lambda ()
1357 (list 'variable-pitch
1358 (list :foreground
1359 (if (eq (frame-parameter nil 'background-mode) 'dark)
1360 "cyan" "darkblue"))))
1361 "\n"
1362 (lambda () (emacs-version))
1363 "\n"
1364 :face (variable-pitch (:height 0.8))
1365 (lambda () emacs-copyright)
1366 "\n\n"
1367 :face variable-pitch
1368 :link ("Authors"
1369 (lambda (button)
1370 (view-file (expand-file-name "AUTHORS" data-directory))
1371 (goto-char (point-min))))
1372 "\tMany people have contributed code included in GNU Emacs\n"
1373 :link ("Contributing"
1374 (lambda (button)
1375 (view-file (expand-file-name "CONTRIBUTE" data-directory))
1376 (goto-char (point-min))))
1377 "\tHow to contribute improvements to Emacs\n"
1378 "\n"
1379 :link ("GNU and Freedom" (lambda (button) (describe-gnu-project)))
1380 "\tWhy we developed GNU Emacs, and the GNU operating system\n"
1381 :link ("Absence of Warranty" (lambda (button) (describe-no-warranty)))
1382 "\tGNU Emacs comes with "
1383 :face (variable-pitch (:slant oblique))
1384 "ABSOLUTELY NO WARRANTY\n"
1385 :face variable-pitch
1386 :link ("Copying Conditions" (lambda (button) (describe-copying)))
1387 "\tConditions for redistributing and changing Emacs\n"
1388 :link ("Getting New Versions" (lambda (button) (describe-distribution)))
1389 "\tHow to obtain the latest version of Emacs\n"
1390 :link ("Ordering Manuals" (lambda (button) (view-order-manuals)))
1391 "\tBuying printed manuals from the FSF\n"
1392 "\n"
1393 :link ("Emacs Tutorial" (lambda (button) (help-with-tutorial)))
1394 "\tLearn basic Emacs keystroke commands"
1395 (lambda ()
1396 (let* ((en "TUTORIAL")
1397 (tut (or (get-language-info current-language-environment
1398 'tutorial)
1399 en))
1400 (title (with-temp-buffer
1401 (insert-file-contents
1402 (expand-file-name tut tutorial-directory)
1403 nil 0 256)
1404 (search-forward ".")
1405 (buffer-substring (point-min) (1- (point))))))
1406 ;; If there is a specific tutorial for the current language
1407 ;; environment and it is not English, append its title.
1408 (if (string= en tut)
1409 ""
1410 (concat " (" title ")"))))
1411 "\n"
1412 :link ("Emacs Guided Tour"
1413 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/tour/"))
1414 "Browse http://www.gnu.org/software/emacs/tour/")
1415 "\tSee an overview of Emacs features at gnu.org"
1416 ))
1417 "A list of texts to show in the middle part of the About screen.
1418 Each element in the list should be a list of strings or pairs
1419 `:face FACE', like `fancy-splash-insert' accepts them.")
1420
1421
1422 (defgroup fancy-splash-screen ()
1423 "Fancy splash screen when Emacs starts."
1424 :version "21.1"
1425 :group 'initialization)
1426
1427 (defcustom fancy-splash-image nil
1428 "The image to show in the splash screens, or nil for defaults."
1429 :group 'fancy-splash-screen
1430 :type '(choice (const :tag "Default" nil)
1431 (file :tag "File")))
1432
1433
1434 (defvar splash-screen-keymap
1435 (let ((map (make-sparse-keymap)))
1436 (suppress-keymap map)
1437 (set-keymap-parent map button-buffer-map)
1438 (define-key map "\C-?" 'scroll-down)
1439 (define-key map " " 'scroll-up)
1440 (define-key map "q" 'exit-splash-screen)
1441 map)
1442 "Keymap for splash screen buffer.")
1443
1444 ;; These are temporary storage areas for the splash screen display.
1445
1446 (defun fancy-splash-insert (&rest args)
1447 "Insert text into the current buffer, with faces.
1448 Arguments from ARGS should be either strings; functions called
1449 with no args that return a string; pairs `:face FACE', where FACE
1450 is a face specification usable with `put-text-property'; or pairs
1451 `:link LINK' where LINK is a list of arguments to pass to
1452 `insert-button', of the form (LABEL ACTION [HELP-ECHO]), which
1453 specifies the button's label, `action' property and help-echo string.
1454 FACE and LINK can also be functions, which are evaluated to obtain
1455 a face or button specification."
1456 (let ((current-face nil))
1457 (while args
1458 (cond ((eq (car args) :face)
1459 (setq args (cdr args) current-face (car args))
1460 (if (functionp current-face)
1461 (setq current-face (funcall current-face))))
1462 ((eq (car args) :link)
1463 (setq args (cdr args))
1464 (let ((spec (car args)))
1465 (if (functionp spec)
1466 (setq spec (funcall spec)))
1467 (insert-button (car spec)
1468 'face (list 'link current-face)
1469 'action (cadr spec)
1470 'help-echo (concat "mouse-2, RET: "
1471 (or (nth 2 spec)
1472 "Follow this link"))
1473 'follow-link t)))
1474 (t (insert (propertize (let ((it (car args)))
1475 (if (functionp it)
1476 (funcall it)
1477 it))
1478 'face current-face
1479 'help-echo (startup-echo-area-message)))))
1480 (setq args (cdr args)))))
1481
1482 (declare-function image-size "image.c" (spec &optional pixels frame))
1483
1484 (defun fancy-splash-head ()
1485 "Insert the head part of the splash screen into the current buffer."
1486 (let* ((image-file (cond ((stringp fancy-splash-image)
1487 fancy-splash-image)
1488 ((display-color-p)
1489 (cond ((<= (display-planes) 8)
1490 (if (image-type-available-p 'xpm)
1491 "splash.xpm"
1492 "splash.pbm"))
1493 ((image-type-available-p 'svg)
1494 "splash.svg")
1495 ((image-type-available-p 'png)
1496 "splash.png")
1497 ((image-type-available-p 'xpm)
1498 "splash.xpm")
1499 (t "splash.pbm")))
1500 (t "splash.pbm")))
1501 (img (create-image image-file))
1502 (image-width (and img (car (image-size img))))
1503 (window-width (window-width (selected-window))))
1504 (when img
1505 (when (> window-width image-width)
1506 ;; Center the image in the window.
1507 (insert (propertize " " 'display
1508 `(space :align-to (+ center (-0.5 . ,img)))))
1509
1510 ;; Change the color of the XPM version of the splash image
1511 ;; so that it is visible with a dark frame background.
1512 (when (and (memq 'xpm img)
1513 (eq (frame-parameter nil 'background-mode) 'dark))
1514 (setq img (append img '(:color-symbols (("#000000" . "gray30"))))))
1515
1516 ;; Insert the image with a help-echo and a link.
1517 (make-button (prog1 (point) (insert-image img)) (point)
1518 'face 'default
1519 'help-echo "mouse-2, RET: Browse http://www.gnu.org/"
1520 'action (lambda (button) (browse-url "http://www.gnu.org/"))
1521 'follow-link t)
1522 (insert "\n\n")))))
1523
1524 (defun fancy-startup-tail (&optional concise)
1525 "Insert the tail part of the splash screen into the current buffer."
1526 (let ((fg (if (eq (frame-parameter nil 'background-mode) 'dark)
1527 "cyan" "darkblue")))
1528 (unless concise
1529 (fancy-splash-insert
1530 :face 'variable-pitch
1531 "\nTo start... "
1532 :link '("Open a File"
1533 (lambda (button) (call-interactively 'find-file))
1534 "Specify a new file's name, to edit the file")
1535 " "
1536 :link '("Open Home Directory"
1537 (lambda (button) (dired "~"))
1538 "Open your home directory, to operate on its files")
1539 " "
1540 :link '("Customize Startup"
1541 (lambda (button) (customize-group 'initialization))
1542 "Change initialization settings including this screen")
1543 "\n"))
1544 (fancy-splash-insert
1545 :face 'variable-pitch "To quit a partially entered command, type "
1546 :face 'default "Control-g"
1547 :face 'variable-pitch ".\n")
1548 (fancy-splash-insert :face `(variable-pitch (:foreground ,fg))
1549 "\nThis is "
1550 (emacs-version)
1551 "\n"
1552 :face '(variable-pitch (:height 0.8))
1553 emacs-copyright
1554 "\n")
1555 (and auto-save-list-file-prefix
1556 ;; Don't signal an error if the
1557 ;; directory for auto-save-list files
1558 ;; does not yet exist.
1559 (file-directory-p (file-name-directory
1560 auto-save-list-file-prefix))
1561 (directory-files
1562 (file-name-directory auto-save-list-file-prefix)
1563 nil
1564 (concat "\\`"
1565 (regexp-quote (file-name-nondirectory
1566 auto-save-list-file-prefix)))
1567 t)
1568 (fancy-splash-insert :face '(variable-pitch (:foreground "red"))
1569 "\nIf an Emacs session crashed recently, "
1570 "type "
1571 :face '(fixed-pitch :foreground "red")
1572 "Meta-x recover-session RET"
1573 :face '(variable-pitch (:foreground "red"))
1574 "\nto recover"
1575 " the files you were editing."))
1576
1577 (when concise
1578 (fancy-splash-insert
1579 :face 'variable-pitch "\n"
1580 :link '("Dismiss this startup screen"
1581 (lambda (button)
1582 (when startup-screen-inhibit-startup-screen
1583 (customize-set-variable 'inhibit-startup-screen t)
1584 (customize-mark-to-save 'inhibit-startup-screen)
1585 (custom-save-all))
1586 (let ((w (get-buffer-window "*GNU Emacs*")))
1587 (and w (not (one-window-p)) (delete-window w)))
1588 (kill-buffer "*GNU Emacs*")))
1589 " ")
1590 (when (or user-init-file custom-file)
1591 (let ((checked (create-image "checked.xpm"
1592 nil nil :ascent 'center))
1593 (unchecked (create-image "unchecked.xpm"
1594 nil nil :ascent 'center)))
1595 (insert-button
1596 " "
1597 :on-glyph checked
1598 :off-glyph unchecked
1599 'checked nil 'display unchecked 'follow-link t
1600 'action (lambda (button)
1601 (if (overlay-get button 'checked)
1602 (progn (overlay-put button 'checked nil)
1603 (overlay-put button 'display
1604 (overlay-get button :off-glyph))
1605 (setq startup-screen-inhibit-startup-screen
1606 nil))
1607 (overlay-put button 'checked t)
1608 (overlay-put button 'display
1609 (overlay-get button :on-glyph))
1610 (setq startup-screen-inhibit-startup-screen t)))))
1611 (fancy-splash-insert :face '(variable-pitch (:height 0.9))
1612 " Never show it again.")))))
1613
1614 (defun exit-splash-screen ()
1615 "Stop displaying the splash screen buffer."
1616 (interactive)
1617 (quit-window t))
1618
1619 (defun fancy-startup-screen (&optional concise)
1620 "Display fancy startup screen.
1621 If CONCISE is non-nil, display a concise version of the
1622 splash screen in another window."
1623 (let ((splash-buffer (get-buffer-create "*GNU Emacs*")))
1624 (with-current-buffer splash-buffer
1625 (let ((inhibit-read-only t))
1626 (erase-buffer)
1627 (setq default-directory command-line-default-directory)
1628 (make-local-variable 'startup-screen-inhibit-startup-screen)
1629 (if pure-space-overflow
1630 (insert pure-space-overflow-message))
1631 (unless concise
1632 (fancy-splash-head))
1633 (dolist (text fancy-startup-text)
1634 (apply #'fancy-splash-insert text)
1635 (insert "\n"))
1636 (skip-chars-backward "\n")
1637 (delete-region (point) (point-max))
1638 (insert "\n")
1639 (fancy-startup-tail concise))
1640 (use-local-map splash-screen-keymap)
1641 (setq tab-width 22
1642 buffer-read-only t)
1643 (set-buffer-modified-p nil)
1644 (if (and view-read-only (not view-mode))
1645 (view-mode-enter nil 'kill-buffer))
1646 (goto-char (point-min))
1647 (forward-line (if concise 2 4)))
1648 (if concise
1649 (progn
1650 (display-buffer splash-buffer)
1651 ;; If the splash screen is in a split window, fit it.
1652 (let ((window (get-buffer-window splash-buffer t)))
1653 (or (null window)
1654 (eq window (selected-window))
1655 (eq window (next-window window))
1656 (fit-window-to-buffer window))))
1657 (switch-to-buffer splash-buffer))))
1658
1659 (defun fancy-about-screen ()
1660 "Display fancy About screen."
1661 (let ((frame (fancy-splash-frame)))
1662 (save-selected-window
1663 (select-frame frame)
1664 (switch-to-buffer "*About GNU Emacs*")
1665 (setq buffer-undo-list t
1666 mode-line-format
1667 (concat "----"
1668 (propertize "%b" 'face 'mode-line-buffer-id)
1669 "%-"))
1670 (let ((inhibit-read-only t))
1671 (erase-buffer)
1672 (if pure-space-overflow
1673 (insert pure-space-overflow-message))
1674 (fancy-splash-head)
1675 (dolist (text fancy-about-text)
1676 (apply #'fancy-splash-insert text)
1677 (insert "\n"))
1678 (set-buffer-modified-p nil)
1679 (goto-char (point-min))
1680 (force-mode-line-update))
1681 (use-local-map splash-screen-keymap)
1682 (setq tab-width 22)
1683 (message "%s" (startup-echo-area-message))
1684 (setq buffer-read-only t)
1685 (goto-char (point-min))
1686 (forward-line 3))))
1687
1688 (defun fancy-splash-frame ()
1689 "Return the frame to use for the fancy splash screen.
1690 Returning non-nil does not mean we should necessarily
1691 use the fancy splash screen, but if we do use it,
1692 we put it on this frame."
1693 (let (chosen-frame)
1694 (dolist (frame (append (frame-list) (list (selected-frame))))
1695 (if (and (frame-visible-p frame)
1696 (not (window-minibuffer-p (frame-selected-window frame))))
1697 (setq chosen-frame frame)))
1698 chosen-frame))
1699
1700 (defun use-fancy-splash-screens-p ()
1701 "Return t if fancy splash screens should be used."
1702 (when (and (display-graphic-p)
1703 (or (and (display-color-p)
1704 (image-type-available-p 'xpm))
1705 (image-type-available-p 'pbm)))
1706 (let ((frame (fancy-splash-frame)))
1707 (when frame
1708 (let* ((img (create-image (or fancy-splash-image
1709 (if (and (display-color-p)
1710 (image-type-available-p 'xpm))
1711 "splash.xpm" "splash.pbm"))))
1712 (image-height (and img (cdr (image-size img nil frame))))
1713 ;; We test frame-height so that, if the frame is split
1714 ;; by displaying a warning, that doesn't cause the normal
1715 ;; splash screen to be used.
1716 (frame-height (1- (frame-height frame))))
1717 (> frame-height (+ image-height 19)))))))
1718
1719
1720 (defun normal-splash-screen (&optional startup concise)
1721 "Display non-graphic splash screen.
1722 If optional argument STARTUP is non-nil, display the startup screen
1723 after Emacs starts. If STARTUP is nil, display the About screen.
1724 If CONCISE is non-nil, display a concise version of the
1725 splash screen in another window."
1726 (let ((splash-buffer (get-buffer-create "*About GNU Emacs*")))
1727 (with-current-buffer splash-buffer
1728 (setq buffer-read-only nil)
1729 (erase-buffer)
1730 (setq default-directory command-line-default-directory)
1731 (set (make-local-variable 'tab-width) 8)
1732 (if (not startup)
1733 (set (make-local-variable 'mode-line-format)
1734 (propertize "---- %b %-" 'face 'mode-line-buffer-id)))
1735
1736 (if pure-space-overflow
1737 (insert pure-space-overflow-message))
1738
1739 ;; The convention for this piece of code is that
1740 ;; each piece of output starts with one or two newlines
1741 ;; and does not end with any newlines.
1742 (insert (if startup "Welcome to GNU Emacs" "This is GNU Emacs"))
1743 (insert
1744 (if (eq system-type 'gnu/linux)
1745 ", one component of the GNU/Linux operating system.\n"
1746 ", a part of the GNU operating system.\n"))
1747
1748 (if startup
1749 (if (display-mouse-p)
1750 ;; The user can use the mouse to activate menus
1751 ;; so give help in terms of menu items.
1752 (normal-mouse-startup-screen)
1753
1754 ;; No mouse menus, so give help using kbd commands.
1755 (normal-no-mouse-startup-screen))
1756
1757 (normal-about-screen))
1758
1759 ;; The rest of the startup screen is the same on all
1760 ;; kinds of terminals.
1761
1762 ;; Give information on recovering, if there was a crash.
1763 (and startup
1764 auto-save-list-file-prefix
1765 ;; Don't signal an error if the
1766 ;; directory for auto-save-list files
1767 ;; does not yet exist.
1768 (file-directory-p (file-name-directory
1769 auto-save-list-file-prefix))
1770 (directory-files
1771 (file-name-directory auto-save-list-file-prefix)
1772 nil
1773 (concat "\\`"
1774 (regexp-quote (file-name-nondirectory
1775 auto-save-list-file-prefix)))
1776 t)
1777 (insert "\n\nIf an Emacs session crashed recently, "
1778 "type Meta-x recover-session RET\nto recover"
1779 " the files you were editing.\n"))
1780
1781 (use-local-map splash-screen-keymap)
1782
1783 ;; Display the input that we set up in the buffer.
1784 (set-buffer-modified-p nil)
1785 (setq buffer-read-only t)
1786 (if (and view-read-only (not view-mode))
1787 (view-mode-enter nil 'kill-buffer))
1788 (if startup (rename-buffer "*GNU Emacs*" t))
1789 (goto-char (point-min)))
1790 (if concise
1791 (display-buffer splash-buffer)
1792 (switch-to-buffer splash-buffer))))
1793
1794 (defun normal-mouse-startup-screen ()
1795 ;; The user can use the mouse to activate menus
1796 ;; so give help in terms of menu items.
1797 (insert "\
1798 To follow a link, click Mouse-1 on it, or move to it and type RET.
1799 To quit a partially entered command, type Control-g.\n")
1800
1801 (insert "\nImportant Help menu items:\n")
1802 (insert-button "Emacs Tutorial"
1803 'action (lambda (button) (help-with-tutorial))
1804 'follow-link t)
1805 (insert "\t\tLearn basic Emacs keystroke commands\n")
1806 (insert-button "Read the Emacs Manual"
1807 'action (lambda (button) (info-emacs-manual))
1808 'follow-link t)
1809 (insert "\tView the Emacs manual using Info\n")
1810 (insert-button "\(Non)Warranty"
1811 'action (lambda (button) (describe-no-warranty))
1812 'follow-link t)
1813 (insert "\t\tGNU Emacs comes with ABSOLUTELY NO WARRANTY\n")
1814 (insert-button "Copying Conditions"
1815 'action (lambda (button) (describe-copying))
1816 'follow-link t)
1817 (insert "\tConditions for redistributing and changing Emacs\n")
1818 (insert-button "More Manuals / Ordering Manuals"
1819 'action (lambda (button) (view-order-manuals))
1820 'follow-link t)
1821 (insert " How to order printed manuals from the FSF\n")
1822
1823 (insert "\nUseful tasks:\n")
1824 (insert-button "Visit New File"
1825 'action (lambda (button) (call-interactively 'find-file))
1826 'follow-link t)
1827 (insert "\t\tSpecify a new file's name, to edit the file\n")
1828 (insert-button "Open Home Directory"
1829 'action (lambda (button) (dired "~"))
1830 'follow-link t)
1831 (insert "\tOpen your home directory, to operate on its files\n")
1832 (insert-button "Customize Startup"
1833 'action (lambda (button) (customize-group 'initialization))
1834 'follow-link t)
1835 (insert "\tChange initialization settings including this screen\n")
1836
1837 (insert "\n" (emacs-version)
1838 "\n" emacs-copyright))
1839
1840 ;; No mouse menus, so give help using kbd commands.
1841 (defun normal-no-mouse-startup-screen ()
1842
1843 ;; If keys have their default meanings,
1844 ;; use precomputed string to save lots of time.
1845 (let* ((c-h-accessible
1846 ;; If normal-erase-is-backspace is used on a tty, there's
1847 ;; no way to invoke C-h and you have to use F1 instead.
1848 (or (not (char-table-p keyboard-translate-table))
1849 (eq (aref keyboard-translate-table ?\C-h) ?\C-h)))
1850 (minor-mode-overriding-map-alist
1851 (cons (cons (not c-h-accessible)
1852 ;; If C-h can't be invoked, temporarily disable its
1853 ;; binding, so where-is uses alternative bindings.
1854 (let ((map (make-sparse-keymap)))
1855 (define-key map [?\C-h] 'undefined)
1856 map))
1857 minor-mode-overriding-map-alist)))
1858
1859 (insert (format "\nGet help\t %s\n"
1860 (let ((where (where-is-internal 'help-command nil t)))
1861 (cond
1862 ((equal where [?\C-h])
1863 "C-h (Hold down CTRL and press h)")
1864 (where (key-description where))
1865 (t "M-x help")))))
1866 (insert-button "Emacs manual"
1867 'action (lambda (button) (info-emacs-manual))
1868 'follow-link t)
1869 (insert (substitute-command-keys"\t \\[info-emacs-manual]\t"))
1870 (insert-button "Browse manuals"
1871 'action (lambda (button) (Info-directory))
1872 'follow-link t)
1873 (insert (substitute-command-keys "\t \\[info]\n"))
1874 (insert-button "Emacs tutorial"
1875 'action (lambda (button) (help-with-tutorial))
1876 'follow-link t)
1877 (insert (substitute-command-keys
1878 "\t \\[help-with-tutorial]\tUndo changes\t \\[undo]\n"))
1879 (insert-button "Buy manuals"
1880 'action (lambda (button) (view-order-manuals))
1881 'follow-link t)
1882 (insert (substitute-command-keys
1883 "\t \\[view-order-manuals]\tExit Emacs\t \\[save-buffers-kill-terminal]")))
1884
1885 ;; Say how to use the menu bar with the keyboard.
1886 (insert "\n")
1887 (insert-button "Activate menubar"
1888 'action (lambda (button) (tmm-menubar))
1889 'follow-link t)
1890 (if (and (eq (key-binding "\M-`") 'tmm-menubar)
1891 (eq (key-binding [f10]) 'tmm-menubar))
1892 (insert " F10 or ESC ` or M-`")
1893 (insert (substitute-command-keys " \\[tmm-menubar]")))
1894
1895 ;; Many users seem to have problems with these.
1896 (insert "
1897 \(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
1898 If you have no Meta key, you may instead type ESC followed by the character.)")
1899
1900 ;; Insert links to useful tasks
1901 (insert "\nUseful tasks:\n")
1902
1903 (insert-button "Visit New File"
1904 'action (lambda (button) (call-interactively 'find-file))
1905 'follow-link t)
1906 (insert "\t\t\t")
1907 (insert-button "Open Home Directory"
1908 'action (lambda (button) (dired "~"))
1909 'follow-link t)
1910 (insert "\n")
1911
1912 (insert-button "Customize Startup"
1913 'action (lambda (button) (customize-group 'initialization))
1914 'follow-link t)
1915 (insert "\t\t")
1916 (insert-button "Open *scratch* buffer"
1917 'action (lambda (button) (switch-to-buffer
1918 (get-buffer-create "*scratch*")))
1919 'follow-link t)
1920 (insert "\n")
1921 (insert "\n" (emacs-version) "\n" emacs-copyright "\n")
1922
1923 (if (and (eq (key-binding "\C-h\C-c") 'describe-copying)
1924 (eq (key-binding "\C-h\C-d") 'describe-distribution)
1925 (eq (key-binding "\C-h\C-w") 'describe-no-warranty))
1926 (progn
1927 (insert
1928 "
1929 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for ")
1930 (insert-button "full details"
1931 'action (lambda (button) (describe-no-warranty))
1932 'follow-link t)
1933 (insert ".
1934 Emacs is Free Software--Free as in Freedom--so you can redistribute copies
1935 of Emacs and modify it; type C-h C-c to see ")
1936 (insert-button "the conditions"
1937 'action (lambda (button) (describe-copying))
1938 'follow-link t)
1939 (insert ".
1940 Type C-h C-d for information on ")
1941 (insert-button "getting the latest version"
1942 'action (lambda (button) (describe-distribution))
1943 'follow-link t)
1944 (insert "."))
1945 (insert (substitute-command-keys
1946 "
1947 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for "))
1948 (insert-button "full details"
1949 'action (lambda (button) (describe-no-warranty))
1950 'follow-link t)
1951 (insert (substitute-command-keys ".
1952 Emacs is Free Software--Free as in Freedom--so you can redistribute copies
1953 of Emacs and modify it; type \\[describe-copying] to see "))
1954 (insert-button "the conditions"
1955 'action (lambda (button) (describe-copying))
1956 'follow-link t)
1957 (insert (substitute-command-keys".
1958 Type \\[describe-distribution] for information on "))
1959 (insert-button "getting the latest version"
1960 'action (lambda (button) (describe-distribution))
1961 'follow-link t)
1962 (insert ".")))
1963
1964 (defun normal-about-screen ()
1965 (insert "\n" (emacs-version) "\n" emacs-copyright "\n\n")
1966
1967 (insert "To follow a link, click Mouse-1 on it, or move to it and type RET.\n\n")
1968
1969 (insert-button "Authors"
1970 'action
1971 (lambda (button)
1972 (view-file (expand-file-name "AUTHORS" data-directory))
1973 (goto-char (point-min)))
1974 'follow-link t)
1975 (insert "\t\tMany people have contributed code included in GNU Emacs\n")
1976
1977 (insert-button "Contributing"
1978 'action
1979 (lambda (button)
1980 (view-file (expand-file-name "CONTRIBUTE" data-directory))
1981 (goto-char (point-min)))
1982 'follow-link t)
1983 (insert "\tHow to contribute improvements to Emacs\n\n")
1984
1985 (insert-button "GNU and Freedom"
1986 'action (lambda (button) (describe-gnu-project))
1987 'follow-link t)
1988 (insert "\t\tWhy we developed GNU Emacs and the GNU system\n")
1989
1990 (insert-button "Absence of Warranty"
1991 'action (lambda (button) (describe-no-warranty))
1992 'follow-link t)
1993 (insert "\tGNU Emacs comes with ABSOLUTELY NO WARRANTY\n")
1994
1995 (insert-button "Copying Conditions"
1996 'action (lambda (button) (describe-copying))
1997 'follow-link t)
1998 (insert "\tConditions for redistributing and changing Emacs\n")
1999
2000 (insert-button "Getting New Versions"
2001 'action (lambda (button) (describe-distribution))
2002 'follow-link t)
2003 (insert "\tHow to get the latest version of GNU Emacs\n")
2004
2005 (insert-button "More Manuals / Ordering Manuals"
2006 'action (lambda (button) (view-order-manuals))
2007 'follow-link t)
2008 (insert "\tBuying printed manuals from the FSF\n"))
2009
2010 (defun startup-echo-area-message ()
2011 (cond ((daemonp)
2012 "Starting Emacs daemon.")
2013 ((eq (key-binding "\C-h\C-a") 'about-emacs)
2014 "For information about GNU Emacs and the GNU system, type C-h C-a.")
2015 (t
2016 (substitute-command-keys
2017 "For information about GNU Emacs and the GNU system, type \
2018 \\[about-emacs]."))))
2019
2020 (defun display-startup-echo-area-message ()
2021 (let ((resize-mini-windows t))
2022 (or noninteractive ;(input-pending-p) init-file-had-error
2023 ;; t if the init file says to inhibit the echo area startup message.
2024 (and inhibit-startup-echo-area-message
2025 user-init-file
2026 (or (and (get 'inhibit-startup-echo-area-message 'saved-value)
2027 (equal inhibit-startup-echo-area-message
2028 (if (equal init-file-user "")
2029 (user-login-name)
2030 init-file-user)))
2031 ;; Wasn't set with custom; see if .emacs has a setq.
2032 (let ((buffer (get-buffer-create " *temp*")))
2033 (prog1
2034 (condition-case nil
2035 (with-current-buffer buffer
2036 (insert-file-contents user-init-file)
2037 (re-search-forward
2038 (concat
2039 "([ \t\n]*setq[ \t\n]+"
2040 "inhibit-startup-echo-area-message[ \t\n]+"
2041 (regexp-quote
2042 (prin1-to-string
2043 (if (equal init-file-user "")
2044 (user-login-name)
2045 init-file-user)))
2046 "[ \t\n]*)")
2047 nil t))
2048 (error nil))
2049 (kill-buffer buffer)))))
2050 (message "%s" (startup-echo-area-message)))))
2051
2052 (defun display-startup-screen (&optional concise)
2053 "Display startup screen according to display.
2054 A fancy display is used on graphic displays, normal otherwise.
2055
2056 If CONCISE is non-nil, display a concise version of the startup
2057 screen."
2058 ;; Prevent recursive calls from server-process-filter.
2059 (if (not (get-buffer "*GNU Emacs*"))
2060 (if (use-fancy-splash-screens-p)
2061 (fancy-startup-screen concise)
2062 (normal-splash-screen t concise))))
2063
2064 (defun display-about-screen ()
2065 "Display the *About GNU Emacs* buffer.
2066 A fancy display is used on graphic displays, normal otherwise."
2067 (interactive)
2068 (if (use-fancy-splash-screens-p)
2069 (fancy-about-screen)
2070 (normal-splash-screen nil)))
2071
2072 (defalias 'about-emacs 'display-about-screen)
2073 (defalias 'display-splash-screen 'display-startup-screen)
2074
2075 (defun command-line-1 (command-line-args-left)
2076 (display-startup-echo-area-message)
2077 (when (and pure-space-overflow
2078 (not noninteractive))
2079 (display-warning
2080 'initialization
2081 "Building Emacs overflowed pure space.\
2082 (See the node Pure Storage in the Lisp manual for details.)"
2083 :warning))
2084
2085 (let ((file-count 0)
2086 first-file-buffer)
2087 (when command-line-args-left
2088 ;; We have command args; process them.
2089 ;; Note that any local variables in this function affect the
2090 ;; ability of -f batch-byte-compile to detect free variables.
2091 ;; So we give some of them with common names a cl1- prefix.
2092 (let ((cl1-dir command-line-default-directory)
2093 cl1-tem
2094 ;; This approach loses for "-batch -L DIR --eval "(require foo)",
2095 ;; if foo is intended to be found in DIR.
2096 ;;
2097 ;; ;; The directories listed in --directory/-L options will *appear*
2098 ;; ;; at the front of `load-path' in the order they appear on the
2099 ;; ;; command-line. We cannot do this by *placing* them at the front
2100 ;; ;; in the order they appear, so we need this variable to hold them,
2101 ;; ;; temporarily.
2102 ;; extra-load-path
2103 ;;
2104 ;; To DTRT we keep track of the splice point and modify `load-path'
2105 ;; straight away upon any --directory/-L option.
2106 splice
2107 just-files ;; t if this follows the magic -- option.
2108 ;; This includes our standard options' long versions
2109 ;; and long versions of what's on command-switch-alist.
2110 (longopts
2111 (append '("--funcall" "--load" "--insert" "--kill"
2112 "--directory" "--eval" "--execute" "--no-splash"
2113 "--find-file" "--visit" "--file" "--no-desktop")
2114 (mapcar (lambda (elt) (concat "-" (car elt)))
2115 command-switch-alist)))
2116 (cl1-line 0)
2117 (cl1-column 0))
2118
2119 ;; Add the long X options to longopts.
2120 (dolist (tem command-line-x-option-alist)
2121 (if (string-match "^--" (car tem))
2122 (push (car tem) longopts)))
2123
2124 ;; Add the long NS options to longopts.
2125 (dolist (tem command-line-ns-option-alist)
2126 (if (string-match "^--" (car tem))
2127 (push (list (car tem)) longopts)))
2128
2129 ;; Loop, processing options.
2130 (while command-line-args-left
2131 (let* ((argi (car command-line-args-left))
2132 (orig-argi argi)
2133 argval completion)
2134 (setq command-line-args-left (cdr command-line-args-left))
2135
2136 ;; Do preliminary decoding of the option.
2137 (if just-files
2138 ;; After --, don't look for options; treat all args as files.
2139 (setq argi "")
2140 ;; Convert long options to ordinary options
2141 ;; and separate out an attached option argument into argval.
2142 (when (string-match "\\`\\(--[^=]*\\)=" argi)
2143 (setq argval (substring argi (match-end 0))
2144 argi (match-string 1 argi)))
2145 (when (string-match "\\`--?[^-]" orig-argi)
2146 (setq completion (try-completion argi longopts))
2147 (if (eq completion t)
2148 (setq argi (substring argi 1))
2149 (if (stringp completion)
2150 (let ((elt (member completion longopts)))
2151 (or elt
2152 (error "Option `%s' is ambiguous" argi))
2153 (setq argi (substring (car elt) 1)))
2154 (setq argval nil
2155 argi orig-argi)))))
2156
2157 ;; Execute the option.
2158 (cond ((setq cl1-tem (assoc argi command-switch-alist))
2159 (if argval
2160 (let ((command-line-args-left
2161 (cons argval command-line-args-left)))
2162 (funcall (cdr cl1-tem) argi))
2163 (funcall (cdr cl1-tem) argi)))
2164
2165 ((equal argi "-no-splash")
2166 (setq inhibit-startup-screen t))
2167
2168 ((member argi '("-f" ; what the manual claims
2169 "-funcall"
2170 "-e")) ; what the source used to say
2171 (setq inhibit-startup-screen t)
2172 (setq cl1-tem (intern (or argval (pop command-line-args-left))))
2173 (if (commandp cl1-tem)
2174 (command-execute cl1-tem)
2175 (funcall cl1-tem)))
2176
2177 ((member argi '("-eval" "-execute"))
2178 (setq inhibit-startup-screen t)
2179 (eval (read (or argval (pop command-line-args-left)))))
2180
2181 ((member argi '("-L" "-directory"))
2182 (setq cl1-tem (expand-file-name
2183 (command-line-normalize-file-name
2184 (or argval (pop command-line-args-left)))))
2185 (cond (splice (setcdr splice (cons cl1-tem (cdr splice)))
2186 (setq splice (cdr splice)))
2187 (t (setq load-path (cons cl1-tem load-path)
2188 splice load-path))))
2189
2190 ((member argi '("-l" "-load"))
2191 (let* ((file (command-line-normalize-file-name
2192 (or argval (pop command-line-args-left))))
2193 ;; Take file from default dir if it exists there;
2194 ;; otherwise let `load' search for it.
2195 (file-ex (expand-file-name file)))
2196 (when (file-exists-p file-ex)
2197 (setq file file-ex))
2198 (load file nil t)))
2199
2200 ;; This is used to handle -script. It's not clear
2201 ;; we need to document it (it is totally internal).
2202 ((member argi '("-scriptload"))
2203 (let* ((file (command-line-normalize-file-name
2204 (or argval (pop command-line-args-left))))
2205 ;; Take file from default dir.
2206 (file-ex (expand-file-name file)))
2207 (load file-ex nil t t)))
2208
2209 ((equal argi "-insert")
2210 (setq inhibit-startup-screen t)
2211 (setq cl1-tem (or argval (pop command-line-args-left)))
2212 (or (stringp cl1-tem)
2213 (error "File name omitted from `-insert' option"))
2214 (insert-file-contents (command-line-normalize-file-name cl1-tem)))
2215
2216 ((equal argi "-kill")
2217 (kill-emacs t))
2218
2219 ;; This is for when they use --no-desktop with -q, or
2220 ;; don't load Desktop in their .emacs. If desktop.el
2221 ;; _is_ loaded, it will handle this switch, and we
2222 ;; won't see it by the time we get here.
2223 ((equal argi "-no-desktop")
2224 (message "\"--no-desktop\" ignored because the Desktop package is not loaded"))
2225
2226 ((string-match "^\\+[0-9]+\\'" argi)
2227 (setq cl1-line (string-to-number argi)))
2228
2229 ((string-match "^\\+\\([0-9]+\\):\\([0-9]+\\)\\'" argi)
2230 (setq cl1-line (string-to-number (match-string 1 argi))
2231 cl1-column (string-to-number (match-string 2 argi))))
2232
2233 ((setq cl1-tem (assoc orig-argi command-line-x-option-alist))
2234 ;; Ignore X-windows options and their args if not using X.
2235 (setq command-line-args-left
2236 (nthcdr (nth 1 cl1-tem) command-line-args-left)))
2237
2238 ((setq cl1-tem (assoc orig-argi command-line-ns-option-alist))
2239 ;; Ignore NS-windows options and their args if not using NS.
2240 (setq command-line-args-left
2241 (nthcdr (nth 1 cl1-tem) command-line-args-left)))
2242
2243 ((member argi '("-find-file" "-file" "-visit"))
2244 (setq inhibit-startup-screen t)
2245 ;; An explicit option to specify visiting a file.
2246 (setq cl1-tem (or argval (pop command-line-args-left)))
2247 (unless (stringp cl1-tem)
2248 (error "File name omitted from `%s' option" argi))
2249 (setq file-count (1+ file-count))
2250 (let ((file (expand-file-name
2251 (command-line-normalize-file-name cl1-tem)
2252 cl1-dir)))
2253 (if (= file-count 1)
2254 (setq first-file-buffer (find-file file))
2255 (find-file-other-window file)))
2256 (unless (zerop cl1-line)
2257 (goto-char (point-min))
2258 (forward-line (1- cl1-line)))
2259 (setq cl1-line 0)
2260 (unless (< cl1-column 1)
2261 (move-to-column (1- cl1-column)))
2262 (setq cl1-column 0))
2263
2264 ;; These command lines now have no effect.
2265 ((string-match "\\`--?\\(no-\\)?\\(uni\\|multi\\)byte$" argi)
2266 (display-warning 'initialization
2267 (format "Ignoring obsolete arg %s" argi)))
2268
2269 ((equal argi "--")
2270 (setq just-files t))
2271 (t
2272 ;; We have almost exhausted our options. See if the
2273 ;; user has made any other command-line options available
2274 (let ((hooks command-line-functions)
2275 (did-hook nil))
2276 (while (and hooks
2277 (not (setq did-hook (funcall (car hooks)))))
2278 (setq hooks (cdr hooks)))
2279 (if (not did-hook)
2280 ;; Presume that the argument is a file name.
2281 (progn
2282 (if (string-match "\\`-" argi)
2283 (error "Unknown option `%s'" argi))
2284 (unless initial-window-system
2285 (setq inhibit-startup-screen t))
2286 (setq file-count (1+ file-count))
2287 (let ((file
2288 (expand-file-name
2289 (command-line-normalize-file-name orig-argi)
2290 cl1-dir)))
2291 (cond ((= file-count 1)
2292 (setq first-file-buffer (find-file file)))
2293 (inhibit-startup-screen
2294 (find-file-other-window file))
2295 (t (find-file file))))
2296 (unless (zerop cl1-line)
2297 (goto-char (point-min))
2298 (forward-line (1- cl1-line)))
2299 (setq cl1-line 0)
2300 (unless (< cl1-column 1)
2301 (move-to-column (1- cl1-column)))
2302 (setq cl1-column 0))))))
2303 ;; In unusual circumstances, the execution of Lisp code due
2304 ;; to command-line options can cause the last visible frame
2305 ;; to be deleted. In this case, kill emacs to avoid an
2306 ;; abort later.
2307 (unless (frame-live-p (selected-frame)) (kill-emacs nil))))))
2308
2309 (when initial-buffer-choice
2310 (cond ((eq initial-buffer-choice t)
2311 (switch-to-buffer (get-buffer-create "*scratch*")))
2312 ((stringp initial-buffer-choice)
2313 (find-file initial-buffer-choice))))
2314
2315 ;; If *scratch* exists and is empty, insert initial-scratch-message.
2316 (and initial-scratch-message
2317 (get-buffer "*scratch*")
2318 (with-current-buffer "*scratch*"
2319 (when (zerop (buffer-size))
2320 (insert initial-scratch-message)
2321 (set-buffer-modified-p nil))))
2322
2323 (if (or inhibit-startup-screen
2324 initial-buffer-choice
2325 noninteractive
2326 inhibit-x-resources)
2327
2328 ;; Not displaying a startup screen. If 3 or more files
2329 ;; visited, and not all visible, show user what they all are.
2330 (and (> file-count 2)
2331 (not noninteractive)
2332 (not inhibit-startup-buffer-menu)
2333 (or (get-buffer-window first-file-buffer)
2334 (list-buffers)))
2335
2336 ;; Display a startup screen, after some preparations.
2337
2338 ;; If there are no switches to process, we might as well
2339 ;; run this hook now, and there may be some need to do it
2340 ;; before doing any output.
2341 (run-hooks 'emacs-startup-hook)
2342 (and term-setup-hook
2343 (run-hooks 'term-setup-hook))
2344 (setq inhibit-startup-hooks t)
2345
2346 ;; It's important to notice the user settings before we
2347 ;; display the startup message; otherwise, the settings
2348 ;; won't take effect until the user gives the first
2349 ;; keystroke, and that's distracting.
2350 (when (fboundp 'frame-notice-user-settings)
2351 (frame-notice-user-settings))
2352
2353 ;; If there are no switches to process, we might as well
2354 ;; run this hook now, and there may be some need to do it
2355 ;; before doing any output.
2356 (when window-setup-hook
2357 (run-hooks 'window-setup-hook)
2358 ;; Don't let the hook be run twice.
2359 (setq window-setup-hook nil))
2360
2361 ;; ;; Do this now to avoid an annoying delay if the user
2362 ;; ;; clicks the menu bar during the sit-for.
2363 ;; (when (display-popup-menus-p)
2364 ;; (precompute-menubar-bindings))
2365 ;; (with-no-warnings
2366 ;; (setq menubar-bindings-done t))
2367
2368 (if (> file-count 0)
2369 (display-startup-screen t)
2370 (display-startup-screen nil)))))
2371
2372 (defun command-line-normalize-file-name (file)
2373 "Collapse multiple slashes to one, to handle non-Emacs file names."
2374 (save-match-data
2375 ;; Use arg 1 so that we don't collapse // at the start of the file name.
2376 ;; That is significant on some systems.
2377 ;; However, /// at the beginning is supposed to mean just /, not //.
2378 (if (string-match "^///+" file)
2379 (setq file (replace-match "/" t t file)))
2380 (and (memq system-type '(ms-dos windows-nt))
2381 (string-match "^[A-Za-z]:\\(\\\\[\\\\/]\\)" file) ; C:\/ or C:\\
2382 (setq file (replace-match "/" t t file 1)))
2383 (while (string-match "//+" file 1)
2384 (setq file (replace-match "/" t t file)))
2385 file))
2386
2387 ;;; startup.el ends here