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