1 ;;; startup.el --- process Emacs shell arguments
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
10 ;; This file is part of GNU Emacs.
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.
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.
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/>.
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.
33 (setq top-level
'(normal-top-level))
35 (defvar command-line-processed nil
36 "Non-nil once command line has been processed.")
38 (defgroup initialization nil
39 "Emacs start-up procedure."
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."
48 (const :tag
"Startup screen" nil
)
49 (directory :tag
"Directory" :value
"~/")
50 (file :tag
"File" :value
"~/.emacs")
51 (const :tag
"Lisp scratch buffer" t
))
53 :group
'initialization
)
55 (defcustom inhibit-startup-screen nil
56 "Non-nil inhibits the startup screen.
58 This is for use in your personal init file (but NOT site-start.el),
59 once you are familiar with the contents of the startup screen."
61 :group
'initialization
)
63 (defvaralias 'inhibit-splash-screen
'inhibit-startup-screen
)
64 (defvaralias 'inhibit-startup-message
'inhibit-startup-screen
)
66 (defvar startup-screen-inhibit-startup-screen nil
)
68 (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
)
82 (defcustom inhibit-default-init nil
83 "Non-nil inhibits loading the `default' library."
85 :group
'initialization
)
87 (defcustom inhibit-startup-buffer-menu nil
88 "Non-nil inhibits display of buffer list when more than 2 files are loaded."
90 :group
'initialization
)
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'.")
98 (defvar command-line-args-left nil
99 "List of command-line args not yet processed.")
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.")
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.")
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.")
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 ("-ib" 1 x-handle-numeric-switch internal-border-width
)
138 ("-g" 1 x-handle-geometry
)
139 ("-lsp" 1 x-handle-numeric-switch line-spacing
)
140 ("-geometry" 1 x-handle-geometry
)
141 ("-fg" 1 x-handle-switch foreground-color
)
142 ("-foreground" 1 x-handle-switch foreground-color
)
143 ("-bg" 1 x-handle-switch background-color
)
144 ("-background" 1 x-handle-switch background-color
)
145 ("-ms" 1 x-handle-switch mouse-color
)
146 ("-nbi" 0 x-handle-switch icon-type nil
)
147 ("-iconic" 0 x-handle-iconic
)
148 ("-xrm" 1 x-handle-xrm-switch
)
149 ("-cr" 1 x-handle-switch cursor-color
)
150 ("-vb" 0 x-handle-switch vertical-scroll-bars t
)
151 ("-hb" 0 x-handle-switch horizontal-scroll-bars t
)
152 ("-bd" 1 x-handle-switch
)
153 ("--border-width" 1 x-handle-numeric-switch border-width
)
154 ("--display" 1 x-handle-display
)
155 ("--name" 1 x-handle-name-switch
)
156 ("--title" 1 x-handle-switch title
)
157 ("--reverse-video" 0 x-handle-switch reverse t
)
158 ("--font" 1 x-handle-switch font
)
159 ("--fullscreen" 0 x-handle-initial-switch fullscreen fullboth
)
160 ("--fullwidth" 0 x-handle-initial-switch fullscreen fullwidth
)
161 ("--fullheight" 0 x-handle-initial-switch fullscreen fullheight
)
162 ("--internal-border" 1 x-handle-numeric-switch internal-border-width
)
163 ("--geometry" 1 x-handle-geometry
)
164 ("--foreground-color" 1 x-handle-switch foreground-color
)
165 ("--background-color" 1 x-handle-switch background-color
)
166 ("--mouse-color" 1 x-handle-switch mouse-color
)
167 ("--no-bitmap-icon" 0 x-handle-no-bitmap-icon
)
168 ("--iconic" 0 x-handle-iconic
)
169 ("--xrm" 1 x-handle-xrm-switch
)
170 ("--cursor-color" 1 x-handle-switch cursor-color
)
171 ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t
)
172 ("--line-spacing" 1 x-handle-numeric-switch line-spacing
)
173 ("--border-color" 1 x-handle-switch border-color
)
174 ("--smid" 1 x-handle-smid
)
175 ("--parent-id" 1 x-handle-parent-id
))
176 "Alist of X Windows options.
177 Each element has the form
178 (NAME NUMARGS HANDLER FRAME-PARAM VALUE)
179 where NAME is the option name string, NUMARGS is the number of arguments
180 that the option accepts, HANDLER is a function to call to handle the option.
181 FRAME-PARAM (optional) is the frame parameter this option specifies,
182 and VALUE is the value which is given to that frame parameter
183 \(most options use the argument for this, so VALUE is not present).")
185 (defconst command-line-ns-option-alist
186 '(("-NSAutoLaunch" 1 ns-ignore-1-arg
)
187 ("-NXAutoLaunch" 1 ns-ignore-1-arg
)
189 ("-NSHost" 1 ns-ignore-1-arg
)
190 ("-_NSMachLaunch" 1 ns-ignore-1-arg
)
191 ("-MachLaunch" 1 ns-ignore-1-arg
)
192 ("-NXOpen" 1 ns-ignore-1-arg
)
193 ("-NSOpen" 1 ns-handle-nxopen
)
194 ("-NXOpenTemp" 1 ns-ignore-1-arg
)
195 ("-NSOpenTemp" 1 ns-handle-nxopentemp
)
196 ("-GSFilePath" 1 ns-handle-nxopen
)
197 ;;("-bw" . x-handle-numeric-switch)
198 ;;("-d" . x-handle-display)
199 ;;("-display" . x-handle-display)
200 ("-name" 1 ns-handle-name-switch
)
201 ("-title" 1 ns-handle-switch title
)
202 ("-T" 1 ns-handle-switch title
)
203 ("-r" 0 ns-handle-switch reverse t
)
204 ("-rv" 0 ns-handle-switch reverse t
)
205 ("-reverse" 0 ns-handle-switch reverse t
)
206 ("-fn" 1 ns-handle-switch font
)
207 ("-font" 1 ns-handle-switch font
)
208 ("-ib" 1 ns-handle-numeric-switch internal-border-width
)
209 ;;("-g" . x-handle-geometry)
210 ;;("-geometry" . x-handle-geometry)
211 ("-fg" 1 ns-handle-switch foreground-color
)
212 ("-foreground" 1 ns-handle-switch foreground-color
)
213 ("-bg" 1 ns-handle-switch background-color
)
214 ("-background" 1 ns-handle-switch background-color
)
215 ; ("-ms" 1 ns-handle-switch mouse-color)
216 ("-itype" 0 ns-handle-switch icon-type t
)
217 ("-i" 0 ns-handle-switch icon-type t
)
218 ("-iconic" 0 ns-handle-iconic icon-type t
)
219 ;;("-xrm" . x-handle-xrm-switch)
220 ("-cr" 1 ns-handle-switch cursor-color
)
221 ("-vb" 0 ns-handle-switch vertical-scroll-bars t
)
222 ("-hb" 0 ns-handle-switch horizontal-scroll-bars t
)
223 ("-bd" 1 ns-handle-switch
)
224 ;; ("--border-width" 1 ns-handle-numeric-switch border-width)
225 ;; ("--display" 1 ns-handle-display)
226 ("--name" 1 ns-handle-name-switch
)
227 ("--title" 1 ns-handle-switch title
)
228 ("--reverse-video" 0 ns-handle-switch reverse t
)
229 ("--font" 1 ns-handle-switch font
)
230 ("--internal-border" 1 ns-handle-numeric-switch internal-border-width
)
231 ;; ("--geometry" 1 ns-handle-geometry)
232 ("--foreground-color" 1 ns-handle-switch foreground-color
)
233 ("--background-color" 1 ns-handle-switch background-color
)
234 ("--mouse-color" 1 ns-handle-switch mouse-color
)
235 ("--icon-type" 0 ns-handle-switch icon-type t
)
236 ("--iconic" 0 ns-handle-iconic
)
237 ;; ("--xrm" 1 ns-handle-xrm-switch)
238 ("--cursor-color" 1 ns-handle-switch cursor-color
)
239 ("--vertical-scroll-bars" 0 ns-handle-switch vertical-scroll-bars t
)
240 ("--border-color" 1 ns-handle-switch border-width
))
241 "Alist of NS options.
242 Each element has the form
243 (NAME NUMARGS HANDLER FRAME-PARAM VALUE)
244 where NAME is the option name string, NUMARGS is the number of arguments
245 that the option accepts, HANDLER is a function to call to handle the option.
246 FRAME-PARAM (optional) is the frame parameter this option specifies,
247 and VALUE is the value which is given to that frame parameter
248 \(most options use the argument for this, so VALUE is not present).")
251 (defvar before-init-hook nil
252 "Normal hook run after handling urgent options but before loading init files.")
254 (defvar after-init-hook nil
255 "Normal hook run after loading the init files, `~/.emacs' and `default.el'.
256 There is no `condition-case' around the running of these functions;
257 therefore, if you set `debug-on-error' non-nil in `.emacs',
258 an error in one of these functions will invoke the debugger.")
260 (defvar emacs-startup-hook nil
261 "Normal hook run after loading init files and handling the command line.")
263 (defvar term-setup-hook nil
264 "Normal hook run after loading terminal-specific Lisp code.
265 It also follows `emacs-startup-hook'. This hook exists for users to set,
266 so as to override the definitions made by the terminal-specific file.
267 Emacs never sets this variable itself.")
269 (defvar inhibit-startup-hooks nil
270 "Non-nil means don't run `term-setup-hook' and `emacs-startup-hook'.
271 This is because we already did so.")
273 (defvar keyboard-type nil
274 "The brand of keyboard you are using.
275 This variable is used to define the proper function and keypad
276 keys for use under X. It is used in a fashion analogous to the
277 environment variable TERM.")
279 (defvar window-setup-hook nil
280 "Normal hook run to initialize window system display.
281 Emacs runs this hook after processing the command line arguments and loading
282 the user's init file.")
284 (defcustom initial-major-mode
'lisp-interaction-mode
285 "Major mode command symbol to use for the initial `*scratch*' buffer."
287 :group
'initialization
)
289 (defvar init-file-user nil
290 "Identity of user whose `.emacs' file is or was read.
291 The value is nil if `-q' or `--no-init-file' was specified,
292 meaning do not load any init file.
294 Otherwise, the value may be an empty string, meaning
295 use the init file for the user who originally logged in,
296 or it may be a string containing a user's name meaning
297 use that person's init file.
299 In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
300 evaluates to the name of the directory where the `.emacs' file was
303 Setting `init-file-user' does not prevent Emacs from loading
304 `site-start.el'. The only way to do that is to use `--no-site-file'.")
306 (defcustom site-run-file
"site-start"
307 "File containing site-wide run-time initializations.
308 This file is loaded at run-time before `~/.emacs'. It contains inits
309 that need to be in place for the entire site, but which, due to their
310 higher incidence of change, don't make sense to load into Emacs's
311 dumped image. Thus, the run-time load order is: 1. file described in
312 this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.
314 Don't use the `site-start.el' file for things some users may not like.
315 Put them in `default.el' instead, so that users can more easily
316 override them. Users can prevent loading `default.el' with the `-q'
317 option or by setting `inhibit-default-init' in their own init files,
318 but inhibiting `site-start.el' requires `--no-site-file', which
321 This variable is defined for customization so as to make
322 it visible in the relevant context. However, actually customizing it
323 is not allowed, since it would not work anyway. The only way to set
324 this variable usefully is to set it while building and dumping Emacs."
325 :type
'(choice (const :tag
"none" nil
) string
)
326 :group
'initialization
327 :initialize
'custom-initialize-default
328 :set
'(lambda (variable value
)
329 (error "Customizing `site-run-file' does not work")))
331 (defcustom mail-host-address nil
332 "Name of this machine, for purposes of naming users."
333 :type
'(choice (const nil
) string
)
336 (defcustom user-mail-address
(if command-line-processed
338 (concat (user-login-name) "@"
339 (or mail-host-address
341 ;; Empty string means "not set yet".
343 "Full mailing address of this user.
344 This is initialized with environment variable `EMAIL' or, as a
345 fallback, using `mail-host-address'. This is done after your
346 init file is read, in case it sets `mail-host-address'."
350 (defcustom auto-save-list-file-prefix
351 (cond ((eq system-type
'ms-dos
)
352 ;; MS-DOS cannot have initial dot, and allows only 8.3 names
353 (concat user-emacs-directory
"auto-save.list/_s"))
355 (concat user-emacs-directory
"auto-save-list/.saves-")))
356 "Prefix for generating `auto-save-list-file-name'.
357 This is used after reading your `.emacs' file to initialize
358 `auto-save-list-file-name', by appending Emacs's pid and the system name,
359 if you have not already set `auto-save-list-file-name' yourself.
360 Directories in the prefix will be created if necessary.
361 Set this to nil if you want to prevent `auto-save-list-file-name'
362 from being initialized."
363 :type
'(choice (const :tag
"Don't record a session's auto save list" nil
)
367 (defvar emacs-quick-startup nil
)
369 (defvar emacs-basic-display nil
)
371 (defvar init-file-debug nil
)
373 (defvar init-file-had-error nil
374 "Non-nil if there was an error loading the user's init file.")
376 (defvar normal-top-level-add-subdirs-inode-list nil
)
378 (defvar no-blinking-cursor nil
)
380 (defvar default-frame-background-mode
)
382 (defvar pure-space-overflow nil
383 "Non-nil if building Emacs overflowed pure space.")
385 (defvar pure-space-overflow-message
"\
386 Warning Warning!!! Pure space overflow !!!Warning Warning
387 \(See the node Pure Storage in the Lisp manual for details.)\n")
389 (defvar tutorial-directory nil
390 "Directory containing the Emacs TUTORIAL files.")
392 ;; Get correct value in a dumped, installed Emacs.
394 (setq tutorial-directory
(file-name-as-directory
395 (expand-file-name "tutorials" data-directory
))))
397 (defun normal-top-level-add-subdirs-to-load-path ()
398 "Add all subdirectories of current directory to `load-path'.
399 More precisely, this uses only the subdirectories whose names
400 start with letters or digits; it excludes any subdirectory named `RCS'
401 or `CVS', and any subdirectory that contains a file named `.nosearch'."
404 (pending (list default-directory
)))
405 ;; This loop does a breadth-first tree walk on DIR's subtree,
406 ;; putting each subdir into DIRS as its contents are examined.
408 (push (pop pending
) dirs
)
409 (let* ((this-dir (car dirs
))
410 (contents (directory-files this-dir
))
411 (default-directory this-dir
)
412 (canonicalized (if (fboundp 'untranslated-canonical-name
)
413 (untranslated-canonical-name this-dir
))))
414 ;; The Windows version doesn't report meaningful inode
415 ;; numbers, so use the canonicalized absolute file name of the
416 ;; directory instead.
417 (setq attrs
(or canonicalized
418 (nthcdr 10 (file-attributes this-dir
))))
419 (unless (member attrs normal-top-level-add-subdirs-inode-list
)
420 (push attrs normal-top-level-add-subdirs-inode-list
)
421 (dolist (file contents
)
422 ;; The lower-case variants of RCS and CVS are for DOS/Windows.
423 (unless (member file
'("." ".." "RCS" "CVS" "rcs" "cvs"))
424 (when (and (string-match "\\`[[:alnum:]]" file
)
425 ;; Avoid doing a `stat' when it isn't necessary
426 ;; because that can cause trouble when an NFS server
428 (not (string-match "\\.elc?\\'" file
))
429 (file-directory-p file
))
430 (let ((expanded (expand-file-name file
)))
431 (unless (file-exists-p (expand-file-name ".nosearch"
433 (setq pending
(nconc pending
(list expanded
)))))))))))
434 (normal-top-level-add-to-load-path (cdr (nreverse dirs
)))))
436 ;; This function is called from a subdirs.el file.
437 ;; It assumes that default-directory is the directory
438 ;; in which the subdirs.el file exists,
439 ;; and it adds to load-path the subdirs of that directory
440 ;; as specified in DIRS. Normally the elements of DIRS are relative.
441 (defun normal-top-level-add-to-load-path (dirs)
442 (let ((tail load-path
)
443 (thisdir (directory-file-name default-directory
)))
445 ;;Don't go all the way to the nil terminator.
447 (not (equal thisdir
(car tail
)))
448 (not (and (memq system-type
'(ms-dos windows-nt
))
449 (equal (downcase thisdir
) (downcase (car tail
))))))
450 (setq tail
(cdr tail
)))
451 ;;Splice the new section in.
453 (setcdr tail
(append (mapcar 'expand-file-name dirs
) (cdr tail
))))))
455 (defun normal-top-level ()
456 (if command-line-processed
457 (message "Back to top level.")
458 (setq command-line-processed t
)
459 (let ((dir default-directory
))
460 (with-current-buffer "*Messages*"
461 ;; Make it easy to do like "tail -f".
462 (set (make-local-variable 'window-point-insertion-type
) t
)
463 ;; Give *Messages* the same default-directory as *scratch*,
464 ;; just to keep things predictable.
465 (setq default-directory dir
)))
466 ;; `user-full-name' is now known; reset its standard-value here.
467 (put 'user-full-name
'standard-value
468 (list (default-value 'user-full-name
)))
469 ;; For root, preserve owner and group when editing files.
470 (if (equal (user-uid) 0)
471 (setq backup-by-copying-when-mismatch t
))
472 ;; Look in each dir in load-path for a subdirs.el file.
473 ;; If we find one, load it, which will add the appropriate subdirs
474 ;; of that dir into load-path,
475 ;; Look for a leim-list.el file too. Loading it will register
476 ;; available input methods.
477 (let ((tail load-path
) dir
)
479 (setq dir
(car tail
))
480 (let ((default-directory dir
))
481 (load (expand-file-name "subdirs.el") t t t
))
482 (let ((default-directory dir
))
483 (load (expand-file-name "leim-list.el") t t t
))
484 ;; We don't use a dolist loop and we put this "setq-cdr" command at
485 ;; the end, because the subdirs.el files may add elements to the end
486 ;; of load-path and we want to take it into account.
487 (setq tail
(cdr tail
))))
488 ;; If the PWD environment variable isn't accurate, delete it.
489 (let ((pwd (getenv "PWD")))
491 ;; Use FOO/., so that if FOO is a symlink, file-attributes
492 ;; describes the directory linked to, not FOO itself.
493 (or (equal (file-attributes
494 (concat (file-name-as-directory pwd
) "."))
496 (concat (file-name-as-directory default-directory
)
498 (setq process-environment
499 (delete (concat "PWD=" pwd
)
500 process-environment
)))))
501 (setq default-directory
(abbreviate-file-name default-directory
))
502 (let ((menubar-bindings-done nil
))
505 ;; Do this again, in case .emacs defined more abbreviations.
506 (setq default-directory
(abbreviate-file-name default-directory
))
507 ;; Specify the file for recording all the auto save files of this session.
508 ;; This is used by recover-session.
509 (or auto-save-list-file-name
510 (and auto-save-list-file-prefix
511 (setq auto-save-list-file-name
512 ;; Under MS-DOS our PID is almost always reused between
513 ;; Emacs invocations. We need something more unique.
514 (cond ((eq system-type
'ms-dos
)
515 ;; We are going to access the auto-save
516 ;; directory, so make sure it exists.
518 (file-name-directory auto-save-list-file-prefix
)
523 auto-save-list-file-prefix
))
528 auto-save-list-file-prefix
531 (unless inhibit-startup-hooks
532 (run-hooks 'emacs-startup-hook
)
534 (run-hooks 'term-setup-hook
)))
536 ;; Don't do this if we failed to create the initial frame,
537 ;; for instance due to a dense colormap.
538 (when (or frame-initial-frame
539 ;; If frame-initial-frame has no meaning, do this anyway.
540 (not (and initial-window-system
542 (not (eq initial-window-system
'pc
)))))
543 ;; Modify the initial frame based on what .emacs puts into
545 (if (fboundp 'frame-notice-user-settings
)
546 (frame-notice-user-settings))
547 ;; Set the faces for the initial background mode even if
548 ;; frame-notice-user-settings didn't (such as on a tty).
549 ;; frame-set-background-mode is idempotent, so it won't
550 ;; cause any harm if it's already been done.
551 (if (fboundp 'frame-set-background-mode
)
552 (frame-set-background-mode (selected-frame))))
554 ;; Now we know the user's default font, so add it to the menu.
555 (if (fboundp 'font-menu-add-default
)
556 (font-menu-add-default))
557 (and window-setup-hook
558 (run-hooks 'window-setup-hook
))
559 (or menubar-bindings-done
560 (if (display-popup-menus-p)
561 (precompute-menubar-bindings)))))
562 ;; Subprocesses of Emacs do not have direct access to the terminal, so
563 ;; unless told otherwise they should only assume a dumb terminal.
564 ;; We are careful to do it late (after term-setup-hook), although the
565 ;; new multi-tty code does not use $TERM any more there anyway.
566 (setenv "TERM" "dumb")
567 ;; Remove DISPLAY from the process-environment as well. This allows
568 ;; `callproc.c' to give it a useful adaptive default which is either
569 ;; the value of the `display' frame-parameter or the DISPLAY value
570 ;; from initial-environment.
571 (let ((display (frame-parameter nil
'display
)))
572 ;; Be careful which DISPLAY to remove from process-environment: follow
573 ;; the logic of `callproc.c'.
574 (if (stringp display
) (setq display
(concat "DISPLAY=" display
))
575 (dolist (varval initial-environment
)
576 (if (string-match "\\`DISPLAY=" varval
)
577 (setq display varval
))))
579 (delete display process-environment
)))))
581 ;; Precompute the keyboard equivalents in the menu bar items.
582 (defun precompute-menubar-bindings ()
583 (let ((submap (lookup-key global-map
[menu-bar
])))
585 (and (consp (car submap
))
586 (symbolp (car (car submap
)))
587 (stringp (car-safe (cdr (car submap
))))
588 (keymapp (cdr (cdr (car submap
))))
590 (x-popup-menu nil
(cdr (cdr (car submap
))))
593 (setq submap
(cdr submap
))))
594 (setq define-key-rebound-commands t
))
596 ;; Command-line options supported by tty's:
597 (defconst tty-long-option-alist
598 '(("--name" .
"-name")
600 ("--reverse-video" .
"-reverse")
601 ("--foreground-color" .
"-fg")
602 ("--background-color" .
"-bg")
603 ("--color" .
"-color")))
605 (defconst tool-bar-images-pixel-height
24
606 "Height in pixels of images in the tool-bar.")
608 (defvar tool-bar-originally-present nil
609 "Non-nil if tool-bars are present before user and site init files are read.")
611 (defvar handle-args-function-alist
'((nil . tty-handle-args
))
612 "Functions for processing window-system dependent command-line arguments.
613 Window system startup files should add their own function to this
614 alist, which should parse the command line arguments. Those
615 pertaining to the window system should be processed and removed
616 from the returned command line.")
618 (defvar window-system-initialization-alist
'((nil . ignore
))
619 "Alist of window-system initialization functions.
620 Window-system startup files should add their own initialization
621 function to this list. The function should take no arguments,
622 and initialize the window system environment to prepare for
623 opening the first frame (e.g. open a connection to an X server).")
625 ;; Handle the X-like command-line arguments "-fg", "-bg", "-name", etc.
626 (defun tty-handle-args (args)
630 (not (equal (car args
) "--")))
631 (let* ((argi (pop args
))
634 ;; Check for long options with attached arguments
635 ;; and separate out the attached option argument into argval.
636 (when (string-match "^\\(--[^=]*\\)=" argi
)
637 (setq argval
(substring argi
(match-end 0))
638 argi
(match-string 1 argi
)))
639 (when (string-match "^--" argi
)
640 (setq completion
(try-completion argi tty-long-option-alist
))
641 (if (eq completion t
)
642 ;; Exact match for long option.
643 (setq argi
(cdr (assoc argi tty-long-option-alist
)))
644 (if (stringp completion
)
645 (let ((elt (assoc completion tty-long-option-alist
)))
646 ;; Check for abbreviated long option.
648 (error "Option `%s' is ambiguous" argi
))
649 (setq argi
(cdr elt
)))
650 ;; Check for a short option.
653 (cond ((member argi
'("-fg" "-foreground"))
654 (push (cons 'foreground-color
(or argval
(pop args
)))
655 default-frame-alist
))
656 ((member argi
'("-bg" "-background"))
657 (push (cons 'background-color
(or argval
(pop args
)))
658 default-frame-alist
))
659 ((member argi
'("-T" "-name"))
660 (unless argval
(setq argval
(pop args
)))
664 (let ((case-fold-search t
)
666 (setq argval
(invocation-name))
668 ;; Change any . or * characters in name to
669 ;; hyphens, so as to emulate behavior on X.
671 (setq i
(string-match "[.*]" argval
))
674 default-frame-alist
))
675 ((member argi
'("-r" "-rv" "-reverse"))
677 default-frame-alist
))
678 ((equal argi
"-color")
679 (unless argval
(setq argval
8)) ; default --color means 8 ANSI colors
680 (push (cons 'tty-color-mode
682 ((numberp argval
) argval
)
683 ((string-match "-?[0-9]+" argval
)
684 (string-to-number argval
))
685 (t (intern argval
))))
686 default-frame-alist
))
691 (declare-function x-get-resource
"frame.c"
692 (attribute class
&optional component subclass
))
693 (declare-function tool-bar-mode
"tool-bar" (&optional arg
))
694 (declare-function tool-bar-setup
"tool-bar")
698 (defun command-line ()
699 (setq before-init-time
(current-time)
701 command-line-default-directory default-directory
)
703 ;; Choose a reasonable location for temporary files.
704 (custom-reevaluate-setting 'temporary-file-directory
)
705 (custom-reevaluate-setting 'small-temporary-file-directory
)
706 (custom-reevaluate-setting 'auto-save-file-name-transforms
)
708 ;; See if we should import version-control from the environment variable.
709 (let ((vc (getenv "VERSION_CONTROL")))
710 (cond ((eq vc nil
)) ;don't do anything if not set
711 ((member vc
'("t" "numbered"))
712 (setq version-control t
))
713 ((member vc
'("nil" "existing"))
714 (setq version-control nil
))
715 ((member vc
'("never" "simple"))
716 (setq version-control
'never
))))
718 ;;! This has been commented out; I currently find the behavior when
719 ;;! split-window-keep-point is nil disturbing, but if I can get used
720 ;;! to it, then it would be better to eliminate the option.
721 ;;! ;; Choose a good default value for split-window-keep-point.
722 ;;! (setq split-window-keep-point (> baud-rate 2400))
724 ;; Set the default strings to display in mode line for
725 ;; end-of-line formats that aren't native to this platform.
727 ((memq system-type
'(ms-dos windows-nt emx
))
728 (setq eol-mnemonic-unix
"(Unix)"
729 eol-mnemonic-mac
"(Mac)"))
730 ;; Both Mac and Unix EOLs are now "native" on Mac OS so keep the
731 ;; abbreviated strings `/' and `:' set in coding.c for them.
732 ((eq system-type
'macos
)
733 (setq eol-mnemonic-dos
"(DOS)"))
734 (t ; this is for Unix/GNU/Linux systems
735 (setq eol-mnemonic-dos
"(DOS)"
736 eol-mnemonic-mac
"(Mac)")))
738 ;; Make sure window system's init file was loaded in loadup.el if
739 ;; using a window system.
740 (condition-case error
741 (unless noninteractive
742 (if (and initial-window-system
745 (concat (symbol-name initial-window-system
) "-win")))))
746 (error "Unsupported window system `%s'" initial-window-system
))
747 ;; Process window-system specific command line parameters.
748 (setq command-line-args
750 (or (cdr (assq initial-window-system handle-args-function-alist
))
751 (error "Unsupported window system `%s'" initial-window-system
))
753 ;; Initialize the window system. (Open connection, etc.)
755 (or (cdr (assq initial-window-system window-system-initialization-alist
))
756 (error "Unsupported window system `%s'" initial-window-system
))))
757 ;; If there was an error, print the error message and exit.
760 (if (eq (car error
) 'error
)
761 (apply 'concat
(cdr error
))
762 (if (memq 'file-error
(get (car error
) 'error-conditions
))
765 (mapconcat (lambda (obj) (prin1-to-string obj t
))
766 (cdr (cdr error
)) ", "))
768 (get (car error
) 'error-message
)
769 (mapconcat (lambda (obj) (prin1-to-string obj t
))
771 'external-debugging-output
)
772 (terpri 'external-debugging-output
)
773 (setq initial-window-system nil
)
776 (set-locale-environment nil
)
778 ;; Convert preloaded file names in load-history to absolute.
779 (let ((simple-file-name
780 ;; Look for simple.el or simple.elc and use their directory
781 ;; as the place where all Lisp files live.
782 (locate-file "simple" load-path
(get-load-suffixes)))
784 ;; Don't abort if simple.el cannot be found, but print a warning.
785 (if (null simple-file-name
)
787 (princ "Warning: Could not find simple.el nor simple.elc"
788 'external-debugging-output
)
789 (terpri 'external-debugging-output
))
790 (setq lisp-dir
(file-truename (file-name-directory simple-file-name
)))
792 (mapcar (lambda (elt)
793 (if (and (stringp (car elt
))
794 (not (file-name-absolute-p (car elt
))))
795 (cons (concat lisp-dir
801 ;; Convert the arguments to Emacs internal representation.
802 (let ((args (cdr command-line-args
)))
805 (decode-coding-string (car args
) locale-coding-system t
))
809 (args (cdr command-line-args
)))
811 ;; Figure out which user's init file to load,
812 ;; either from the environment or from the options.
813 (setq init-file-user
(if noninteractive nil
(user-login-name)))
814 ;; If user has not done su, use current $HOME to find .emacs.
816 (equal init-file-user
(user-real-login-name))
817 (setq init-file-user
""))
819 ;; Process the command-line args, and delete the arguments
820 ;; processed. This is consistent with the way main in emacs.c
822 (while (and (not done
) args
)
823 (let* ((longopts '(("--no-init-file") ("--no-site-file") ("--debug-init")
824 ("--user") ("--iconic") ("--icon-type") ("--quick")
825 ("--no-blinking-cursor") ("--basic-display")))
829 ;; Handle --OPTION=VALUE format.
830 (when (string-match "^\\(--[^=]*\\)=" argi
)
831 (setq argval
(substring argi
(match-end 0))
832 argi
(match-string 1 argi
)))
833 (unless (equal argi
"--")
834 (let ((completion (try-completion argi longopts
)))
835 (if (eq completion t
)
836 (setq argi
(substring argi
1))
837 (if (stringp completion
)
838 (let ((elt (assoc completion longopts
)))
840 (error "Option `%s' is ambiguous" argi
))
841 (setq argi
(substring (car elt
) 1)))
845 ((member argi
'("-Q" "-quick"))
846 (setq init-file-user nil
848 emacs-quick-startup t
))
849 ((member argi
'("-D" "-basic-display"))
850 (setq no-blinking-cursor t
851 emacs-basic-display t
)
852 (push '(vertical-scroll-bars . nil
) initial-frame-alist
))
853 ((member argi
'("-q" "-no-init-file"))
854 (setq init-file-user nil
))
855 ((member argi
'("-u" "-user"))
856 (setq init-file-user
(or argval
(pop args
))
858 ((equal argi
"-no-site-file")
859 (setq site-run-file nil
))
860 ((equal argi
"-debug-init")
861 (setq init-file-debug t
))
862 ((equal argi
"-iconic")
863 (push '(visibility . icon
) initial-frame-alist
))
864 ((member argi
'("-icon-type" "-i" "-itype"))
865 (push '(icon-type . t
) default-frame-alist
))
866 ((member argi
'("-nbc" "-no-blinking-cursor"))
867 (setq no-blinking-cursor t
))
868 ;; Push the popped arg back on the list of arguments.
872 ;; Was argval set but not used?
874 (error "Option `%s' doesn't allow an argument" argi
))))
876 ;; Re-attach the program name to the front of the arg list.
877 (and command-line-args
878 (setcdr command-line-args args
)))
880 (run-hooks 'before-init-hook
)
882 ;; Under X Window, this creates the X frame and deletes the terminal frame.
886 ;; Turn off blinking cursor if so specified in X resources. This is here
887 ;; only because all other settings of no-blinking-cursor are here.
888 (unless (or noninteractive
890 (and (memq window-system
'(x w32 ns
))
891 (not (member (x-get-resource "cursorBlink" "CursorBlink")
893 (setq no-blinking-cursor t
))
895 ;; If frame was created with a menu bar, set menu-bar-mode on.
896 (unless (or noninteractive
898 (and (memq initial-window-system
'(x w32
))
899 (<= (frame-parameter nil
'menu-bar-lines
) 0)))
902 (unless (or noninteractive
(not (fboundp 'tool-bar-mode
)))
903 ;; Set up the tool-bar. Do this even in tty frames, so that there
904 ;; is a tool-bar if Emacs later opens a graphical frame.
905 (if (or emacs-basic-display
906 (and (numberp (frame-parameter nil
'tool-bar-lines
))
907 (<= (frame-parameter nil
'tool-bar-lines
) 0)))
908 ;; On a graphical display with the toolbar disabled via X
909 ;; resources, set up the toolbar without enabling it.
911 ;; Otherwise, enable tool-bar-mode.
914 ;; Can't do this init in defcustom because the relevant variables
916 (custom-reevaluate-setting 'blink-cursor-mode
)
917 (custom-reevaluate-setting 'tooltip-mode
)
918 (custom-reevaluate-setting 'global-font-lock-mode
)
919 (custom-reevaluate-setting 'mouse-wheel-down-event
)
920 (custom-reevaluate-setting 'mouse-wheel-up-event
)
921 (custom-reevaluate-setting 'file-name-shadow-mode
)
922 (custom-reevaluate-setting 'send-mail-function
)
923 (custom-reevaluate-setting 'focus-follows-mouse
)
924 (custom-reevaluate-setting 'global-auto-composition-mode
)
925 (custom-reevaluate-setting 'transient-mark-mode
)
926 (custom-reevaluate-setting 'auto-encryption-mode
)
928 (normal-erase-is-backspace-setup-frame)
930 ;; Register default TTY colors for the case the terminal hasn't a
931 ;; terminal init file. We do this regardles of whether the terminal
932 ;; supports colors or not and regardless the current display type,
933 ;; since users can connect to color-capable terminals and also
934 ;; switch color support on or off in mid-session by setting the
935 ;; tty-color-mode frame parameter.
936 ;; Exception: the `pc' ``window system'' has only 16 fixed colors,
937 ;; and they are already set at this point by a suitable function in
938 ;; window-system-initialization-alist.
939 (or (eq initial-window-system
'pc
)
940 (tty-register-default-colors))
942 ;; Record whether the tool-bar is present before the user and site
943 ;; init files are processed. frame-notice-user-settings uses this
944 ;; to determine if the tool-bar has been disabled by the init files,
945 ;; and the frame needs to be resized.
946 (when (fboundp 'frame-notice-user-settings
)
947 (let ((tool-bar-lines (or (assq 'tool-bar-lines initial-frame-alist
)
948 (assq 'tool-bar-lines default-frame-alist
))))
949 (setq tool-bar-originally-present
952 (not (eq 0 (cdr tool-bar-lines
)))))))
954 (let ((old-scalable-fonts-allowed scalable-fonts-allowed
)
955 (old-font-list-limit font-list-limit
)
956 (old-face-ignored-fonts face-ignored-fonts
))
958 ;; Run the site-start library if it exists. The point of this file is
959 ;; that it is run before .emacs. There is no point in doing this after
960 ;; .emacs; that is useless.
961 ;; Note that user-init-file is nil at this point. Code that might
962 ;; be loaded from site-run-file and wants to test if -q was given
963 ;; should check init-file-user instead, since that is already set.
964 ;; See cus-edit.el for an example.
966 (load site-run-file t t
))
968 ;; Sites should not disable this. Only individuals should disable
969 ;; the startup screen.
970 (setq inhibit-startup-screen nil
)
972 ;; Warn for invalid user name.
974 (if (string-match "[~/:\n]" init-file-user
)
975 (display-warning 'initialization
976 (format "Invalid user name %s"
979 (if (file-directory-p (expand-file-name
980 ;; We don't support ~USER on MS-Windows
981 ;; and MS-DOS except for the current
982 ;; user, and always load .emacs from
983 ;; the current user's home directory
984 ;; (see below). So always check "~",
985 ;; even if invoked with "-u USER", or
986 ;; if $USER or $LOGNAME are set to
987 ;; something different.
988 (if (memq system-type
'(windows-nt ms-dos
))
990 (concat "~" init-file-user
))))
992 (display-warning 'initialization
993 (format "User %s has no home directory"
997 ;; Load that user's init file, or the default one, or none.
998 (let (debug-on-error-from-init-file
999 debug-on-error-should-be-set
1000 (debug-on-error-initial
1001 (if (eq init-file-debug t
) 'startup init-file-debug
))
1002 (orig-enable-multibyte default-enable-multibyte-characters
))
1003 (let ((debug-on-error debug-on-error-initial
)
1004 ;; This function actually reads the init files.
1009 (let ((user-init-file-1
1011 ((eq system-type
'ms-dos
)
1012 (concat "~" init-file-user
"/_emacs"))
1013 ((eq system-type
'windows-nt
)
1014 ;; Prefer .emacs on Windows.
1015 (if (directory-files "~" nil
"^\\.emacs\\(\\.elc?\\)?$")
1017 ;; Also support _emacs for compatibility.
1018 (if (directory-files "~" nil
"^_emacs\\(\\.elc?\\)?$")
1020 ;; But default to .emacs if _emacs does not exist.
1023 (concat "~" init-file-user
"/.emacs")))))
1024 ;; This tells `load' to store the file name found
1025 ;; into user-init-file.
1026 (setq user-init-file t
)
1027 (load user-init-file-1 t t
)
1029 (when (eq user-init-file t
)
1030 ;; If we did not find ~/.emacs, try
1031 ;; ~/.emacs.d/init.el.
1035 (file-name-as-directory
1036 (concat "~" init-file-user
"/.emacs.d")))))
1037 (load otherfile t t
)
1039 ;; If we did not find the user's init file,
1040 ;; set user-init-file conclusively.
1041 ;; Don't let it be set from default.el.
1042 (when (eq user-init-file t
)
1043 (setq user-init-file user-init-file-1
))))
1045 ;; If we loaded a compiled file, set
1046 ;; `user-init-file' to the source version if that
1048 (when (and user-init-file
1049 (equal (file-name-extension user-init-file
)
1051 (let* ((source (file-name-sans-extension user-init-file
))
1052 (alt (concat source
".el")))
1053 (setq source
(cond ((file-exists-p alt
) alt
)
1054 ((file-exists-p source
) source
)
1057 (when (file-newer-than-file-p source user-init-file
)
1058 (message "Warning: %s is newer than %s"
1059 source user-init-file
)
1061 (setq user-init-file source
))))
1063 (unless inhibit-default-init
1064 (let ((inhibit-startup-screen nil
))
1065 ;; Users are supposed to be told their rights.
1066 ;; (Plus how to get help and how to undo.)
1067 ;; Don't you dare turn this off for anyone
1069 (load "default" t t
)))))))))
1071 ;; Do this without a condition-case if the user wants to debug.
1073 (condition-case error
1076 (setq init-file-had-error nil
))
1080 (format "An error occurred while loading `%s':\n\n%s%s%s\n\n\
1081 To ensure normal operation, you should investigate and remove the
1082 cause of the error in your initialization file. Start Emacs with
1083 the `--debug-init' option to view a complete error backtrace."
1085 (get (car error
) 'error-message
)
1086 (if (cdr error
) ": " "")
1087 (mapconcat (lambda (s) (prin1-to-string s t
)) (cdr error
) ", "))
1089 (setq init-file-had-error t
))))
1091 (if (and deactivate-mark transient-mark-mode
)
1092 (with-current-buffer (window-buffer)
1095 ;; If the user has a file of abbrevs, read it (unless -batch).
1096 (when (and (not noninteractive
)
1097 (file-exists-p abbrev-file-name
)
1098 (file-readable-p abbrev-file-name
))
1099 (quietly-read-abbrev-file abbrev-file-name
))
1101 ;; If the abbrevs came entirely from the init file or the
1102 ;; abbrevs file, they do not need saving.
1103 (setq abbrevs-changed nil
)
1105 ;; If we can tell that the init file altered debug-on-error,
1106 ;; arrange to preserve the value that it set up.
1107 (or (eq debug-on-error debug-on-error-initial
)
1108 (setq debug-on-error-should-be-set t
1109 debug-on-error-from-init-file debug-on-error
)))
1110 (if debug-on-error-should-be-set
1111 (setq debug-on-error debug-on-error-from-init-file
))
1112 (unless (or default-enable-multibyte-characters
1113 (eq orig-enable-multibyte default-enable-multibyte-characters
))
1114 ;; Init file changed to unibyte. Reset existing multibyte
1115 ;; buffers (probably *scratch*, *Messages*, *Minibuff-0*).
1116 ;; Arguably this should only be done if they're free of
1117 ;; multibyte characters.
1118 (mapc (lambda (buffer)
1119 (with-current-buffer buffer
1120 (if enable-multibyte-characters
1121 (set-buffer-multibyte nil
))))
1123 ;; Also re-set the language environment in case it was
1124 ;; originally done before unibyte was set and is sensitive to
1125 ;; unibyte (display table, terminal coding system &c).
1126 (set-language-environment current-language-environment
)))
1128 ;; Do this here in case the init file sets mail-host-address.
1129 (if (equal user-mail-address
"")
1130 (setq user-mail-address
(or (getenv "EMAIL")
1131 (concat (user-login-name) "@"
1132 (or mail-host-address
1135 ;; Originally face attributes were specified via
1136 ;; `font-lock-face-attributes'. Users then changed the default
1137 ;; face attributes by setting that variable. However, we try and
1138 ;; be back-compatible and respect its value if set except for
1139 ;; faces where M-x customize has been used to save changes for the
1141 (when (boundp 'font-lock-face-attributes
)
1142 (let ((face-attributes font-lock-face-attributes
))
1143 (while face-attributes
1144 (let* ((face-attribute (pop face-attributes
))
1145 (face (car face-attribute
)))
1146 ;; Rustle up a `defface' SPEC from a
1147 ;; `font-lock-face-attributes' entry.
1148 (unless (get face
'saved-face
)
1149 (let ((foreground (nth 1 face-attribute
))
1150 (background (nth 2 face-attribute
))
1151 (bold-p (nth 3 face-attribute
))
1152 (italic-p (nth 4 face-attribute
))
1153 (underline-p (nth 5 face-attribute
))
1156 (setq face-spec
(cons ':foreground
(cons foreground face-spec
))))
1158 (setq face-spec
(cons ':background
(cons background face-spec
))))
1160 (setq face-spec
(append '(:weight bold
) face-spec
)))
1162 (setq face-spec
(append '(:slant italic
) face-spec
)))
1164 (setq face-spec
(append '(:underline t
) face-spec
)))
1165 (face-spec-set face
(list (list t face-spec
)) nil
)))))))
1167 ;; If parameter have been changed in the init file which influence
1168 ;; face realization, clear the face cache so that new faces will
1170 (unless (and (eq scalable-fonts-allowed old-scalable-fonts-allowed
)
1171 (eq font-list-limit old-font-list-limit
)
1172 (eq face-ignored-fonts old-face-ignored-fonts
))
1173 (clear-face-cache)))
1175 (setq after-init-time
(current-time))
1176 (run-hooks 'after-init-hook
)
1178 ;; Decode all default-directory.
1179 (if (and default-enable-multibyte-characters locale-coding-system
)
1181 (dolist (elt (buffer-list))
1183 (if default-directory
1184 (setq default-directory
1185 (decode-coding-string default-directory
1186 locale-coding-system t
))))
1187 (setq command-line-default-directory
1188 (decode-coding-string command-line-default-directory
1189 locale-coding-system t
))))
1191 ;; If *scratch* exists and init file didn't change its mode, initialize it.
1192 (if (get-buffer "*scratch*")
1193 (with-current-buffer "*scratch*"
1194 (if (eq major-mode
'fundamental-mode
)
1195 (funcall initial-major-mode
))))
1197 ;; Load library for our terminal type.
1198 ;; User init file can set term-file-prefix to nil to prevent this.
1199 (unless (or noninteractive
1200 initial-window-system
)
1201 (tty-run-terminal-initialization (selected-frame)))
1203 ;; Update the out-of-memory error message based on user's key bindings
1204 ;; for save-some-buffers.
1205 (setq memory-signal-data
1207 (substitute-command-keys "Memory exhausted--use \\[save-some-buffers] then exit and restart Emacs")))
1209 ;; Process the remaining args.
1210 (command-line-1 (cdr command-line-args
))
1212 ;; If -batch, terminate after processing the command options.
1213 (if noninteractive
(kill-emacs t
))
1215 ;; In daemon mode, start the server to allow clients to connect.
1216 ;; This is done after loading the user's init file and after
1217 ;; processing all command line arguments to allow e.g. `server-name'
1218 ;; to be changed before the server starts.
1219 (let ((dn (daemonp)))
1221 (when (stringp dn
) (setq server-name dn
))
1223 (daemon-initialized)))
1225 ;; Run emacs-session-restore (session management) if started by
1226 ;; the session manager and we have a session manager connection.
1227 (if (and (boundp 'x-session-previous-id
)
1228 (stringp x-session-previous-id
))
1230 (emacs-session-restore x-session-previous-id
))))
1232 (defcustom initial-scratch-message
(purecopy "\
1233 ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
1234 ;; If you want to create a file, visit that file with C-x C-f,
1235 ;; then enter the text in that file's own buffer.
1238 "Initial message displayed in *scratch* buffer at startup.
1239 If this is nil, no message will be displayed."
1240 :type
'(choice (text :tag
"Message")
1241 (const :tag
"none" nil
))
1242 :group
'initialization
)
1245 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1246 ;;; Fancy splash screen
1247 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1249 (defvar fancy-startup-text
1250 '((:face
(variable-pitch (:foreground
"red"))
1253 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/"))
1254 "Browse http://www.gnu.org/software/emacs/")
1255 ", one component of the "
1258 (if (eq system-type
'gnu
/linux
)
1260 (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html"))
1261 "Browse http://www.gnu.org/gnu/linux-and-gnu.html")
1262 '("GNU" (lambda (button) (describe-gnu-project))
1263 "Display info on the GNU project")))
1264 " operating system.\n\n"
1265 :face variable-pitch
1266 :link
("Emacs Tutorial" (lambda (button) (help-with-tutorial)))
1267 "\tLearn basic keystroke commands"
1269 (let* ((en "TUTORIAL")
1270 (tut (or (get-language-info current-language-environment
1273 (title (with-temp-buffer
1274 (insert-file-contents
1275 (expand-file-name tut tutorial-directory
)
1277 (search-forward ".")
1278 (buffer-substring (point-min) (1- (point))))))
1279 ;; If there is a specific tutorial for the current language
1280 ;; environment and it is not English, append its title.
1281 (if (string= en tut
)
1283 (concat " (" title
")"))))
1285 :link
("Emacs Guided Tour"
1286 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/tour/"))
1287 "Browse http://www.gnu.org/software/emacs/tour/")
1288 "\tOverview of Emacs features at gnu.org\n"
1289 :link
("View Emacs Manual" (lambda (button) (info-emacs-manual)))
1290 "\tView the Emacs manual using Info\n"
1291 :link
("Absence of Warranty" (lambda (button) (describe-no-warranty)))
1292 "\tGNU Emacs comes with "
1293 :face
(variable-pitch (:slant oblique
))
1294 "ABSOLUTELY NO WARRANTY\n"
1295 :face variable-pitch
1296 :link
("Copying Conditions" (lambda (button) (describe-copying)))
1297 "\tConditions for redistributing and changing Emacs\n"
1298 :link
("Ordering Manuals" (lambda (button) (view-order-manuals)))
1299 "\tPurchasing printed copies of manuals\n"
1301 "A list of texts to show in the middle part of splash screens.
1302 Each element in the list should be a list of strings or pairs
1303 `:face FACE', like `fancy-splash-insert' accepts them.")
1305 (defvar fancy-about-text
1306 '((:face
(variable-pitch (:foreground
"red"))
1309 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/"))
1310 "Browse http://www.gnu.org/software/emacs/")
1311 ", one component of the "
1314 (if (eq system-type
'gnu
/linux
)
1316 (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html"))
1317 "Browse http://www.gnu.org/gnu/linux-and-gnu.html")
1318 '("GNU" (lambda (button) (describe-gnu-project))
1319 "Display info on the GNU project.")))
1320 " operating system.\n"
1322 (list 'variable-pitch
1324 (if (eq (frame-parameter nil
'background-mode
) 'dark
)
1325 "cyan" "darkblue"))))
1327 (lambda () (emacs-version))
1329 :face
(variable-pitch (:height
0.8))
1330 (lambda () emacs-copyright
)
1332 :face variable-pitch
1335 (view-file (expand-file-name "AUTHORS" data-directory
))
1336 (goto-char (point-min))))
1337 "\tMany people have contributed code included in GNU Emacs\n"
1338 :link
("Contributing"
1340 (view-file (expand-file-name "CONTRIBUTE" data-directory
))
1341 (goto-char (point-min))))
1342 "\tHow to contribute improvements to Emacs\n"
1344 :link
("GNU and Freedom" (lambda (button) (describe-gnu-project)))
1345 "\tWhy we developed GNU Emacs, and the GNU operating system\n"
1346 :link
("Absence of Warranty" (lambda (button) (describe-no-warranty)))
1347 "\tGNU Emacs comes with "
1348 :face
(variable-pitch (:slant oblique
))
1349 "ABSOLUTELY NO WARRANTY\n"
1350 :face variable-pitch
1351 :link
("Copying Conditions" (lambda (button) (describe-copying)))
1352 "\tConditions for redistributing and changing Emacs\n"
1353 :link
("Getting New Versions" (lambda (button) (describe-distribution)))
1354 "\tHow to obtain the latest version of Emacs\n"
1355 :link
("Ordering Manuals" (lambda (button) (view-order-manuals)))
1356 "\tBuying printed manuals from the FSF\n"
1358 :link
("Emacs Tutorial" (lambda (button) (help-with-tutorial)))
1359 "\tLearn basic Emacs keystroke commands"
1361 (let* ((en "TUTORIAL")
1362 (tut (or (get-language-info current-language-environment
1365 (title (with-temp-buffer
1366 (insert-file-contents
1367 (expand-file-name tut tutorial-directory
)
1369 (search-forward ".")
1370 (buffer-substring (point-min) (1- (point))))))
1371 ;; If there is a specific tutorial for the current language
1372 ;; environment and it is not English, append its title.
1373 (if (string= en tut
)
1375 (concat " (" title
")"))))
1377 :link
("Emacs Guided Tour"
1378 (lambda (button) (browse-url "http://www.gnu.org/software/emacs/tour/"))
1379 "Browse http://www.gnu.org/software/emacs/tour/")
1380 "\tSee an overview of the many facilities of GNU Emacs"
1382 "A list of texts to show in the middle part of the About screen.
1383 Each element in the list should be a list of strings or pairs
1384 `:face FACE', like `fancy-splash-insert' accepts them.")
1387 (defgroup fancy-splash-screen
()
1388 "Fancy splash screen when Emacs starts."
1390 :group
'initialization
)
1392 (defcustom fancy-splash-image nil
1393 "The image to show in the splash screens, or nil for defaults."
1394 :group
'fancy-splash-screen
1395 :type
'(choice (const :tag
"Default" nil
)
1396 (file :tag
"File")))
1399 (defvar splash-screen-keymap
1400 (let ((map (make-sparse-keymap)))
1401 (suppress-keymap map
)
1402 (set-keymap-parent map button-buffer-map
)
1403 (define-key map
"\C-?" 'scroll-down
)
1404 (define-key map
" " 'scroll-up
)
1405 (define-key map
"q" 'exit-splash-screen
)
1407 "Keymap for splash screen buffer.")
1409 ;; These are temporary storage areas for the splash screen display.
1411 (defun fancy-splash-insert (&rest args
)
1412 "Insert text into the current buffer, with faces.
1413 Arguments from ARGS should be either strings; functions called
1414 with no args that return a string; pairs `:face FACE', where FACE
1415 is a face specification usable with `put-text-property'; or pairs
1416 `:link LINK' where LINK is a list of arguments to pass to
1417 `insert-button', of the form (LABEL ACTION [HELP-ECHO]), which
1418 specifies the button's label, `action' property and help-echo string.
1419 FACE and LINK can also be functions, which are evaluated to obtain
1420 a face or button specification."
1421 (let ((current-face nil
))
1423 (cond ((eq (car args
) :face
)
1424 (setq args
(cdr args
) current-face
(car args
))
1425 (if (functionp current-face
)
1426 (setq current-face
(funcall current-face
))))
1427 ((eq (car args
) :link
)
1428 (setq args
(cdr args
))
1429 (let ((spec (car args
)))
1430 (if (functionp spec
)
1431 (setq spec
(funcall spec
)))
1432 (insert-button (car spec
)
1433 'face
(list 'link current-face
)
1435 'help-echo
(concat "mouse-2, RET: "
1437 "Follow this link"))
1439 (t (insert (propertize (let ((it (car args
)))
1444 'help-echo
(startup-echo-area-message)))))
1445 (setq args
(cdr args
)))))
1447 (declare-function image-size
"image.c" (spec &optional pixels frame
))
1449 (defun fancy-splash-head ()
1450 "Insert the head part of the splash screen into the current buffer."
1451 (let* ((image-file (cond ((stringp fancy-splash-image
)
1454 (cond ((<= (display-planes) 8)
1455 (if (image-type-available-p 'xpm
)
1458 ((image-type-available-p 'svg
)
1460 ((image-type-available-p 'png
)
1462 ((image-type-available-p 'xpm
)
1466 (img (create-image image-file
))
1467 (image-width (and img
(car (image-size img
))))
1468 (window-width (window-width (selected-window))))
1470 (when (> window-width image-width
)
1471 ;; Center the image in the window.
1472 (insert (propertize " " 'display
1473 `(space :align-to
(+ center
(-0.5 .
,img
)))))
1475 ;; Change the color of the XPM version of the splash image
1476 ;; so that it is visible with a dark frame background.
1477 (when (and (memq 'xpm img
)
1478 (eq (frame-parameter nil
'background-mode
) 'dark
))
1479 (setq img
(append img
'(:color-symbols
(("#000000" .
"gray30"))))))
1481 ;; Insert the image with a help-echo and a link.
1482 (make-button (prog1 (point) (insert-image img
)) (point)
1484 'help-echo
"mouse-2, RET: Browse http://www.gnu.org/"
1485 'action
(lambda (button) (browse-url "http://www.gnu.org/"))
1489 (defun fancy-startup-tail (&optional concise
)
1490 "Insert the tail part of the splash screen into the current buffer."
1491 (let ((fg (if (eq (frame-parameter nil
'background-mode
) 'dark
)
1492 "cyan" "darkblue")))
1494 (fancy-splash-insert
1495 :face
'variable-pitch
1497 :link
'("Open a File"
1498 (lambda (button) (call-interactively 'find-file
))
1499 "Specify a new file's name, to edit the file")
1501 :link
'("Open Home Directory"
1502 (lambda (button) (dired "~"))
1503 "Open your home directory, to operate on its files")
1505 :link
'("Customize Startup"
1506 (lambda (button) (customize-group 'initialization
))
1507 "Change initialization settings including this screen")
1509 (fancy-splash-insert
1510 :face
'variable-pitch
"To quit a partially entered command, type "
1511 :face
'default
"Control-g"
1512 :face
'variable-pitch
".\n")
1513 (fancy-splash-insert :face
`(variable-pitch (:foreground
,fg
))
1517 :face
'(variable-pitch (:height
0.8))
1520 (and auto-save-list-file-prefix
1521 ;; Don't signal an error if the
1522 ;; directory for auto-save-list files
1523 ;; does not yet exist.
1524 (file-directory-p (file-name-directory
1525 auto-save-list-file-prefix
))
1527 (file-name-directory auto-save-list-file-prefix
)
1530 (regexp-quote (file-name-nondirectory
1531 auto-save-list-file-prefix
)))
1533 (fancy-splash-insert :face
'(variable-pitch (:foreground
"red"))
1534 "\nIf an Emacs session crashed recently, "
1536 :face
'(fixed-pitch :foreground
"red")
1537 "Meta-x recover-session RET"
1538 :face
'(variable-pitch (:foreground
"red"))
1540 " the files you were editing."))
1543 (fancy-splash-insert
1544 :face
'variable-pitch
"\n"
1545 :link
'("Dismiss this startup screen"
1547 (when startup-screen-inhibit-startup-screen
1548 (customize-set-variable 'inhibit-startup-screen t
)
1549 (customize-mark-to-save 'inhibit-startup-screen
)
1551 (let ((w (get-buffer-window "*GNU Emacs*")))
1552 (and w
(not (one-window-p)) (delete-window w
)))
1553 (kill-buffer "*GNU Emacs*")))
1555 (when (or user-init-file custom-file
)
1556 (let ((checked (create-image "\300\300\141\143\067\076\034\030"
1557 'xbm t
:width
8 :height
8 :background
"grey75"
1558 :foreground
"black" :relief -
2 :ascent
'center
))
1559 (unchecked (create-image (make-string 8 0)
1560 'xbm t
:width
8 :height
8 :background
"grey75"
1561 :foreground
"black" :relief -
2 :ascent
'center
)))
1563 " " :on-glyph checked
:off-glyph unchecked
'checked nil
1564 'display unchecked
'follow-link t
1565 'action
(lambda (button)
1566 (if (overlay-get button
'checked
)
1567 (progn (overlay-put button
'checked nil
)
1568 (overlay-put button
'display
(overlay-get button
:off-glyph
))
1569 (setq startup-screen-inhibit-startup-screen nil
))
1570 (overlay-put button
'checked t
)
1571 (overlay-put button
'display
(overlay-get button
:on-glyph
))
1572 (setq startup-screen-inhibit-startup-screen t
)))))
1573 (fancy-splash-insert :face
'(variable-pitch (:height
0.9))
1574 " Never show it again.")))))
1576 (defun exit-splash-screen ()
1577 "Stop displaying the splash screen buffer."
1581 (defun fancy-startup-screen (&optional concise
)
1582 "Display fancy startup screen.
1583 If CONCISE is non-nil, display a concise version of the
1584 splash screen in another window."
1585 (let ((splash-buffer (get-buffer-create "*GNU Emacs*")))
1586 (with-current-buffer splash-buffer
1587 (let ((inhibit-read-only t
))
1589 (setq default-directory command-line-default-directory
)
1590 (make-local-variable 'startup-screen-inhibit-startup-screen
)
1591 (if pure-space-overflow
1592 (insert pure-space-overflow-message
))
1594 (fancy-splash-head))
1595 (dolist (text fancy-startup-text
)
1596 (apply #'fancy-splash-insert text
)
1598 (skip-chars-backward "\n")
1599 (delete-region (point) (point-max))
1601 (fancy-startup-tail concise
))
1602 (use-local-map splash-screen-keymap
)
1605 (set-buffer-modified-p nil
)
1606 (if (and view-read-only
(not view-mode
))
1607 (view-mode-enter nil
'kill-buffer
))
1608 (goto-char (point-min))
1609 (forward-line (if concise
2 4)))
1612 (display-buffer splash-buffer
)
1613 ;; If the splash screen is in a split window, fit it.
1614 (let ((window (get-buffer-window splash-buffer t
)))
1616 (eq window
(selected-window))
1617 (eq window
(next-window window
))
1618 (fit-window-to-buffer window
))))
1619 (switch-to-buffer splash-buffer
))))
1621 (defun fancy-about-screen ()
1622 "Display fancy About screen."
1623 (let ((frame (fancy-splash-frame)))
1624 (save-selected-window
1625 (select-frame frame
)
1626 (switch-to-buffer "*About GNU Emacs*")
1627 (setq buffer-undo-list t
1628 mode-line-format
(propertize "---- %b %-"
1629 'face
'mode-line-buffer-id
))
1630 (let ((inhibit-read-only t
))
1632 (if pure-space-overflow
1633 (insert pure-space-overflow-message
))
1635 (dolist (text fancy-about-text
)
1636 (apply #'fancy-splash-insert text
)
1638 (set-buffer-modified-p nil
)
1639 (goto-char (point-min))
1640 (force-mode-line-update))
1641 (use-local-map splash-screen-keymap
)
1643 (message "%s" (startup-echo-area-message))
1644 (setq buffer-read-only t
)
1645 (goto-char (point-min))
1648 (defun fancy-splash-frame ()
1649 "Return the frame to use for the fancy splash screen.
1650 Returning non-nil does not mean we should necessarily
1651 use the fancy splash screen, but if we do use it,
1652 we put it on this frame."
1654 (dolist (frame (append (frame-list) (list (selected-frame))))
1655 (if (and (frame-visible-p frame
)
1656 (not (window-minibuffer-p (frame-selected-window frame
))))
1657 (setq chosen-frame frame
)))
1660 (defun use-fancy-splash-screens-p ()
1661 "Return t if fancy splash screens should be used."
1662 (when (and (display-graphic-p)
1663 (or (and (display-color-p)
1664 (image-type-available-p 'xpm
))
1665 (image-type-available-p 'pbm
)))
1666 (let ((frame (fancy-splash-frame)))
1668 (let* ((img (create-image (or fancy-splash-image
1669 (if (and (display-color-p)
1670 (image-type-available-p 'xpm
))
1671 "splash.xpm" "splash.pbm"))))
1672 (image-height (and img
(cdr (image-size img nil frame
))))
1673 ;; We test frame-height so that, if the frame is split
1674 ;; by displaying a warning, that doesn't cause the normal
1675 ;; splash screen to be used.
1676 (frame-height (1- (frame-height frame
))))
1677 (> frame-height
(+ image-height
19)))))))
1680 (defun normal-splash-screen (&optional startup concise
)
1681 "Display non-graphic splash screen.
1682 If optional argument STARTUP is non-nil, display the startup screen
1683 after Emacs starts. If STARTUP is nil, display the About screen.
1684 If CONCISE is non-nil, display a concise version of the
1685 splash screen in another window."
1686 (let ((splash-buffer (get-buffer-create "*About GNU Emacs*")))
1687 (with-current-buffer splash-buffer
1688 (setq buffer-read-only nil
)
1690 (setq default-directory command-line-default-directory
)
1691 (set (make-local-variable 'tab-width
) 8)
1693 (set (make-local-variable 'mode-line-format
)
1694 (propertize "---- %b %-" 'face
'mode-line-buffer-id
)))
1696 (if pure-space-overflow
1697 (insert pure-space-overflow-message
))
1699 ;; The convention for this piece of code is that
1700 ;; each piece of output starts with one or two newlines
1701 ;; and does not end with any newlines.
1702 (insert (if startup
"Welcome to GNU Emacs" "This is GNU Emacs"))
1704 (if (eq system-type
'gnu
/linux
)
1705 ", one component of the GNU/Linux operating system.\n"
1706 ", a part of the GNU operating system.\n"))
1709 (if (display-mouse-p)
1710 ;; The user can use the mouse to activate menus
1711 ;; so give help in terms of menu items.
1712 (normal-mouse-startup-screen)
1714 ;; No mouse menus, so give help using kbd commands.
1715 (normal-no-mouse-startup-screen))
1717 (normal-about-screen))
1719 ;; The rest of the startup screen is the same on all
1720 ;; kinds of terminals.
1722 ;; Give information on recovering, if there was a crash.
1724 auto-save-list-file-prefix
1725 ;; Don't signal an error if the
1726 ;; directory for auto-save-list files
1727 ;; does not yet exist.
1728 (file-directory-p (file-name-directory
1729 auto-save-list-file-prefix
))
1731 (file-name-directory auto-save-list-file-prefix
)
1734 (regexp-quote (file-name-nondirectory
1735 auto-save-list-file-prefix
)))
1737 (insert "\n\nIf an Emacs session crashed recently, "
1738 "type Meta-x recover-session RET\nto recover"
1739 " the files you were editing.\n"))
1741 (use-local-map splash-screen-keymap
)
1743 ;; Display the input that we set up in the buffer.
1744 (set-buffer-modified-p nil
)
1745 (setq buffer-read-only t
)
1746 (if (and view-read-only
(not view-mode
))
1747 (view-mode-enter nil
'kill-buffer
))
1748 (if startup
(rename-buffer "*GNU Emacs*" t
))
1749 (goto-char (point-min)))
1751 (display-buffer splash-buffer
)
1752 (switch-to-buffer splash-buffer
))))
1754 (defun normal-mouse-startup-screen ()
1755 ;; The user can use the mouse to activate menus
1756 ;; so give help in terms of menu items.
1758 To follow a link, click Mouse-1 on it, or move to it and type RET.
1759 To quit a partially entered command, type Control-g.\n")
1761 (insert "\nImportant Help menu items:\n")
1762 (insert-button "Emacs Tutorial"
1763 'action
(lambda (button) (help-with-tutorial))
1765 (insert "\t\tLearn basic Emacs keystroke commands\n")
1766 (insert-button "Read the Emacs Manual"
1767 'action
(lambda (button) (info-emacs-manual))
1769 (insert "\tView the Emacs manual using Info\n")
1770 (insert-button "\(Non)Warranty"
1771 'action
(lambda (button) (describe-no-warranty))
1773 (insert "\t\tGNU Emacs comes with ABSOLUTELY NO WARRANTY\n")
1774 (insert-button "Copying Conditions"
1775 'action
(lambda (button) (describe-copying))
1777 (insert "\tConditions for redistributing and changing Emacs\n")
1778 (insert-button "More Manuals / Ordering Manuals"
1779 'action
(lambda (button) (view-order-manuals))
1781 (insert " How to order printed manuals from the FSF\n")
1783 (insert "\nUseful tasks:\n")
1784 (insert-button "Visit New File"
1785 'action
(lambda (button) (call-interactively 'find-file
))
1787 (insert "\t\tSpecify a new file's name, to edit the file\n")
1788 (insert-button "Open Home Directory"
1789 'action
(lambda (button) (dired "~"))
1791 (insert "\tOpen your home directory, to operate on its files\n")
1792 (insert-button "Customize Startup"
1793 'action
(lambda (button) (customize-group 'initialization
))
1795 (insert "\tChange initialization settings including this screen\n")
1797 (insert "\n" (emacs-version)
1798 "\n" emacs-copyright
))
1800 ;; No mouse menus, so give help using kbd commands.
1801 (defun normal-no-mouse-startup-screen ()
1803 ;; If keys have their default meanings,
1804 ;; use precomputed string to save lots of time.
1805 (if (and (eq (key-binding "\C-h") 'help-command
)
1806 (eq (key-binding "\C-xu") 'advertised-undo
)
1807 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-terminal
)
1808 (eq (key-binding "\C-ht") 'help-with-tutorial
)
1809 (eq (key-binding "\C-hi") 'info
)
1810 (eq (key-binding "\C-hr") 'info-emacs-manual
)
1811 (eq (key-binding "\C-h\C-n") 'view-emacs-news
))
1814 Get help\t C-h (Hold down CTRL and press h)
1816 (insert-button "Emacs manual"
1817 'action
(lambda (button) (info-emacs-manual))
1820 (insert-button "Browse manuals"
1821 'action
(lambda (button) (Info-directory))
1825 (insert-button "Emacs tutorial"
1826 'action
(lambda (button) (help-with-tutorial))
1828 (insert " C-h t\tUndo changes\t C-x u
1830 (insert-button "Buy manuals"
1831 'action
(lambda (button) (view-order-manuals))
1833 (insert "\t C-h C-m\tExit Emacs\t C-x C-c"))
1838 (let ((where (where-is-internal
1839 'help-command nil t
)))
1841 (key-description where
)
1843 (insert-button "Emacs manual"
1844 'action
(lambda (button) (info-emacs-manual))
1846 (insert (substitute-command-keys"\t \\[info-emacs-manual]\t"))
1847 (insert-button "Browse manuals"
1848 'action
(lambda (button) (Info-directory))
1850 (insert (substitute-command-keys "\t \\[info]
1852 (insert-button "Emacs tutorial"
1853 'action
(lambda (button) (help-with-tutorial))
1855 (insert (substitute-command-keys
1856 "\t \\[help-with-tutorial]\tUndo changes\t \\[advertised-undo]
1858 (insert-button "Buy manuals"
1859 'action
(lambda (button) (view-order-manuals))
1861 (insert (substitute-command-keys
1862 "\t \\[view-order-manuals]\tExit Emacs\t \\[save-buffers-kill-terminal]")))
1864 ;; Say how to use the menu bar with the keyboard.
1866 (insert-button "Activate menubar"
1867 'action
(lambda (button) (tmm-menubar))
1869 (if (and (eq (key-binding "\M-`") 'tmm-menubar
)
1870 (eq (key-binding [f10]) 'tmm-menubar))
1871 (insert " F10 or ESC ` or M-`")
1872 (insert (substitute-command-keys " \\[tmm-menubar]")))
1874 ;; Many users seem to have problems with these.
1876 \(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
1877 If you have no Meta key, you may instead type ESC followed by the character.)")
1879 ;; Insert links to useful tasks
1880 (insert "\nUseful tasks:\n")
1882 (insert-button "Visit New File"
1883 'action (lambda (button) (call-interactively 'find-file))
1886 (insert-button "Open Home Directory"
1887 'action (lambda (button) (dired "~"))
1891 (insert-button "Customize Startup"
1892 'action (lambda (button) (customize-group 'initialization))
1895 (insert-button "Open *scratch* buffer"
1896 'action (lambda (button) (switch-to-buffer
1897 (get-buffer-create "*scratch*")))
1900 (insert "\n" (emacs-version) "\n" emacs-copyright "\n")
1902 (if (and (eq (key-binding "\C-h\C-c") 'describe-copying)
1903 (eq (key-binding "\C-h\C-d") 'describe-distribution)
1904 (eq (key-binding "\C-h\C-w") 'describe-no-warranty))
1908 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for ")
1909 (insert-button "full details"
1910 'action (lambda (button) (describe-no-warranty))
1913 Emacs is Free Software--Free as in Freedom--so you can redistribute copies
1914 of Emacs and modify it; type C-h C-c to see ")
1915 (insert-button "the conditions"
1916 'action (lambda (button) (describe-copying))
1919 Type C-h C-d for information on ")
1920 (insert-button "getting the latest version"
1921 'action (lambda (button) (describe-distribution))
1924 (insert (substitute-command-keys
1926 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for "))
1927 (insert-button "full details"
1928 'action (lambda (button) (describe-no-warranty))
1930 (insert (substitute-command-keys ".
1931 Emacs is Free Software--Free as in Freedom--so you can redistribute copies
1932 of Emacs and modify it; type \\[describe-copying] to see "))
1933 (insert-button "the conditions"
1934 'action (lambda (button) (describe-copying))
1936 (insert (substitute-command-keys".
1937 Type \\[describe-distribution] for information on "))
1938 (insert-button "getting the latest version"
1939 'action (lambda (button) (describe-distribution))
1943 (defun normal-about-screen ()
1944 (insert "\n" (emacs-version) "\n" emacs-copyright "\n\n")
1946 (insert "To follow a link, click Mouse-1 on it, or move to it and type RET.\n\n")
1948 (insert-button "Authors"
1951 (view-file (expand-file-name "AUTHORS" data-directory))
1952 (goto-char (point-min)))
1954 (insert "\t\tMany people have contributed code included in GNU Emacs\n")
1956 (insert-button "Contributing"
1959 (view-file (expand-file-name "CONTRIBUTE" data-directory))
1960 (goto-char (point-min)))
1962 (insert "\tHow to contribute improvements to Emacs\n\n")
1964 (insert-button "GNU and Freedom"
1965 'action (lambda (button) (describe-gnu-project))
1967 (insert "\t\tWhy we developed GNU Emacs and the GNU system\n")
1969 (insert-button "Absence of Warranty"
1970 'action (lambda (button) (describe-no-warranty))
1972 (insert "\tGNU Emacs comes with ABSOLUTELY NO WARRANTY\n")
1974 (insert-button "Copying Conditions"
1975 'action (lambda (button) (describe-copying))
1977 (insert "\tConditions for redistributing and changing Emacs\n")
1979 (insert-button "Getting New Versions"
1980 'action (lambda (button) (describe-distribution))
1982 (insert "\tHow to get the latest version of GNU Emacs\n")
1984 (insert-button "More Manuals / Ordering Manuals"
1985 'action (lambda (button) (view-order-manuals))
1987 (insert "\tBuying printed manuals from the FSF\n"))
1989 (defun startup-echo-area-message ()
1991 "Starting Emacs daemon.")
1992 ((eq (key-binding "\C-h\C-a") 'about-emacs)
1993 "For information about GNU Emacs and the GNU system, type C-h C-a.")
1995 (substitute-command-keys
1996 "For information about GNU Emacs and the GNU system, type \
1997 \\[about-emacs]."))))
1999 (defun display-startup-echo-area-message ()
2000 (let ((resize-mini-windows t))
2001 (or noninteractive ;(input-pending-p) init-file-had-error
2002 ;; t if the init file says to inhibit the echo area startup message.
2003 (and inhibit-startup-echo-area-message
2005 (or (and (get 'inhibit-startup-echo-area-message 'saved-value)
2006 (equal inhibit-startup-echo-area-message
2007 (if (equal init-file-user "")
2010 ;; Wasn't set with custom; see if .emacs has a setq.
2011 (let ((buffer (get-buffer-create " *temp*")))
2016 (insert-file-contents user-init-file)
2019 "([ \t\n]*setq[ \t\n]+"
2020 "inhibit-startup-echo-area-message[ \t\n]+"
2023 (if (equal init-file-user "")
2029 (kill-buffer buffer)))))
2030 (message "%s" (startup-echo-area-message)))))
2032 (defun display-startup-screen (&optional concise)
2033 "Display startup screen according to display.
2034 A fancy display is used on graphic displays, normal otherwise.
2036 If CONCISE is non-nil, display a concise version of the startup
2038 ;; Prevent recursive calls from server-process-filter.
2039 (if (not (get-buffer "*GNU Emacs*"))
2040 (if (use-fancy-splash-screens-p)
2041 (fancy-startup-screen concise)
2042 (normal-splash-screen t concise))))
2044 (defun display-about-screen ()
2045 "Display the *About GNU Emacs* buffer.
2046 A fancy display is used on graphic displays, normal otherwise."
2048 (if (use-fancy-splash-screens-p)
2049 (fancy-about-screen)
2050 (normal-splash-screen nil)))
2052 (defalias 'about-emacs 'display-about-screen)
2053 (defalias 'display-splash-screen 'display-startup-screen)
2055 (defun command-line-1 (command-line-args-left)
2056 (display-startup-echo-area-message)
2057 (when (and pure-space-overflow
2058 (not noninteractive))
2061 "Building Emacs overflowed pure space.\
2062 (See the node Pure Storage in the Lisp manual for details.)"
2065 (let ((file-count 0)
2067 (when command-line-args-left
2068 ;; We have command args; process them.
2069 (let ((dir command-line-default-directory)
2071 ;; This approach loses for "-batch -L DIR --eval "(require foo)",
2072 ;; if foo is intended to be found in DIR.
2074 ;; ;; The directories listed in --directory/-L options will *appear*
2075 ;; ;; at the front of `load-path' in the order they appear on the
2076 ;; ;; command-line. We cannot do this by *placing* them at the front
2077 ;; ;; in the order they appear, so we need this variable to hold them,
2081 ;; To DTRT we keep track of the splice point and modify `load-path'
2082 ;; straight away upon any --directory/-L option.
2084 just-files ;; t if this follows the magic -- option.
2085 ;; This includes our standard options' long versions
2086 ;; and long versions of what's on command-switch-alist.
2088 (append '(("--funcall") ("--load") ("--insert") ("--kill")
2089 ("--directory") ("--eval") ("--execute") ("--no-splash")
2090 ("--find-file") ("--visit") ("--file") ("--no-desktop"))
2091 (mapcar (lambda (elt)
2092 (list (concat "-" (car elt))))
2093 command-switch-alist)))
2097 ;; Add the long X options to longopts.
2098 (dolist (tem command-line-x-option-alist)
2099 (if (string-match "^--" (car tem))
2100 (push (list (car tem)) longopts)))
2102 ;; Add the long NS options to longopts.
2103 (dolist (tem command-line-ns-option-alist)
2104 (if (string-match "^--" (car tem))
2105 (push (list (car tem)) longopts)))
2107 ;; Loop, processing options.
2108 (while command-line-args-left
2109 (let* ((argi (car command-line-args-left))
2112 (setq command-line-args-left (cdr command-line-args-left))
2114 ;; Do preliminary decoding of the option.
2116 ;; After --, don't look for options; treat all args as files.
2118 ;; Convert long options to ordinary options
2119 ;; and separate out an attached option argument into argval.
2120 (when (string-match "^\\(--[^=]*\\)=" argi)
2121 (setq argval (substring argi (match-end 0))
2122 argi (match-string 1 argi)))
2123 (if (equal argi "--")
2124 (setq completion nil)
2125 (setq completion (try-completion argi longopts)))
2126 (if (eq completion t)
2127 (setq argi (substring argi 1))
2128 (if (stringp completion)
2129 (let ((elt (assoc completion longopts)))
2131 (error "Option `%s' is ambiguous" argi))
2132 (setq argi (substring (car elt) 1)))
2136 ;; Execute the option.
2137 (cond ((setq tem (assoc argi command-switch-alist))
2139 (let ((command-line-args-left
2140 (cons argval command-line-args-left)))
2141 (funcall (cdr tem) argi))
2142 (funcall (cdr tem) argi)))
2144 ((equal argi "-no-splash")
2145 (setq inhibit-startup-screen t))
2147 ((member argi '("-f" ; what the manual claims
2149 "-e")) ; what the source used to say
2150 (setq inhibit-startup-screen t)
2151 (setq tem (intern (or argval (pop command-line-args-left))))
2153 (command-execute tem)
2156 ((member argi '("-eval" "-execute"))
2157 (setq inhibit-startup-screen t)
2158 (eval (read (or argval (pop command-line-args-left)))))
2160 ((member argi '("-L" "-directory"))
2161 (setq tem (expand-file-name
2162 (command-line-normalize-file-name
2163 (or argval (pop command-line-args-left)))))
2164 (cond (splice (setcdr splice (cons tem (cdr splice)))
2165 (setq splice (cdr splice)))
2166 (t (setq load-path (cons tem load-path)
2167 splice load-path))))
2169 ((member argi '("-l" "-load"))
2170 (let* ((file (command-line-normalize-file-name
2171 (or argval (pop command-line-args-left))))
2172 ;; Take file from default dir if it exists there;
2173 ;; otherwise let `load' search for it.
2174 (file-ex (expand-file-name file)))
2175 (when (file-exists-p file-ex)
2176 (setq file file-ex))
2179 ;; This is used to handle -script. It's not clear
2180 ;; we need to document it (it is totally internal).
2181 ((member argi '("-scriptload"))
2182 (let* ((file (command-line-normalize-file-name
2183 (or argval (pop command-line-args-left))))
2184 ;; Take file from default dir.
2185 (file-ex (expand-file-name file)))
2186 (load file-ex nil t t)))
2188 ((equal argi "-insert")
2189 (setq inhibit-startup-screen t)
2190 (setq tem (or argval (pop command-line-args-left)))
2192 (error "File name omitted from `-insert' option"))
2193 (insert-file-contents (command-line-normalize-file-name tem)))
2195 ((equal argi "-kill")
2198 ;; This is for when they use --no-desktop with -q, or
2199 ;; don't load Desktop in their .emacs. If desktop.el
2200 ;; _is_ loaded, it will handle this switch, and we
2201 ;; won't see it by the time we get here.
2202 ((equal argi "-no-desktop")
2203 (message "\"--no-desktop\" ignored because the Desktop package is not loaded"))
2205 ((string-match "^\\+[0-9]+\\'" argi)
2206 (setq line (string-to-number argi)))
2208 ((string-match "^\\+\\([0-9]+\\):\\([0-9]+\\)\\'" argi)
2209 (setq line (string-to-number (match-string 1 argi))
2210 column (string-to-number (match-string 2 argi))))
2212 ((setq tem (assoc argi command-line-x-option-alist))
2213 ;; Ignore X-windows options and their args if not using X.
2214 (setq command-line-args-left
2215 (nthcdr (nth 1 tem) command-line-args-left)))
2217 ((setq tem (assoc argi command-line-ns-option-alist))
2218 ;; Ignore NS-windows options and their args if not using NS.
2219 (setq command-line-args-left
2220 (nthcdr (nth 1 tem) command-line-args-left)))
2222 ((member argi '("-find-file" "-file" "-visit"))
2223 (setq inhibit-startup-screen t)
2224 ;; An explicit option to specify visiting a file.
2225 (setq tem (or argval (pop command-line-args-left)))
2226 (unless (stringp tem)
2227 (error "File name omitted from `%s' option" argi))
2228 (setq file-count (1+ file-count))
2229 (let ((file (expand-file-name
2230 (command-line-normalize-file-name tem) dir)))
2231 (if (= file-count 1)
2232 (setq first-file-buffer (find-file file))
2233 (find-file-other-window file)))
2237 (unless (< column 1)
2238 (move-to-column (1- column)))
2242 (setq just-files t))
2244 ;; We have almost exhausted our options. See if the
2245 ;; user has made any other command-line options available
2246 (let ((hooks command-line-functions)
2249 (not (setq did-hook (funcall (car hooks)))))
2250 (setq hooks (cdr hooks)))
2252 ;; Presume that the argument is a file name.
2254 (if (string-match "\\`-" argi)
2255 (error "Unknown option `%s'" argi))
2256 (unless initial-window-system
2257 (setq inhibit-startup-screen t))
2258 (setq file-count (1+ file-count))
2261 (command-line-normalize-file-name orig-argi)
2263 (cond ((= file-count 1)
2264 (setq first-file-buffer (find-file file)))
2265 (inhibit-startup-screen
2266 (find-file-other-window file))
2267 (t (find-file file))))
2271 (unless (< column 1)
2272 (move-to-column (1- column)))
2273 (setq column 0))))))
2274 ;; In unusual circumstances, the execution of Lisp code due
2275 ;; to command-line options can cause the last visible frame
2276 ;; to be deleted. In this case, kill emacs to avoid an
2278 (unless (frame-live-p (selected-frame)) (kill-emacs nil))))))
2280 (when initial-buffer-choice
2281 (cond ((eq initial-buffer-choice t)
2282 (switch-to-buffer (get-buffer-create "*scratch*")))
2283 ((stringp initial-buffer-choice)
2284 (find-file initial-buffer-choice))))
2286 ;; If *scratch* exists and is empty, insert initial-scratch-message.
2287 (and initial-scratch-message
2288 (get-buffer "*scratch*")
2289 (with-current-buffer "*scratch*"
2290 (when (zerop (buffer-size))
2291 (insert initial-scratch-message)
2292 (set-buffer-modified-p nil))))
2294 (if (or inhibit-startup-screen
2295 initial-buffer-choice
2297 emacs-quick-startup)
2299 ;; Not displaying a startup screen. If 3 or more files
2300 ;; visited, and not all visible, show user what they all are.
2301 (and (> file-count 2)
2302 (not noninteractive)
2303 (not inhibit-startup-buffer-menu)
2304 (or (get-buffer-window first-file-buffer)
2307 ;; Display a startup screen, after some preparations.
2309 ;; If there are no switches to process, we might as well
2310 ;; run this hook now, and there may be some need to do it
2311 ;; before doing any output.
2312 (run-hooks 'emacs-startup-hook)
2313 (and term-setup-hook
2314 (run-hooks 'term-setup-hook))
2315 (setq inhibit-startup-hooks t)
2317 ;; It's important to notice the user settings before we
2318 ;; display the startup message; otherwise, the settings
2319 ;; won't take effect until the user gives the first
2320 ;; keystroke, and that's distracting.
2321 (when (fboundp 'frame-notice-user-settings)
2322 (frame-notice-user-settings))
2324 ;; If there are no switches to process, we might as well
2325 ;; run this hook now, and there may be some need to do it
2326 ;; before doing any output.
2327 (when window-setup-hook
2328 (run-hooks 'window-setup-hook)
2329 ;; Don't let the hook be run twice.
2330 (setq window-setup-hook nil))
2332 ;; ;; Do this now to avoid an annoying delay if the user
2333 ;; ;; clicks the menu bar during the sit-for.
2334 ;; (when (display-popup-menus-p)
2335 ;; (precompute-menubar-bindings))
2336 ;; (with-no-warnings
2337 ;; (setq menubar-bindings-done t))
2339 (if (> file-count 0)
2340 (display-startup-screen t)
2341 (display-startup-screen nil)))))
2343 (defun command-line-normalize-file-name (file)
2344 "Collapse multiple slashes to one, to handle non-Emacs file names."
2346 ;; Use arg 1 so that we don't collapse // at the start of the file name.
2347 ;; That is significant on some systems.
2348 ;; However, /// at the beginning is supposed to mean just /, not //.
2349 (if (string-match "^///+" file)
2350 (setq file (replace-match "/" t t file)))
2351 (while (string-match "//+" file 1)
2352 (setq file (replace-match "/" t t file)))
2355 ;; arch-tag: 7e294698-244d-4758-984b-4047f887a5db
2356 ;;; startup.el ends here