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