209
|
1 ;;; startup.el --- process XEmacs shell arguments
|
|
2
|
|
3 ;; Copyright (C) 1985-1986, 1990, 1992-1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (c) 1993, 1994 Sun Microsystems, Inc.
|
|
5 ;; Copyright (C) 1995 Board of Trustees, University of Illinois
|
|
6
|
|
7 ;; Maintainer: XEmacs Development Team
|
|
8 ;; Keywords: internal, dumped
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: FSF 19.34.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
|
31 ;; This file is dumped with XEmacs.
|
|
32
|
|
33 ;; -batch, -t, and -nw are processed by main() in emacs.c and are
|
|
34 ;; never seen by lisp code.
|
|
35
|
|
36 ;; -version and -help are special-cased as well: they imply -batch,
|
|
37 ;; but are left on the list for lisp code to process.
|
|
38
|
|
39 ;;; Code:
|
|
40
|
|
41 (setq top-level '(normal-top-level))
|
|
42
|
|
43 (defvar command-line-processed nil "t once command line has been processed")
|
|
44
|
|
45 (defconst startup-message-timeout 12000) ; More or less disable the timeout
|
|
46
|
|
47 (defconst inhibit-startup-message nil
|
|
48 "*Non-nil inhibits the initial startup message.
|
|
49 This is for use in your personal init file, once you are familiar
|
|
50 with the contents of the startup message.")
|
|
51
|
|
52 ;; #### FSFmacs randomness
|
|
53 ;;(defconst inhibit-startup-echo-area-message nil
|
|
54 ;; "*Non-nil inhibits the initial startup echo area message.
|
|
55 ;;Inhibition takes effect only if your `.emacs' file contains
|
|
56 ;;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
|
|
63 (defconst inhibit-default-init nil
|
|
64 "*Non-nil inhibits loading the `default' library.")
|
|
65
|
|
66 (defvar command-line-args-left nil
|
|
67 "List of command-line args not yet processed.") ; bound by `command-line'
|
|
68
|
|
69 (defvar command-line-default-directory nil
|
|
70 "Default directory to use for command line arguments.
|
|
71 This is normally copied from `default-directory' when XEmacs starts.")
|
|
72
|
|
73 (defvar before-init-hook nil
|
|
74 "Functions to call after handling urgent options but before init files.
|
|
75 The frame system uses this to open frames to display messages while
|
|
76 XEmacs loads the user's initialization file.")
|
|
77
|
|
78 (defvar after-init-hook nil
|
|
79 "*Functions to call after loading the init file (`~/.xemacs/init.el').
|
|
80 The call is not protected by a condition-case, so you can set `debug-on-error'
|
|
81 in `init.el', and put all the actual code on `after-init-hook'.")
|
|
82
|
|
83 (defvar term-setup-hook nil
|
|
84 "*Functions to be called after loading terminal-specific Lisp code.
|
|
85 See `run-hooks'. This variable exists for users to set, so as to
|
|
86 override the definitions made by the terminal-specific file. XEmacs
|
|
87 never sets this variable itself.")
|
|
88
|
|
89 (defvar keyboard-type nil
|
|
90 "The brand of keyboard you are using.
|
|
91 This variable is used to define the proper function and keypad keys
|
|
92 for use under X. It is used in a fashion analogous to the environment
|
|
93 value TERM.")
|
|
94
|
|
95 (defvar window-setup-hook nil
|
|
96 "Normal hook run to initialize window system display.
|
|
97 XEmacs runs this hook after processing the command line arguments and loading
|
|
98 the user's init file.")
|
|
99
|
|
100 (defconst initial-major-mode 'lisp-interaction-mode
|
|
101 "Major mode command symbol to use for the initial *scratch* buffer.")
|
|
102
|
|
103 (defvar init-file-user nil
|
|
104 "Identity of user whose `~/.xemacs/init.el' file is or was read.
|
|
105 The value is nil if no init file is being used; otherwise, it may be either
|
|
106 the null string, meaning that the init file was taken from the user that
|
|
107 originally logged in, or it may be a string containing a user's name.
|
|
108
|
|
109 In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
|
|
110 evaluates to the name of the directory where the `init.el' file was
|
|
111 looked for.
|
|
112
|
|
113 Setting `init-file-user' does not prevent Emacs from loading
|
|
114 `site-start.el'. The only way to do that is to use `--no-site-file'.")
|
|
115
|
|
116 ;; #### called `site-run-file' in FSFmacs
|
|
117
|
|
118 (defvar site-start-file (purecopy "site-start")
|
|
119 "File containing site-wide run-time initializations.
|
|
120 This file is loaded at run-time before `~/.xemacs/init.el'. It
|
|
121 contains inits that need to be in place for the entire site, but
|
|
122 which, due to their higher incidence of change, don't make sense to
|
|
123 load into XEmacs' dumped image. Thus, the run-time load order is:
|
|
124
|
|
125 1. file described in this variable, if non-nil;
|
|
126 2. `~/.xemacs/init.el';
|
|
127 3. `/path/to/xemacs/lisp/default.el'.
|
|
128
|
|
129 Don't use the `site-start.el' file for things some users may not like.
|
|
130 Put them in `default.el' instead, so that users can more easily
|
|
131 override them. Users can prevent loading `default.el' with the `-q'
|
|
132 option or by setting `inhibit-default-init' in their own init files,
|
|
133 but inhibiting `site-start.el' requires `--no-site-file', which
|
|
134 is less convenient.")
|
|
135
|
|
136 ;;(defconst iso-8859-1-locale-regexp "8859[-_]?1"
|
|
137 ;; "Regexp that specifies when to enable the ISO 8859-1 character set.
|
|
138 ;;We do that if this regexp matches the locale name
|
|
139 ;;specified by the LC_ALL, LC_CTYPE and LANG environment variables.")
|
|
140
|
|
141 (defvar mail-host-address nil
|
|
142 "*Name of this machine, for purposes of naming users.")
|
|
143
|
|
144 (defvar user-mail-address nil
|
|
145 "*Full mailing address of this user.
|
|
146 This is initialized based on `mail-host-address',
|
|
147 after your init file is read, in case it sets `mail-host-address'.")
|
|
148
|
|
149 (defvar auto-save-list-file-prefix "~/.xemacs/.saves-"
|
|
150 "Prefix for generating auto-save-list-file-name.
|
|
151 Emacs's pid and the system name will be appended to
|
|
152 this prefix to create a unique file name.")
|
|
153
|
|
154 (defvar init-file-debug nil)
|
|
155
|
|
156 (defvar init-file-had-error nil)
|
|
157
|
|
158 (defvar init-file-loaded nil
|
|
159 "True after the user's init file has been loaded (or suppressed with -q).
|
|
160 This will be true when `after-init-hook' is run and at all times
|
|
161 after, and will not be true at any time before.")
|
|
162
|
|
163 (defvar initial-frame-unmapped-p nil)
|
|
164
|
|
165
|
|
166
|
|
167 (defvar command-switch-alist
|
|
168 (purecopy
|
|
169 '(("-help" . command-line-do-help)
|
|
170 ("-version". command-line-do-version)
|
|
171 ("-V" . command-line-do-version)
|
|
172 ("-funcall". command-line-do-funcall)
|
|
173 ("-f" . command-line-do-funcall)
|
|
174 ("-e" . command-line-do-funcall-1)
|
|
175 ("-eval" . command-line-do-eval)
|
|
176 ("-load" . command-line-do-load)
|
|
177 ("-l" . command-line-do-load)
|
|
178 ("-insert" . command-line-do-insert)
|
|
179 ("-i" . command-line-do-insert)
|
|
180 ("-kill" . command-line-do-kill)
|
|
181 ;; Options like +35 are handled specially.
|
|
182 ;; Window-system, site, or package-specific code might add to this.
|
|
183 ;; X11 handles its options by letting Xt remove args from this list.
|
|
184 ))
|
|
185 "Alist of command-line switches.
|
|
186 Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
|
|
187 HANDLER-FUNCTION receives switch name as sole arg;
|
|
188 remaining command-line args are in the variable `command-line-args-left'.")
|
|
189
|
|
190 ;;; default switches
|
|
191 ;;; Note: these doc strings are semi-magical.
|
|
192
|
|
193 (defun command-line-do-help (arg)
|
|
194 "Print the XEmacs usage message and exit."
|
|
195 (let ((standard-output 'external-debugging-output))
|
|
196 (princ (concat "\n" (emacs-version) "\n\n"))
|
|
197 (princ
|
|
198 (if (featurep 'x)
|
|
199 (concat (emacs-name)
|
|
200 " accepts all standard X Toolkit command line options.\n"
|
|
201 "In addition, the")
|
|
202 "The"))
|
|
203 (princ " following options are accepted:
|
|
204
|
|
205 -t <device> Use TTY <device> instead of the terminal for input
|
|
206 and output. This implies the -nw option.
|
|
207 -nw Inhibit the use of any window-system-specific
|
|
208 display code: use the current tty.
|
|
209 -batch Execute noninteractively (messages go to stderr).
|
|
210 -debug-init Enter the debugger if an error in the init file occurs.
|
|
211 -unmapped Do not map the initial frame.
|
|
212 -no-site-file Do not load the site-specific init file (site-start.el).
|
|
213 -no-init-file Do not load the user-specific init file (~/.emacs).
|
|
214 -no-packages Do not process the package path.
|
239
|
215 -no-autoloads Do not load global symbol files (auto-autoloads) at
|
|
216 startup. Also implies `-vanilla'.
|
209
|
217 -vanilla Equivalent to -q -no-site-file -no-packages.
|
|
218 -q Same as -no-init-file.
|
|
219 -user <user> Load user's init file instead of your own.
|
|
220 -u <user> Same as -user.\n")
|
|
221 (let ((l command-switch-alist)
|
|
222 (insert (lambda (&rest x)
|
|
223 (princ " ")
|
|
224 (let ((len 2))
|
|
225 (while x
|
|
226 (princ (car x))
|
|
227 (incf len (length (car x)))
|
|
228 (setq x (cdr x)))
|
|
229 (when (>= len 24)
|
|
230 (terpri) (setq len 0))
|
|
231 (while (< len 24)
|
|
232 (princ " ")
|
|
233 (incf len))))))
|
|
234 (while l
|
|
235 (let ((name (car (car l)))
|
|
236 (fn (cdr (car l)))
|
|
237 doc arg cons)
|
|
238 (cond
|
|
239 ((and (symbolp fn) (get fn 'undocumented)) nil)
|
|
240 (t
|
|
241 (setq doc (documentation fn))
|
|
242 (if (member doc '(nil "")) (setq doc "(undocumented)"))
|
|
243 (cond ((string-match "\n\\(<.*>\\)\n?\\'" doc)
|
|
244 ;; Doc of the form "The frobber switch\n<arg1> <arg2>"
|
|
245 (setq arg (substring doc (match-beginning 1) (match-end 1))
|
|
246 doc (substring doc 0 (match-beginning 0))))
|
|
247 ((string-match "\n+\\'" doc)
|
|
248 (setq doc (substring doc 0 (match-beginning 0)))))
|
|
249 (if (and (setq cons (rassq fn command-switch-alist))
|
|
250 (not (eq cons (car l))))
|
|
251 (setq doc (format "Same as %s." (car cons))))
|
|
252 (if arg
|
|
253 (funcall insert name " " arg)
|
|
254 (funcall insert name))
|
|
255 (princ doc)
|
|
256 (terpri))))
|
|
257 (setq l (cdr l))))
|
|
258 (princ (concat "\
|
|
259 +N <file> Start displaying <file> at line N.
|
|
260
|
|
261 Anything else is considered a file name, and is placed into a buffer for
|
|
262 editing.
|
|
263
|
|
264 " (emacs-name) " has an online tutorial and manuals. Type ^Ht (Control-h t) after
|
|
265 starting XEmacs to run the tutorial. Type ^Hi to enter the manual browser.
|
|
266 Type ^H^H^H (Control-h Control-h Control-h) to get more help options.\n")
|
|
267
|
|
268 (kill-emacs 0))))
|
|
269
|
|
270 (defun command-line-do-funcall (arg)
|
|
271 "Invoke the named lisp function with no arguments.
|
|
272 <function>"
|
|
273 (funcall (intern (pop command-line-args-left))))
|
|
274 (fset 'command-line-do-funcall-1 'command-line-do-funcall)
|
|
275 (put 'command-line-do-funcall-1 'undocumented t)
|
|
276
|
|
277 (defun command-line-do-eval (arg)
|
|
278 "Evaluate the lisp form. Quote it carefully.
|
|
279 <form>"
|
|
280 (eval (read (pop command-line-args-left))))
|
|
281
|
|
282 (defun command-line-do-load (arg)
|
|
283 "Load the named file of Lisp code into XEmacs.
|
|
284 <file>"
|
|
285 (let ((file (pop command-line-args-left)))
|
|
286 ;; Take file from default dir if it exists there;
|
|
287 ;; otherwise let `load' search for it.
|
|
288 (if (file-exists-p (expand-file-name file))
|
|
289 (setq file (expand-file-name file)))
|
|
290 (load file nil t)))
|
|
291
|
|
292 (defun command-line-do-insert (arg)
|
|
293 "Insert file into the current buffer.
|
|
294 <file>"
|
|
295 (insert-file-contents (pop command-line-args-left)))
|
|
296
|
|
297 (defun command-line-do-kill (arg)
|
|
298 "Exit XEmacs."
|
|
299 (kill-emacs t))
|
|
300
|
|
301 (defun command-line-do-version (arg)
|
|
302 "Print version info and exit."
|
|
303 (princ (concat (emacs-version) "\n"))
|
|
304 (kill-emacs 0))
|
|
305
|
|
306
|
|
307 ;;; Processing the command line and loading various init files
|
|
308
|
|
309 (defun early-error-handler (&rest debugger-args)
|
|
310 "You should probably not be using this."
|
|
311 ;; Used as the debugger during XEmacs initialization; if an error occurs,
|
|
312 ;; print some diagnostics, and kill XEmacs.
|
|
313
|
|
314 ;; output the contents of the warning buffer, since it won't be seen
|
|
315 ;; otherwise.
|
|
316 ;; #### kludge! The call to Feval forces the pending warnings to
|
|
317 ;; get output. There definitely needs to be a better way.
|
|
318 (let ((buffer (eval (get-buffer-create "*Warnings*"))))
|
|
319 (princ (buffer-substring (point-min buffer) (point-max buffer) buffer)
|
|
320 'external-debugging-output))
|
|
321
|
|
322 (let ((string "Initialization error")
|
|
323 (error (nth 1 debugger-args))
|
|
324 (debug-on-error nil)
|
|
325 (stream 'external-debugging-output))
|
|
326 (if (null error)
|
|
327 (princ string stream)
|
|
328 (princ (concat "\n" string ": ") stream)
|
|
329 (condition-case ()
|
|
330 (display-error error stream)
|
|
331 (error (princ "<<< error printing error message >>>" stream)))
|
|
332 (princ "\n" stream)
|
|
333 (if (memq (car-safe error) '(void-function void-variable))
|
|
334 (princ "
|
|
335 This probably means that XEmacs is picking up an old version of
|
|
336 the lisp library, or that some .elc files are not up-to-date.\n"
|
|
337 stream)))
|
|
338 (when (not suppress-early-error-handler-backtrace)
|
|
339 (let ((print-length 1000)
|
|
340 (print-level 1000)
|
|
341 (print-escape-newlines t)
|
|
342 (print-readably nil))
|
|
343 (when (getenv "EMACSLOADPATH")
|
|
344 (princ (format "\n$EMACSLOADPATH is %s" (getenv "EMACSLOADPATH"))
|
|
345 stream))
|
|
346 (princ (format "\nexec-directory is %S" exec-directory) stream)
|
|
347 (princ (format "\ndata-directory is %S" data-directory) stream)
|
|
348 (princ (format "\ndoc-directory is %S" doc-directory) stream)
|
|
349 (princ (format "\nload-path is %S" load-path) stream)
|
|
350 (princ "\n\n" stream)))
|
|
351 (when (not suppress-early-error-handler-backtrace)
|
|
352 (backtrace stream t)))
|
|
353 (kill-emacs -1))
|
|
354
|
|
355 (defvar lock-directory)
|
|
356 (defvar superlock-file)
|
|
357
|
|
358 (defun normal-top-level ()
|
|
359 (if command-line-processed
|
|
360 (message "Back to top level.")
|
|
361 (setq command-line-processed t)
|
|
362 ;; Canonicalize HOME (PWD is canonicalized by init_buffer in buffer.c)
|
|
363 (unless (eq system-type 'vax-vms)
|
|
364 (let ((value (getenv "HOME")))
|
|
365 (if (and value
|
|
366 (< (length value) (length default-directory))
|
|
367 (equal (file-attributes default-directory)
|
|
368 (file-attributes value)))
|
|
369 (setq default-directory (file-name-as-directory value)))))
|
|
370 (setq default-directory (abbreviate-file-name default-directory))
|
|
371 (initialize-xemacs-paths)
|
|
372 (unwind-protect
|
|
373 (command-line)
|
|
374 ;; Do this again, in case .emacs defined more abbreviations.
|
|
375 (setq default-directory (abbreviate-file-name default-directory))
|
|
376 ;; Specify the file for recording all the auto save files of
|
|
377 ;; this session. This is used by recover-session.
|
|
378 (setq auto-save-list-file-name
|
|
379 (expand-file-name
|
|
380 (format "%s%d-%s"
|
|
381 auto-save-list-file-prefix
|
|
382 (emacs-pid)
|
|
383 (system-name))))
|
|
384 (run-hooks 'emacs-startup-hook)
|
|
385 (and term-setup-hook
|
|
386 (run-hooks 'term-setup-hook))
|
|
387 (setq term-setup-hook nil)
|
|
388 ;; ;; Modify the initial frame based on what .emacs puts into
|
|
389 ;; ;; ...-frame-alist.
|
|
390 (frame-notice-user-settings)
|
|
391 ;; ;;####FSFmacs junk
|
|
392 ;; ;; Now we know the user's default font, so add it to the menu.
|
|
393 ;; (if (fboundp 'font-menu-add-default)
|
|
394 ;; (font-menu-add-default))
|
|
395 (when window-setup-hook
|
|
396 (run-hooks 'window-setup-hook))
|
|
397 (setq window-setup-hook nil))
|
|
398 ;;####FSFmacs junk
|
|
399 ;; (or menubar-bindings-done
|
|
400 ;; (precompute-menubar-bindings))
|
|
401 ))
|
|
402
|
|
403 ;;####FSFmacs junk
|
|
404 ;;; Precompute the keyboard equivalents in the menu bar items.
|
|
405 ;;(defun precompute-menubar-bindings ()
|
|
406 ;; (if (eq window-system 'x)
|
|
407 ;; (let ((submap (lookup-key global-map [menu-bar])))
|
|
408 ;; (while submap
|
|
409 ;; (and (consp (car submap))
|
|
410 ;; (symbolp (car (car submap)))
|
|
411 ;; (stringp (car-safe (cdr (car submap))))
|
|
412 ;; (keymapp (cdr (cdr (car submap))))
|
|
413 ;; (x-popup-menu nil (cdr (cdr (car submap)))))
|
|
414 ;; (setq submap (cdr submap))))))
|
|
415
|
|
416 (defun command-line-early (args)
|
|
417 ;; This processes those switches which need to be processed before
|
|
418 ;; starting up the window system.
|
|
419
|
|
420 (setq command-line-default-directory default-directory)
|
|
421
|
|
422 ;; See if we should import version-control from the environment variable.
|
|
423 (let ((vc (getenv "VERSION_CONTROL")))
|
|
424 (cond ((eq vc nil)) ;don't do anything if not set
|
|
425 ((or (string= vc "t")
|
|
426 (string= vc "numbered"))
|
|
427 (setq version-control t))
|
|
428 ((or (string= vc "nil")
|
|
429 (string= vc "existing"))
|
|
430 (setq version-control nil))
|
|
431 ((or (string= vc "never")
|
|
432 (string= vc "simple"))
|
|
433 (setq version-control 'never))))
|
|
434
|
|
435 ;;####FSFmacs
|
|
436 ;; (if (let ((ctype
|
|
437 ;; ;; Use the first of these three envvars that has a nonempty value.
|
|
438 ;; (or (let ((string (getenv "LC_ALL")))
|
|
439 ;; (and (not (equal string "")) string))
|
|
440 ;; (let ((string (getenv "LC_CTYPE")))
|
|
441 ;; (and (not (equal string "")) string))
|
|
442 ;; (let ((string (getenv "LANG")))
|
|
443 ;; (and (not (equal string "")) string)))))
|
|
444 ;; (and ctype
|
|
445 ;; (string-match iso-8859-1-locale-regexp ctype)))
|
|
446 ;; (progn
|
|
447 ;; (standard-display-european t)
|
|
448 ;; (require 'iso-syntax)))
|
|
449
|
|
450 ;; Figure out which user's init file to load,
|
|
451 ;; either from the environment or from the options.
|
|
452 (setq init-file-user (if (noninteractive) nil (user-login-name)))
|
|
453 ;; If user has not done su, use current $HOME to find .emacs.
|
|
454 (and init-file-user (string= init-file-user (user-real-login-name))
|
|
455 (setq init-file-user ""))
|
|
456
|
|
457 ;; Allow (at least) these arguments anywhere in the command line
|
|
458 (let ((new-args nil)
|
|
459 (arg nil))
|
|
460 (while args
|
|
461 (setq arg (pop args))
|
|
462 (cond
|
|
463 ((or (string= arg "-q")
|
|
464 (string= arg "-no-init-file"))
|
|
465 (setq init-file-user nil))
|
|
466 ((string= arg "-no-site-file")
|
|
467 (setq site-start-file nil))
|
|
468 ((or (string= arg "-no-packages")
|
|
469 (string= arg "--no-packages"))
|
|
470 (setq inhibit-package-init t))
|
|
471 ((or (string= arg "-vanilla")
|
239
|
472 (string= arg "--vanilla")
|
|
473 ;; Some work on this one already done in emacs.c.
|
|
474 (string= arg "-no-autoloads")
|
|
475 (string= arg "--no-autoloads"))
|
209
|
476 (setq init-file-user nil
|
|
477 site-start-file nil
|
|
478 inhibit-package-init t))
|
|
479 ((or (string= arg "-u")
|
|
480 (string= arg "-user"))
|
|
481 (setq init-file-user (pop args)))
|
|
482 ((string= arg "-debug-init")
|
|
483 (setq init-file-debug t))
|
|
484 ((string= arg "-unmapped")
|
|
485 (setq initial-frame-unmapped-p t))
|
|
486 ((or (string= arg "--") (string= arg "-"))
|
|
487 (while args
|
|
488 (push (pop args) new-args)))
|
|
489 (t (push arg new-args))))
|
|
490
|
|
491 (nreverse new-args)))
|
|
492
|
|
493 (defconst initial-scratch-message "\
|
|
494 ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
|
|
495 ;; If you want to create a file, first visit that file with C-x C-f,
|
|
496 ;; then enter the text in that file's own buffer.
|
|
497
|
|
498 "
|
|
499 "Initial message displayed in *scratch* buffer at startup.
|
|
500 If this is nil, no message will be displayed.")
|
|
501
|
|
502 (defun command-line ()
|
|
503 (let ((command-line-args-left (cdr command-line-args)))
|
|
504
|
|
505 (let ((debugger 'early-error-handler)
|
|
506 (debug-on-error t))
|
|
507 (set-default-load-path)
|
|
508
|
|
509 ;; Process magic command-line switches like -q and -u. Do this
|
|
510 ;; before creating the first frame because some of these switches
|
|
511 ;; may affect that. I think it's ok to do this before establishing
|
|
512 ;; the X connection, and maybe someday things like -nw can be
|
|
513 ;; handled here instead of down in C.
|
|
514 (setq command-line-args-left (command-line-early command-line-args-left))
|
|
515
|
|
516 ;; Setup the toolbar icon directory
|
|
517 (when (featurep 'toolbar)
|
|
518 (init-toolbar-location))
|
|
519
|
|
520 ;; Run the window system's init function. tty is considered to be
|
|
521 ;; a type of window system for this purpose. This creates the
|
|
522 ;; initial (non stdio) device.
|
|
523 (when (and initial-window-system (not noninteractive))
|
|
524 (funcall (intern (concat "init-"
|
|
525 (symbol-name initial-window-system)
|
|
526 "-win"))))
|
|
527
|
|
528 ;; When not in batch mode, this creates the first visible frame,
|
|
529 ;; and deletes the stdio device.
|
|
530 (frame-initialize))
|
|
531
|
|
532 ;;
|
|
533 ;; We have normality, I repeat, we have normality. Anything you still
|
|
534 ;; can't cope with is therefore your own problem. (And we don't need
|
|
535 ;; to kill XEmacs for it.)
|
|
536 ;;
|
|
537
|
|
538 ;;; Load init files.
|
|
539 (load-init-file)
|
|
540
|
|
541 (with-current-buffer (get-buffer "*scratch*")
|
|
542 (erase-buffer)
|
|
543 ;; (insert initial-scratch-message)
|
|
544 (set-buffer-modified-p nil)
|
|
545 (when (eq major-mode 'fundamental-mode)
|
|
546 (funcall initial-major-mode)))
|
|
547
|
|
548 ;; Load library for our terminal type.
|
|
549 ;; User init file can set term-file-prefix to nil to prevent this.
|
|
550 ;; Note that for any TTY's opened subsequently, the TTY init
|
|
551 ;; code will run this.
|
|
552 (when (and (eq 'tty (console-type))
|
|
553 (not (noninteractive)))
|
|
554 (load-terminal-library))
|
|
555
|
|
556 ;; Process the remaining args.
|
|
557 (command-line-1)
|
|
558
|
|
559 ;; it was turned on by default so that the warnings don't get displayed
|
|
560 ;; until after the splash screen.
|
|
561 (setq inhibit-warning-display nil)
|
|
562 ;; If -batch, terminate after processing the command options.
|
|
563 (when (noninteractive) (kill-emacs t))))
|
|
564
|
|
565 (defun load-terminal-library ()
|
|
566 (when term-file-prefix
|
|
567 (let ((term (getenv "TERM"))
|
|
568 hyphend)
|
|
569 (while (and term
|
|
570 (not (load (concat term-file-prefix term) t t)))
|
|
571 ;; Strip off last hyphen and what follows, then try again
|
|
572 (if (setq hyphend (string-match "[-_][^-_]+\\'" term))
|
|
573 (setq term (substring term 0 hyphend))
|
|
574 (setq term nil))))))
|
|
575
|
|
576 (defconst user-init-directory "/.xemacs/"
|
|
577 "Directory where user initialization and user-installed packages may go.")
|
|
578 (define-obsolete-variable-alias
|
|
579 'emacs-user-extension-dir
|
|
580 'user-init-directory)
|
|
581
|
|
582 (defun load-user-init-file (init-file-user)
|
|
583 "This function actually reads the init files.
|
|
584 First try .xemacs/init, then try .emacs, but only load one of the two."
|
|
585 (when init-file-user
|
|
586 (setq user-init-file
|
|
587 (cond
|
|
588 ((eq system-type 'ms-dos)
|
|
589 (concat "~" init-file-user user-init-directory "init.el"))
|
|
590 (t
|
|
591 (concat "~" init-file-user user-init-directory "init.el"))))
|
|
592 (unless (file-exists-p (expand-file-name user-init-file))
|
|
593 (setq user-init-file
|
|
594 (cond
|
|
595 ((eq system-type 'ms-dos)
|
|
596 (concat "~" init-file-user "/_emacs"))
|
|
597 (t
|
|
598 (concat "~" init-file-user "/.emacs")))))
|
|
599 (load user-init-file t t t)
|
|
600 (let ((default-custom-file (concat "~"
|
|
601 init-file-user
|
|
602 user-init-directory
|
|
603 "options.el")))
|
|
604 (when (string= custom-file default-custom-file)
|
|
605 (load default-custom-file t t)))
|
|
606 (unless inhibit-default-init
|
|
607 (let ((inhibit-startup-message nil))
|
|
608 ;; Users are supposed to be told their rights.
|
|
609 ;; (Plus how to get help and how to undo.)
|
|
610 ;; Don't you dare turn this off for anyone except yourself.
|
|
611 (load "default" t t)))))
|
|
612
|
|
613 ;;; Load user's init file and default ones.
|
|
614 (defun load-init-file ()
|
239
|
615 ;; Disabled for now
|
|
616 (unless inhibit-update-dumped-lisp
|
|
617 (packages-reload-dumped-lisp))
|
|
618
|
|
619 ;; (unless inhibit-update-autoloads
|
|
620 ;; (packages-reload-autoloads))
|
|
621 (unless inhibit-update-autoloads
|
|
622 (let ((dir load-path))
|
|
623 (while dir
|
|
624 (condition-case nil
|
|
625 (load (expand-file-name "auto-autoloads" (car dir)) nil t)
|
|
626 (t nil))
|
|
627 (pop dir))))
|
|
628
|
209
|
629 (run-hooks 'before-init-hook)
|
|
630
|
|
631 ;; Run the site-start library if it exists. The point of this file is
|
|
632 ;; that it is run before .emacs. There is no point in doing this after
|
|
633 ;; .emacs; that is useless.
|
|
634 (when site-start-file
|
|
635 (load site-start-file t t))
|
|
636
|
|
637 ;; Sites should not disable this. Only individuals should disable
|
|
638 ;; the startup message.
|
|
639 (setq inhibit-startup-message nil)
|
|
640
|
|
641 (let (debug-on-error-from-init-file
|
|
642 debug-on-error-should-be-set
|
|
643 (debug-on-error-initial
|
|
644 (if (eq init-file-debug t) 'startup init-file-debug)))
|
|
645 (let ((debug-on-error debug-on-error-initial))
|
|
646 (if init-file-debug
|
|
647 ;; Do this without a condition-case if the user wants to debug.
|
|
648 (load-user-init-file init-file-user)
|
|
649 (condition-case error
|
|
650 (progn
|
|
651 (load-user-init-file init-file-user)
|
|
652 (setq init-file-had-error nil))
|
|
653 (error
|
|
654 (message "Error in init file: ")
|
|
655 (display-error error nil)
|
|
656 (setq init-file-had-error t))))
|
|
657 ;; If we can tell that the init file altered debug-on-error,
|
|
658 ;; arrange to preserve the value that it set up.
|
|
659 (or (eq debug-on-error debug-on-error-initial)
|
|
660 (setq debug-on-error-should-be-set t
|
|
661 debug-on-error-from-init-file debug-on-error)))
|
|
662 (when debug-on-error-should-be-set
|
|
663 (setq debug-on-error debug-on-error-from-init-file)))
|
|
664
|
|
665 (setq init-file-loaded t)
|
|
666
|
|
667 ;; Do this here in case the init file sets mail-host-address.
|
|
668 ;; Don't do this here unless noninteractive, it is frequently wrong. -sb
|
|
669 ;; (or user-mail-address
|
|
670 (when noninteractive
|
|
671 (setq user-mail-address (concat (user-login-name) "@"
|
|
672 (or mail-host-address
|
|
673 (system-name)))))
|
|
674
|
|
675 (run-hooks 'after-init-hook)
|
|
676 nil)
|
|
677
|
|
678 (defun load-options-file (filename)
|
|
679 "Load the file of saved options (from the Options menu) called FILENAME.
|
|
680 Currently this does nothing but call `load', but it might be redefined
|
|
681 in the future to support automatically converting older options files to
|
|
682 a new format, when variables have changed, etc."
|
|
683 (load filename))
|
|
684
|
|
685 (defun command-line-1 ()
|
|
686 (cond
|
|
687 ((null command-line-args-left)
|
|
688 (unless noninteractive
|
|
689 ;; If there are no switches to process, run the term-setup-hook
|
|
690 ;; before displaying the copyright notice; there may be some need
|
|
691 ;; to do it before doing any output. If we're not going to
|
|
692 ;; display a copyright notice (because other options are present)
|
|
693 ;; then this is run after those options are processed.
|
|
694 (run-hooks 'term-setup-hook)
|
|
695 ;; Don't let the hook be run twice.
|
|
696 (setq term-setup-hook nil)
|
|
697
|
|
698 ;; Don't clobber a non-scratch buffer if init file
|
|
699 ;; has selected it.
|
|
700 (when (string= (buffer-name) "*scratch*")
|
|
701 (unless (or inhibit-startup-message
|
|
702 (input-pending-p))
|
|
703 (let ((timeout nil))
|
|
704 (unwind-protect
|
|
705 ;; Guts of with-timeout
|
|
706 (catch 'timeout
|
|
707 (setq timeout (add-timeout startup-message-timeout
|
|
708 (lambda (ignore)
|
|
709 (condition-case nil
|
|
710 (throw 'timeout t)
|
|
711 (error nil)))
|
|
712 nil))
|
|
713 (startup-splash-frame)
|
|
714 (or nil;; (pos-visible-in-window-p (point-min))
|
|
715 (goto-char (point-min)))
|
|
716 (sit-for 0)
|
|
717 (setq unread-command-event (next-command-event)))
|
|
718 (when timeout (disable-timeout timeout)))))
|
|
719 (with-current-buffer (get-buffer "*scratch*")
|
|
720 ;; In case the XEmacs server has already selected
|
|
721 ;; another buffer, erase the one our message is in.
|
|
722 (erase-buffer)
|
|
723 (when (stringp initial-scratch-message)
|
|
724 (insert initial-scratch-message))
|
|
725 (set-buffer-modified-p nil)))))
|
|
726
|
|
727 (t
|
|
728 ;; Command-line-options exist
|
|
729 (let ((dir command-line-default-directory)
|
|
730 (file-count 0)
|
|
731 (line nil)
|
|
732 (end-of-options nil)
|
|
733 first-file-buffer file-p arg tem)
|
|
734 (while command-line-args-left
|
|
735 (setq arg (pop command-line-args-left))
|
|
736 (cond
|
|
737 (end-of-options
|
|
738 (setq file-p t))
|
|
739 ((setq tem (when (eq (aref arg 0) ?-)
|
|
740 (or (assoc arg command-switch-alist)
|
|
741 (assoc (substring arg 1)
|
|
742 command-switch-alist))))
|
|
743 (funcall (cdr tem) arg))
|
|
744 ((string-match "\\`\\+[0-9]+\\'" arg)
|
|
745 (setq line (string-to-int arg)))
|
|
746 ;; "- file" means don't treat "file" as a switch
|
|
747 ;; ("+0 file" has the same effect; "-" added
|
|
748 ;; for unixoidiality).
|
|
749 ;; This is worthless; the `unixoid' way is "./file". -jwz
|
|
750 ((or (string= arg "-") (string= arg "--"))
|
|
751 (setq end-of-options t))
|
|
752 (t
|
|
753 (setq file-p t)))
|
|
754
|
|
755 (when file-p
|
|
756 (setq file-p nil)
|
|
757 (incf file-count)
|
|
758 (setq arg (expand-file-name arg dir))
|
|
759 (cond
|
|
760 ((= file-count 1) (setq first-file-buffer
|
|
761 (progn (find-file arg) (current-buffer))))
|
|
762 (noninteractive (find-file arg))
|
|
763 (t (find-file-other-window arg)))
|
|
764 (when line
|
|
765 (goto-line line)
|
|
766 (setq line nil))))
|
|
767 ;; If 3 or more files visited, and not all visible,
|
|
768 ;; show user what they all are.
|
|
769 (when (and (not noninteractive)
|
|
770 (> file-count 2)
|
|
771 (not (get-buffer-window first-file-buffer)))
|
|
772 (other-window 1)
|
|
773 (buffer-menu nil))))))
|
|
774
|
|
775 (defvar startup-presentation-hack-keymap
|
|
776 (let ((map (make-sparse-keymap)))
|
|
777 (set-keymap-name map 'startup-presentation-hack-keymap)
|
|
778 (define-key map '[button1] 'startup-presentation-hack)
|
|
779 (define-key map '[button2] 'startup-presentation-hack)
|
|
780 map)
|
|
781 "Putting yesterday in the future tomorrow.")
|
|
782
|
|
783 (defun startup-presentation-hack ()
|
|
784 (interactive)
|
|
785 (let ((e last-command-event))
|
|
786 (and (button-press-event-p e)
|
|
787 (setq e (extent-at (event-point e)
|
|
788 (event-buffer e)
|
|
789 'startup-presentation-hack))
|
|
790 (setq e (extent-property e 'startup-presentation-hack))
|
|
791 (if (consp e)
|
|
792 (apply (car e) (cdr e))
|
|
793 (while (keymapp (indirect-function e))
|
|
794 (let ((map e)
|
|
795 (overriding-local-map (indirect-function e)))
|
|
796 (setq e (read-key-sequence
|
|
797 (let ((p (keymap-prompt map t)))
|
|
798 (cond ((symbolp map)
|
|
799 (if p
|
|
800 (format "%s %s " map p)
|
|
801 (format "%s " map)))
|
|
802 (p)
|
|
803 (t
|
|
804 (prin1-to-string map))))))
|
|
805 (if (and (button-release-event-p (elt e 0))
|
|
806 (null (key-binding e)))
|
|
807 (setq e map) ; try again
|
|
808 (setq e (key-binding e)))))
|
|
809 (call-interactively e)))))
|
|
810
|
|
811 (defun startup-presentation-hack-help (e)
|
|
812 (setq e (extent-property e 'startup-presentation-hack))
|
|
813 (if (consp e)
|
|
814 (format "Evaluate %S" e)
|
|
815 (symbol-name e)))
|
|
816
|
|
817 (defun splash-frame-present-hack (e v)
|
|
818 ;; (set-extent-property e 'mouse-face 'highlight)
|
|
819 ;; (set-extent-property e 'keymap
|
|
820 ;; startup-presentation-hack-keymap)
|
|
821 ;; (set-extent-property e 'startup-presentation-hack v)
|
|
822 ;; (set-extent-property e 'help-echo
|
|
823 ;; 'startup-presentation-hack-help))
|
|
824 )
|
|
825
|
|
826 (defun splash-hack-version-string ()
|
|
827 (save-excursion
|
|
828 (save-restriction
|
|
829 (goto-char (point-min))
|
|
830 (re-search-forward "^XEmacs" nil t)
|
|
831 (narrow-to-region (point-at-bol) (point-at-eol))
|
|
832 (goto-char (point-min))
|
|
833 (when (re-search-forward " \\[Lucid\\]" nil t)
|
|
834 (delete-region (match-beginning 0) (match-end 0)))
|
|
835 (when (re-search-forward "[^(][^)]*-[^)]*-" nil t)
|
|
836 (delete-region (1+ (match-beginning 0)) (match-end 0))
|
|
837 (insert "("))
|
|
838 (goto-char (point-max))
|
|
839 (search-backward " " nil t)
|
|
840 (when (search-forward "." nil t)
|
|
841 (delete-region (1- (point)) (point-max))))))
|
|
842
|
|
843 (defun splash-frame-present (l)
|
|
844 (cond ((stringp l)
|
|
845 (insert l))
|
|
846 ((eq (car-safe l) 'face)
|
|
847 ;; (face name string)
|
|
848 (let ((p (point)))
|
|
849 (splash-frame-present (elt l 2))
|
|
850 (if (fboundp 'set-extent-face)
|
|
851 (set-extent-face (make-extent p (point))
|
|
852 (elt l 1)))))
|
|
853 ((eq (car-safe l) 'key)
|
|
854 (let* ((c (elt l 1))
|
|
855 (p (point))
|
|
856 (k (where-is-internal c nil t)))
|
|
857 (insert (if k (key-description k)
|
|
858 (format "M-x %s" c)))
|
|
859 (if (fboundp 'set-extent-face)
|
|
860 (let ((e (make-extent p (point))))
|
|
861 (set-extent-face e 'bold)
|
|
862 (splash-frame-present-hack e c)))))
|
|
863 ((eq (car-safe l) 'funcall)
|
|
864 ;; (funcall (fun . args) string)
|
|
865 (let ((p (point)))
|
|
866 (splash-frame-present (elt l 2))
|
|
867 (if (fboundp 'set-extent-face)
|
|
868 (splash-frame-present-hack (make-extent p (point))
|
|
869 (elt l 1)))))
|
|
870 ((consp l)
|
|
871 (mapcar 'splash-frame-present l))
|
|
872 (t
|
|
873 (error "WTF!?"))))
|
|
874
|
|
875 (defun startup-center-spaces (glyph)
|
|
876 ;; Return the number of spaces to insert in order to center
|
|
877 ;; the given glyph (may be a string or a pixmap).
|
|
878 ;; Assume spaces are as wide as avg-pixwidth.
|
|
879 ;; Won't be quite right for proportional fonts, but it's the best we can do.
|
|
880 ;; Maybe the new redisplay will export something a glyph-width function.
|
|
881 ;;; #### Yes, there is a glyph-width function but it isn't quite what
|
|
882 ;;; #### this was expecting. Or is it?
|
|
883 ;; (An alternate way to get avg-pixwidth would be to use x-font-properties
|
|
884 ;; and calculate RESOLUTION_X * AVERAGE_WIDTH / 722.7, but it's no better.)
|
|
885
|
|
886 ;; This function is used in about.el too.
|
|
887 (let* ((avg-pixwidth (round (/ (frame-pixel-width) (frame-width))))
|
|
888 (fill-area-width (* avg-pixwidth (- fill-column left-margin)))
|
|
889 (glyph-pixwidth (cond ((stringp glyph)
|
|
890 (* avg-pixwidth (length glyph)))
|
|
891 ;; #### the pixmap option should be removed
|
|
892 ;;((pixmapp glyph)
|
|
893 ;; (pixmap-width glyph))
|
|
894 ((glyphp glyph)
|
|
895 (glyph-width glyph))
|
|
896 (t
|
|
897 (error "startup-center-spaces: bad arg")))))
|
|
898 (+ left-margin
|
|
899 (round (/ (/ (- fill-area-width glyph-pixwidth) 2) avg-pixwidth)))))
|
|
900
|
|
901 (defun startup-splash-frame-body ()
|
|
902 `("\n" ,(emacs-version) "\n"
|
|
903 ,@(if (string-match "beta" emacs-version)
|
|
904 `( (face (bold blue) ( "This is an Experimental version of XEmacs. "
|
|
905 " Type " (key describe-beta)
|
|
906 " to see what this means.\n")))
|
|
907 `( "\n"))
|
|
908 (face bold-italic "\
|
|
909 Copyright (C) 1985-1997 Free Software Foundation, Inc.
|
|
910 Copyright (C) 1990-1994 Lucid, Inc.
|
|
911 Copyright (C) 1993-1997 Sun Microsystems, Inc. All Rights Reserved.
|
|
912 Copyright (C) 1994-1996 Board of Trustees, University of Illinois
|
|
913 Copyright (C) 1995-1996 Ben Wing\n\n")
|
|
914
|
|
915 ,@(if (featurep 'sparcworks)
|
|
916 `( "\
|
|
917 Sun provides support for the WorkShop/XEmacs integration package only.
|
|
918 All other XEmacs packages are provided to you \"AS IS\".
|
|
919 For full details, type " (key describe-no-warranty)
|
|
920 " to refer to the GPL Version 2, dated June 1991.\n\n"
|
|
921 ,@(let ((lang (or (getenv "LC_ALL") (getenv "LC_MESSAGES") (getenv "LANG"))))
|
|
922 (if (and
|
|
923 (not (featurep 'mule)) ; Already got mule?
|
|
924 (not (eq 'tty (console-type))) ; No Mule support on tty's yet
|
|
925 lang ; Non-English locale?
|
|
926 (not (string= lang "C"))
|
|
927 (not (string-match "^en" lang))
|
|
928 (locate-file "xemacs-mule" exec-path)) ; Comes with Sun WorkShop
|
|
929 '( "\
|
|
930 This version of XEmacs has been built with support for Latin-1 languages only.
|
|
931 To handle other languages you need to run a Multi-lingual (`Mule') version of
|
|
932 XEmacs, by either running the command `xemacs-mule', or by using the X resource
|
|
933 `ESERVE*defaultXEmacsPath: xemacs-mule' when starting XEmacs from Sun WorkShop.\n\n"))))
|
|
934
|
|
935 '("XEmacs comes with ABSOLUTELY NO WARRANTY; type "
|
|
936 (key describe-no-warranty) " for full details.\n"))
|
|
937
|
|
938 "You may give out copies of XEmacs; type "
|
|
939 (key describe-copying) " to see the conditions.\n"
|
|
940 "Type " (key describe-distribution)
|
|
941 " for information on getting the latest version.\n\n"
|
|
942
|
|
943 "Type " (key help-command) " or use the " (face bold "Help") " menu to get help.\n"
|
|
944 "Type " (key advertised-undo) " to undo changes (`C-' means use the Control key).\n"
|
|
945 "To get out of XEmacs, type " (key save-buffers-kill-emacs) ".\n"
|
|
946 "Type " (key help-with-tutorial) " for a tutorial on using XEmacs.\n"
|
|
947 "Type " (key info) " to enter Info, "
|
|
948 "which you can use to read online documentation.\n"
|
|
949 (face (bold red) ( "\
|
|
950 For tips and answers to frequently asked questions, see the XEmacs FAQ.
|
|
951 \(It's on the Help menu, or type " (key xemacs-local-faq) " [a capital F!].\)"))))
|
|
952
|
|
953 (defun startup-splash-frame ()
|
|
954 (let ((p (point))
|
239
|
955 (logo (cond ((featurep 'infodock)
|
|
956 (make-glyph (locate-data-file "altrasoft-logo.xpm")))
|
|
957 (t xemacs-logo)))
|
209
|
958 (cramped-p (eq 'tty (console-type))))
|
|
959 (unless cramped-p (insert "\n"))
|
239
|
960 (indent-to (startup-center-spaces logo))
|
|
961 (set-extent-begin-glyph (make-extent (point) (point)) logo)
|
209
|
962 (insert (if cramped-p "\n" "\n\n"))
|
|
963 (splash-frame-present-hack (make-extent p (point)) 'about-xemacs))
|
|
964
|
|
965 (let ((after-change-functions nil)) ; no font-lock, thank you
|
|
966 (dolist (l (startup-splash-frame-body))
|
|
967 (splash-frame-present l)))
|
|
968 (splash-hack-version-string)
|
|
969 (set-buffer-modified-p nil))
|
|
970
|
|
971 ;; (let ((present-file
|
|
972 ;; #'(lambda (f)
|
|
973 ;; (splash-frame-present
|
|
974 ;; (list 'funcall
|
|
975 ;; (list 'find-file-other-window
|
|
976 ;; (expand-file-name f data-directory))
|
|
977 ;; f)))))
|
|
978 ;; (insert "For customization examples, see the files ")
|
|
979 ;; (funcall present-file "sample.emacs")
|
|
980 ;; (insert " and ")
|
|
981 ;; (funcall present-file "sample.Xdefaults")
|
|
982 ;; (insert (format "\nin the directory %s." data-directory)))
|
|
983
|
|
984
|
|
985 ;;;; Computing the default load-path, etc.
|
|
986 ;;;
|
|
987 ;;; This stuff is a complete mess and isn't nearly as general as it
|
|
988 ;;; thinks it is. It should be rethunk. In particular, too much logic
|
|
989 ;;; is duplicated between the code that looks around for the various
|
|
990 ;;; directories, and the code which suggests where to create the various
|
|
991 ;;; directories once it decides they are missing.
|
|
992
|
|
993 ;;; The source directory has this layout:
|
|
994 ;;;
|
|
995 ;;; BUILD_ROOT/src/xemacs* argv[0]
|
|
996 ;;; BUILD_ROOT/xemacs* argv[0], possibly
|
|
997 ;;; BUILD_ROOT/lisp/
|
|
998 ;;; BUILD_ROOT/etc/ data-directory
|
|
999 ;;; BUILD_ROOT/info/
|
|
1000 ;;; BUILD_ROOT/lib-src/ exec-directory, doc-directory
|
|
1001 ;;; BUILD_ROOT/lock/
|
|
1002 ;;;
|
|
1003 ;;; The default tree created by "make install" has this layout:
|
|
1004 ;;;
|
|
1005 ;;; PREFIX/bin/xemacs* argv[0]
|
|
1006 ;;; PREFIX/lib/xemacs-VERSION/lisp/
|
|
1007 ;;; PREFIX/lib/xemacs-VERSION/etc/ data-directory
|
|
1008 ;;; PREFIX/lib/xemacs-VERSION/info/
|
|
1009 ;;; PREFIX/lib/xemacs-VERSION/CONFIGURATION/ exec-directory, doc-directory
|
|
1010 ;;; PREFIX/lib/xemacs/lock/
|
|
1011 ;;; PREFIX/lib/xemacs/site-lisp/
|
|
1012 ;;;
|
|
1013 ;;; The binary packages we ship have that layout, except that argv[0] has
|
|
1014 ;;; been moved one level deeper under the bin directory:
|
|
1015 ;;;
|
|
1016 ;;; PREFIX/bin/CONFIGURATION/xemacs*
|
|
1017 ;;;
|
|
1018 ;;; The following code has to deal with at least the above three situations,
|
|
1019 ;;; and it should be possible for it to deal with more. Though perhaps that
|
|
1020 ;;; does cover it all? The trick is, when something is missing, realizing
|
|
1021 ;;; which of those three layouts is mostly in place, so that we can suggest
|
|
1022 ;;; the right directories in the error message.
|
|
1023
|
|
1024
|
|
1025 ;; extremely low-tech debugging, since this happens so early in startup.
|
|
1026 ;;(or (fboundp 'orig-file-directory-p)
|
|
1027 ;; (fset 'orig-file-directory-p (symbol-function 'file-directory-p)))
|
|
1028 ;;(defun file-directory-p (path)
|
|
1029 ;; (send-string-to-terminal (format "PROBING %S" path))
|
|
1030 ;; (let ((v (orig-file-directory-p path)))
|
|
1031 ;; (send-string-to-terminal (format " -> %S\n" v))
|
|
1032 ;; v))
|
|
1033
|
|
1034 (defun startup-make-version-dir ()
|
|
1035 (let ((version (and (string-match "\\`[^0-9]*\\([0-9]+\\.[0-9]+\\)"
|
|
1036 emacs-version)
|
|
1037 (substring emacs-version
|
|
1038 (match-beginning 1) (match-end 1)))))
|
|
1039 (if (string-match "(beta *\\([0-9]+\\))" emacs-version)
|
|
1040 (setq version (concat version "-b"
|
|
1041 (substring emacs-version (match-beginning 1)
|
|
1042 (match-end 1)))))
|
|
1043 (if (string-match "(alpha *\\([0-9]+\\))" emacs-version)
|
|
1044 (setq version (concat version "-a"
|
|
1045 (substring emacs-version (match-beginning 1)
|
|
1046 (match-end 1)))))
|
|
1047 (concat "lib/xemacs-" version)))
|
|
1048
|
|
1049 (defun find-emacs-root-internal-1 (path lisp-p)
|
|
1050 ;; (prin1 (format "f-e-r-i-1: %s\n" path))
|
|
1051 (let ((dir (file-name-directory path)))
|
|
1052 (or
|
|
1053 ;;
|
|
1054 ;; If this directory is a plausible root of the XEmacs tree, return it.
|
|
1055 ;;
|
|
1056 (and (or (not lisp-p)
|
217
|
1057 (file-directory-p (expand-file-name "lisp" dir)))
|
209
|
1058 (or (file-directory-p (expand-file-name "lib-src" dir))
|
|
1059 (file-directory-p (expand-file-name system-configuration dir)))
|
|
1060 dir)
|
|
1061 ;;
|
|
1062 ;; If the parent of this directory is a plausible root, use it.
|
|
1063 ;; (But don't do so recursively!)
|
|
1064 ;;
|
|
1065 (and (or (not lisp-p)
|
217
|
1066 (file-directory-p (expand-file-name "../lisp" dir)))
|
209
|
1067 (or (file-directory-p (expand-file-name
|
|
1068 (format "../%s" system-configuration)
|
|
1069 dir))
|
|
1070 (file-directory-p (expand-file-name "../lib-src" dir)))
|
|
1071 (expand-file-name "../" dir))
|
|
1072
|
|
1073 ;;
|
|
1074 ;; (--run-in-place) Same thing, but from one directory level deeper.
|
|
1075 ;;
|
|
1076 (and (or (not lisp-p)
|
217
|
1077 (file-directory-p (expand-file-name "../../lisp" dir)))
|
209
|
1078 (or (file-directory-p (expand-file-name
|
|
1079 (format "../%s" system-configuration)
|
|
1080 dir))
|
|
1081 (file-directory-p
|
|
1082 (expand-file-name
|
|
1083 (format "../../lib-src/%s" system-configuration) dir)))
|
|
1084 (expand-file-name "../.." dir))
|
|
1085
|
|
1086 ;; If ../lib/xemacs-<version> exists check it.
|
|
1087 ;; This is of the form "xemacs-19.10/" or "xemacs-19.10-b7/".
|
|
1088 ;;
|
|
1089 (let ((ver-dir (concat "../" (startup-make-version-dir))))
|
|
1090 (and (or (not lisp-p)
|
|
1091 (file-directory-p (expand-file-name
|
217
|
1092 (format "%s/lisp" ver-dir)
|
209
|
1093 dir)))
|
|
1094 (or (file-directory-p (expand-file-name
|
|
1095 (format "%s/%s" ver-dir
|
|
1096 system-configuration)
|
|
1097 dir))
|
|
1098 (file-directory-p (expand-file-name
|
|
1099 (format "%s/lib-src" ver-dir)
|
|
1100 dir)))
|
|
1101 (expand-file-name (file-name-as-directory ver-dir) dir)))
|
|
1102 ;;
|
|
1103 ;; Same thing, but one higher: ../../lib/xemacs-<version>.
|
|
1104 ;;
|
|
1105 (let ((ver-dir (concat "../../" (startup-make-version-dir))))
|
|
1106 (and (or (not lisp-p)
|
|
1107 (file-directory-p (expand-file-name
|
217
|
1108 (format "%s/lisp" ver-dir)
|
209
|
1109 dir)))
|
|
1110 (or (file-directory-p (expand-file-name
|
|
1111 (format "%s/%s" ver-dir
|
|
1112 system-configuration)
|
|
1113 dir))
|
|
1114 (file-directory-p (expand-file-name
|
|
1115 (format "%s/lib-src" ver-dir)
|
|
1116 dir)))
|
|
1117 (expand-file-name (file-name-as-directory ver-dir) dir)))
|
|
1118 ;;
|
|
1119 ;; If that doesn't work, and the XEmacs executable is a symlink, then
|
|
1120 ;; chase the link and try again there.
|
|
1121 ;;
|
|
1122 (and (setq path (file-symlink-p path))
|
|
1123 (find-emacs-root-internal-1 (expand-file-name path dir) lisp-p))
|
|
1124 ;;
|
|
1125 ;; Otherwise, this directory just doesn't cut it.
|
|
1126 ;; Some bozos think they can use the 18.59 lisp directory with 19.*.
|
|
1127 ;; This is because they're not using their brains. But it might be
|
|
1128 ;; nice to notice that that is happening and point them in the
|
|
1129 ;; general direction of a clue.
|
|
1130 ;;
|
|
1131 nil)))
|
|
1132
|
|
1133 (defun find-emacs-root-internal (path)
|
|
1134 ;; (send-string-to-terminal (format "FINDING ROOT FOR %S\n" path))
|
217
|
1135 ;; first look for lisp and lib-src; then just look for lib-src.
|
209
|
1136 ;; XEmacs can run (kind of) if the lisp directory is omitted, which
|
|
1137 ;; some people might want to do for space reasons.
|
|
1138 (or (find-emacs-root-internal-1 path t)
|
|
1139 ;; (find-emacs-root-internal-1 path nil)
|
|
1140 ;; If we don't succeed we are going to crash and burn for sure.
|
|
1141 ;; Try some paths relative to prefix-directory if it isn't nil.
|
|
1142 ;; This is definitely necessary in cases such as when we're used
|
|
1143 ;; as a login shell since we can't determine the invocation
|
|
1144 ;; directory in that case.
|
|
1145
|
|
1146 (find-emacs-root-internal-1
|
|
1147 (format "%s/bin/%s" prefix-directory invocation-name) t)
|
|
1148 (find-emacs-root-internal-1
|
|
1149 (format "%s/bin/%s" prefix-directory invocation-name) nil)
|
|
1150 (find-emacs-root-internal-1
|
|
1151 (format "%s/lib/%s" prefix-directory invocation-name) t)
|
|
1152 (find-emacs-root-internal-1
|
|
1153 (format "%s/lib/%s" prefix-directory invocation-name) nil)
|
|
1154
|
|
1155 ;; We're desperate -- try the prefix-directory correctly.
|
|
1156 (find-emacs-root-internal-1
|
|
1157 (format "%s/%s/foo" prefix-directory (startup-make-version-dir)) t)
|
|
1158 (find-emacs-root-internal-1
|
|
1159 (format "%s/%s/foo" prefix-directory (startup-make-version-dir)) nil)
|
|
1160 ))
|
|
1161
|
|
1162 (defun set-default-load-path ()
|
|
1163 ;; XEmacs -- Steven Baur says invocation directory is nil if you
|
|
1164 ;; try to use XEmacs as a login shell.
|
|
1165 (or invocation-directory (setq invocation-directory default-directory))
|
|
1166 (setq invocation-directory
|
|
1167 ;; don't let /tmp_mnt/... get into the load-path or exec-path.
|
|
1168 (abbreviate-file-name invocation-directory))
|
|
1169
|
|
1170 ;; #### FSFmacs recognizes environment vars EMACSLOCKDIR, etc.
|
|
1171 (let* ((root (find-emacs-root-internal (concat invocation-directory
|
|
1172 invocation-name)))
|
|
1173 (lisp (and root
|
|
1174 (let ((f (expand-file-name "lisp" root)))
|
|
1175 (and (file-directory-p f) f))))
|
|
1176 (site-lisp
|
|
1177 (and root
|
|
1178 (or
|
|
1179 (let ((f (expand-file-name "xemacs/site-lisp" root)))
|
|
1180 (and (file-directory-p f) f))
|
|
1181 (let ((f (expand-file-name "../xemacs/site-lisp" root)))
|
|
1182 (and (file-directory-p f) f))
|
|
1183 ;; the next two are for --run-in-place
|
|
1184 (let ((f (expand-file-name "site-lisp" root)))
|
|
1185 (and (file-directory-p f) f))
|
|
1186 (let ((f (expand-file-name "lisp/site-lisp" root)))
|
|
1187 (and (file-directory-p f) f))
|
|
1188 )))
|
|
1189 (lib-src
|
|
1190 (and root
|
|
1191 (or
|
|
1192 (let ((f (expand-file-name
|
|
1193 (concat "lib-src/" system-configuration)
|
|
1194 root)))
|
|
1195 (and (file-directory-p f) f))
|
|
1196 (let ((f (expand-file-name "lib-src" root)))
|
|
1197 (and (file-directory-p f) f))
|
|
1198 (let ((f (expand-file-name system-configuration root)))
|
|
1199 (and (file-directory-p f) f)))))
|
|
1200 (etc
|
|
1201 (and root
|
|
1202 (let ((f (expand-file-name "etc" root)))
|
|
1203 (and (file-directory-p f) f))))
|
|
1204 (info
|
|
1205 (and root
|
|
1206 (let ((f (expand-file-name "info" root)))
|
|
1207 (and (file-directory-p f) (file-name-as-directory f)))))
|
|
1208 (packages
|
|
1209 (and root
|
|
1210 (let ((f (expand-file-name "packages" root)))
|
|
1211 (and (file-directory-p f) (file-name-as-directory f)))))
|
|
1212 (lock
|
|
1213 (and root
|
|
1214 (boundp 'lock-directory)
|
|
1215 (if (and lock-directory (file-directory-p lock-directory))
|
|
1216 (file-name-as-directory lock-directory)
|
|
1217 (or
|
|
1218 (let ((f (expand-file-name "xemacs/lock" root)))
|
|
1219 (and (file-directory-p f)
|
|
1220 (file-name-as-directory f)))
|
|
1221 (let ((f (expand-file-name "../xemacs/lock" root)))
|
|
1222 (and (file-directory-p f)
|
|
1223 (file-name-as-directory f)))
|
|
1224 (let ((f (expand-file-name "lock" root)))
|
|
1225 (and (file-directory-p f)
|
|
1226 (file-name-as-directory f)))
|
|
1227 ;; if none of them exist, make the "guess" be
|
|
1228 ;; the one that set-default-load-path-warning
|
|
1229 ;; will suggest.
|
|
1230 (file-name-as-directory
|
|
1231 (expand-file-name "../xemacs/lock" root))
|
|
1232 )))))
|
|
1233
|
|
1234 ;; 1996/12/6 by MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1235 ;; define `default-load-path' for file-detect.el
|
|
1236 (setq default-load-path load-path)
|
|
1237
|
|
1238 ;; add site-lisp dir to load-path
|
|
1239 (when site-lisp
|
|
1240 ;; If the site-lisp dir isn't on the load-path, add it to the end.
|
|
1241 (or (member site-lisp load-path)
|
227
|
1242 (setq load-path (append load-path
|
|
1243 (list (file-name-as-directory site-lisp)))))
|
209
|
1244 ;; Also add any direct subdirectories of the site-lisp directory
|
|
1245 ;; to the load-path. But don't add dirs whose names begin
|
|
1246 ;; with dot or hyphen.
|
|
1247 (let ((files (directory-files site-lisp nil "^[^-.]" nil 'dirs-only))
|
|
1248 file)
|
|
1249 (while files
|
|
1250 (setq file (car files))
|
|
1251 (if (and (not (member file '("RCS" "CVS" "SCCS")))
|
|
1252 (setq file (expand-file-name file site-lisp))
|
|
1253 (not (member file load-path)))
|
|
1254 (setq load-path
|
|
1255 (nconc load-path
|
|
1256 (list (file-name-as-directory file)))))
|
|
1257 (setq files (cdr files)))))
|
|
1258
|
|
1259 ;; add lisp dir to load-path
|
|
1260 (when lisp
|
|
1261 ;; If the lisp dir isn't on the load-path, add it to the end.
|
|
1262 (or (member lisp load-path)
|
227
|
1263 (setq load-path (append load-path
|
|
1264 (list (file-name-as-directory lisp)))))
|
209
|
1265 ;; Also add any direct subdirectories of the lisp directory
|
|
1266 ;; to the load-path. But don't add dirs whose names begin
|
|
1267 ;; with dot or hyphen.
|
|
1268 (let ((files (directory-files lisp nil "^[^-.]" nil 'dirs-only))
|
|
1269 file)
|
|
1270 (while files
|
|
1271 (setq file (car files))
|
|
1272 (when (and (not (member file '("RCS" "CVS" "SCCS")))
|
|
1273 (setq file (expand-file-name file lisp))
|
|
1274 (not (member file load-path)))
|
|
1275 (setq load-path
|
|
1276 (nconc load-path
|
|
1277 (list (file-name-as-directory file)))))
|
|
1278 (setq files (cdr files)))))
|
|
1279
|
|
1280 ;; 1996/12/6 by MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1281 ;; define `default-load-path' for file-detect.el
|
|
1282 (setq default-load-path
|
|
1283 (append default-load-path
|
|
1284 (if site-lisp
|
|
1285 (list site-lisp))
|
|
1286 (if lisp
|
|
1287 (list lisp)
|
|
1288 )
|
|
1289 ))
|
|
1290
|
|
1291 ;; 1997/03/06 by Jeff Miller <jmiller@bayserve.net>
|
|
1292 ;; initialize 'site-directory'. This is the site-lisp dir used by
|
|
1293 ;; XEmacs
|
|
1294 (if site-lisp
|
|
1295 (setq site-directory (file-name-as-directory site-lisp))
|
|
1296 )
|
|
1297 ;; If running from the build directory, always prefer the exec-directory
|
|
1298 ;; that is here over to the one that came from paths.h.
|
|
1299 (when (or (and (null exec-directory) lib-src)
|
|
1300 (and (string= lib-src (expand-file-name "lib-src" root))
|
|
1301 (not (string= exec-directory lib-src))))
|
|
1302 (setq exec-directory (file-name-as-directory lib-src)))
|
|
1303 (when (or (and (null doc-directory) lib-src)
|
|
1304 (and (string= lib-src (expand-file-name "lib-src" root))
|
|
1305 (not (string= doc-directory lib-src))))
|
|
1306 (setq doc-directory (file-name-as-directory lib-src)))
|
|
1307
|
|
1308 (when exec-directory
|
|
1309 (or (member exec-directory exec-path)
|
|
1310 (setq exec-path (append exec-path (list exec-directory)))))
|
|
1311 (when (or (and (null data-directory) etc)
|
|
1312 (and (string= etc (expand-file-name "etc" root))
|
|
1313 (not (string= data-directory etc))))
|
|
1314 (setq data-directory (file-name-as-directory etc)))
|
|
1315
|
|
1316 ;; If `configure' specified an info dir, use it.
|
|
1317 ;; #### The above comment is suspect.
|
|
1318 (or (boundp 'Info-default-directory-list)
|
|
1319 (setq Info-default-directory-list nil))
|
|
1320
|
|
1321 ;; Add additional system directories.
|
|
1322 (setq Info-default-directory-list
|
|
1323 (append Info-default-directory-list
|
|
1324 (split-string infopath-internal ":")))
|
|
1325
|
|
1326 (let ((infopath (getenv "INFOPATH")))
|
|
1327 (when infopath
|
|
1328 (setq Info-default-directory-list
|
|
1329 (append Info-default-directory-list
|
|
1330 (split-string infopath ":")))))
|
|
1331
|
|
1332 (cond (configure-info-directory
|
|
1333 (setq configure-info-directory (file-name-as-directory
|
|
1334 configure-info-directory))
|
|
1335 (or (member configure-info-directory Info-default-directory-list)
|
|
1336 (setq Info-default-directory-list
|
|
1337 (append (list configure-info-directory)
|
|
1338 Info-default-directory-list)))))
|
|
1339 ;; If we've guessed the info dir, use that (too).
|
|
1340 (when (and info (not (member info Info-default-directory-list)))
|
|
1341 (setq Info-default-directory-list
|
|
1342 (append (list info) Info-default-directory-list)))
|
|
1343
|
|
1344 ;; Default the lock dir to being a sibling of the data-directory.
|
|
1345 ;; If superlock isn't set, or is set to a file in a nonexistent
|
|
1346 ;; directory, derive it from the lock dir.
|
|
1347 (when (boundp 'lock-directory)
|
|
1348 (setq lock-directory lock)
|
|
1349 (cond ((null lock-directory)
|
|
1350 (setq superlock-file nil))
|
|
1351 ((or (null superlock-file)
|
|
1352 (not (file-directory-p
|
|
1353 (file-name-directory superlock-file))))
|
|
1354 (setq superlock-file
|
|
1355 (expand-file-name "!!!SuperLock!!!"
|
|
1356 lock-directory)))))
|
|
1357
|
|
1358 (set-default-load-path-warning)
|
227
|
1359 (when (and (null (running-temacs-p))
|
|
1360 data-directory
|
|
1361 Info-default-directory-list)
|
209
|
1362 (setq data-directory-list (list data-directory))
|
|
1363 (packages-find-packages package-path nil))))
|
|
1364
|
|
1365
|
|
1366 (defun set-default-load-path-warning ()
|
|
1367 (let ((lock (if (boundp 'lock-directory) lock-directory 't))
|
|
1368 warnings message guess)
|
|
1369 (when (and (stringp lock) (not (file-directory-p lock)))
|
|
1370 (setq lock nil))
|
|
1371 (cond
|
|
1372 ((not (and exec-directory data-directory doc-directory load-path lock))
|
|
1373 (save-excursion
|
|
1374 (set-buffer (get-buffer-create " *warning-tmp*"))
|
|
1375 (erase-buffer)
|
|
1376 (buffer-disable-undo (current-buffer))
|
|
1377 (when (null lock) (push "lock-directory" warnings))
|
|
1378 (when (null exec-directory) (push "exec-directory" warnings))
|
|
1379 (when (null data-directory) (push "data-directory" warnings))
|
|
1380 (when (null doc-directory) (push "doc-directory" warnings))
|
|
1381 (when (null load-path) (push "load-path" warnings))
|
|
1382 (cond ((cdr (cdr warnings))
|
|
1383 (setq message (apply 'format "%s, %s, and %s" warnings)))
|
|
1384 ((cdr warnings)
|
|
1385 (setq message (apply 'format "%s and %s" warnings)))
|
|
1386 (t (setq message (format "variable %s" (car warnings)))))
|
|
1387 (insert "couldn't find an obvious default for " message
|
|
1388 ", and there were no defaults specified in paths.h when "
|
|
1389 "XEmacs was built. Perhaps some directories don't exist, "
|
|
1390 "or the XEmacs executable, " (concat invocation-directory
|
|
1391 invocation-name)
|
|
1392 " is in a strange place?")
|
|
1393 (setq guess (or exec-directory
|
|
1394 data-directory
|
|
1395 doc-directory
|
|
1396 (car load-path)
|
|
1397 (and (string-match "/[^/]+\\'" invocation-directory)
|
|
1398 (substring invocation-directory 0
|
|
1399 (match-beginning 0)))))
|
|
1400 (when (and guess
|
|
1401 (or
|
|
1402 ;; parent of a terminal bin/<configuration> pair (hack hack).
|
|
1403 (string-match (concat "/bin/"
|
|
1404 (regexp-quote system-configuration)
|
|
1405 "/?\\'")
|
|
1406 guess)
|
|
1407 ;; parent of terminal src, lib-src, etc, or lisp dir.
|
|
1408 (string-match
|
|
1409 "/\\(bin\\|src\\|lib-src\\|etc\\|lisp\\)[^/]*/?\\'"
|
|
1410 guess)))
|
|
1411 (setq guess (substring guess 0 (match-beginning 0))))
|
|
1412
|
|
1413 ;; If neither the exec nor lisp dirs are around, then "guess" that
|
|
1414 ;; the new configure-style lib dir should be used. Otherwise, if
|
|
1415 ;; only one of them appears to be missing, or it's just lock,
|
|
1416 ;; then guess it to be a sibling of whatever already exists.
|
|
1417 (when (and (null exec-directory) (null load-path))
|
|
1418 (setq guess (expand-file-name (startup-make-version-dir) guess)))
|
|
1419
|
|
1420 (when (or (null exec-directory) (null load-path))
|
|
1421 (insert
|
|
1422 "\n\nWithout both exec-directory and load-path, XEmacs will "
|
|
1423 "be very broken. "))
|
|
1424 (when (and (null exec-directory) guess)
|
|
1425 (insert
|
|
1426 "Consider making a symbolic link from "
|
|
1427 (expand-file-name system-configuration guess)
|
|
1428 " to wherever the appropriate XEmacs exec-directory "
|
|
1429 "directory is"))
|
|
1430 (when (and (null data-directory) guess)
|
|
1431 (insert
|
|
1432 (if exec-directory
|
|
1433 "\n\nConsider making a symbolic link " ", and ")
|
|
1434 "from "
|
|
1435 (expand-file-name "etc" (if load-path
|
|
1436 (file-name-directory
|
|
1437 (directory-file-name
|
|
1438 (car load-path)))
|
|
1439 guess))
|
|
1440 " to wherever the appropriate XEmacs data-directory is"))
|
|
1441 (when (and (null load-path) guess)
|
|
1442 (insert
|
|
1443 (if (and exec-directory data-directory)
|
|
1444 "Consider making a symbolic link "
|
|
1445 ", and ")
|
|
1446 "from "
|
|
1447 (expand-file-name "lisp" guess)
|
|
1448 " to wherever the appropriate XEmacs lisp library is"))
|
|
1449 (insert ".")
|
|
1450
|
|
1451 (when (null lock)
|
|
1452 (insert
|
|
1453 "\n\nWithout lock-directory set, file locking won't work. ")
|
|
1454 (when guess
|
|
1455 (insert
|
|
1456 "Consider creating "
|
|
1457 (expand-file-name "../xemacs/lock"
|
|
1458 (or (find-emacs-root-internal
|
|
1459 (concat invocation-directory
|
|
1460 invocation-name))
|
|
1461 guess))
|
|
1462 " as a directory or symbolic link for use as the lock "
|
|
1463 "directory. (This directory must be globally writable.)"
|
|
1464 )))
|
|
1465
|
|
1466 (when (fboundp 'fill-region)
|
|
1467 ;; Might not be bound in the cold load environment...
|
|
1468 (let ((fill-column 76))
|
|
1469 (fill-region (point-min) (point-max))))
|
|
1470 (goto-char (point-min))
|
|
1471 (princ "\nWARNING:\n" 'external-debugging-output)
|
|
1472 (princ (buffer-string) 'external-debugging-output)
|
|
1473 (erase-buffer)
|
|
1474 t)))))
|
|
1475
|
|
1476 ;;; startup.el ends here
|