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