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