Mercurial > emacs
annotate lisp/startup.el @ 25599:34282f1ae111
(default-korean-keyboard): Initialize it
according to the environment variable HANGUL_KEYBOARD_TYPE.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 08 Sep 1999 01:22:00 +0000 |
parents | cf5a6d4a09f1 |
children | 27732f03c976 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
1 ;;; startup.el --- process Emacs shell arguments |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
2 |
24115
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
3 ;; Copyright (C) 1985, 86, 92, 94, 95, 96, 97, 1998, 1999 Free Software Foundation, Inc. |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
823
diff
changeset
|
4 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
789
diff
changeset
|
6 ;; Keywords: internal |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
7 |
322 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
621 | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
322 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
322 | 24 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
25 ;;; Commentary: |
322 | 26 |
11633 | 27 ;; This file parses the command line and gets Emacs running. Options on |
28 ;; the command line are handled in precedence order. The order is the | |
29 ;; one in the list below; first described means first handled. Options | |
30 ;; within each category (delimited by a bar) are handled in the order | |
31 ;; encountered on the command line. | |
11625
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
32 |
11633 | 33 ;; ------------------------- |
34 ;; -version Print Emacs version to stderr, then exit | |
35 ;; --version successfully right away. | |
36 ;; This option is handled by emacs.c | |
37 ;; ------------------------- | |
38 ;; -help Print a short usage description and exit | |
39 ;; --help successfully right away. | |
40 ;; This option is handled by emacs.c | |
41 ;; ------------------------- | |
42 ;; -nl Do not use shared memory (for systems that | |
43 ;; -no-shared-memory support this) for the dumped Emacs data. | |
44 ;; This option is handled by emacs.c | |
45 ;; | |
46 ;; -map For VMS. | |
47 ;; --map-data This option is handled by emacs.c | |
48 ;; ------------------------- | |
49 ;; -t FILE Use FILE as the name of the terminal. | |
50 ;; --terminal FILE Using this implies "-nw" also. | |
51 ;; This option is handled by emacs.c | |
52 ;; ------------------------- | |
53 ;; -d DISPNAME Use DISPNAME as the name of the X-windows | |
54 ;; -display DISPNAME display for the initial frame. | |
55 ;; --display DISPNAME This option is handled by emacs.c | |
56 ;; ------------------------- | |
57 ;; -nw Do not use a windows system (but use the | |
58 ;; --no-windows terminal instead.) | |
59 ;; This option is handled by emacs.c | |
60 ;; ------------------------- | |
61 ;; -batch Execute noninteractively (messages go to stdout, | |
62 ;; --batch variable noninteractive set to t) | |
63 ;; This option is handled by emacs.c | |
64 ;; ------------------------- | |
65 ;; -q Do not load user's init file and do not load | |
66 ;; -no-init-file "default.el". Regardless of this switch, | |
12563
ed4cc6931e88
(normal-top-level): Don't use mail-host-address
Karl Heuer <kwzh@gnu.org>
parents:
12413
diff
changeset
|
67 ;; --no-init-file "site-start" is still loaded. |
11633 | 68 ;; ------------------------- |
12563
ed4cc6931e88
(normal-top-level): Don't use mail-host-address
Karl Heuer <kwzh@gnu.org>
parents:
12413
diff
changeset
|
69 ;; -no-site-file Do not load "site-start.el". (This is the ONLY |
11633 | 70 ;; --no-site-file way to prevent loading that file.) |
71 ;; ------------------------- | |
72 ;; -u USER Load USER's init file instead of the init | |
73 ;; -user USER file belonging to the user starting Emacs. | |
74 ;; --user USER | |
75 ;; ------------------------- | |
76 ;; -debug-init Don't catch errors in init files; let the | |
77 ;; --debug-init debugger run. | |
78 ;; ------------------------- | |
79 ;; -i ICONTYPE Set type of icon using when Emacs is | |
80 ;; -itype ICONTYPE iconified under X-windows. | |
81 ;; --icon-type ICONTYPE This option is passed on to term/x-win.el | |
82 ;; | |
83 ;; -iconic Start Emacs iconified under X-windows. | |
84 ;; --iconic This option is passed on to term/x-win.el | |
85 ;; ------------------------- | |
86 ;; Various X-windows options for colors/fonts/geometry/title etc. | |
87 ;; These options are passed on to term/x-win.el which see. Certain | |
88 ;; of these are also found in term/pc-win.el | |
89 ;; ------------------------- | |
90 ;; FILE Visit FILE. | |
91 ;; | |
92 ;; -L DIRNAME Add DIRNAME to load-path | |
93 ;; -directory DIRNAME | |
94 ;; --directory DIRNAME | |
95 ;; | |
96 ;; -l FILE Load and execute the Emacs lisp code | |
97 ;; -load FILE in FILE. | |
98 ;; --load FILE | |
99 ;; | |
100 ;; -f FUNC Execute Emacs lisp function FUNC with | |
101 ;; -funcall FUNC no arguments. The "-e" form is outdated | |
102 ;; --funcall FUNC and should not be used. (It's a typo | |
103 ;; -e FUNC promoted to a feature.) | |
104 ;; | |
13072
c5e3d029241d
(command-line-1): --eval: Don't print the value.
Erik Naggum <erik@naggum.no>
parents:
12849
diff
changeset
|
105 ;; -eval FORM Execute Emacs lisp form FORM. |
c5e3d029241d
(command-line-1): --eval: Don't print the value.
Erik Naggum <erik@naggum.no>
parents:
12849
diff
changeset
|
106 ;; --eval FORM |
12849
ce41e6df8986
(command-line-1): Add option --eval to evalute an
Richard M. Stallman <rms@gnu.org>
parents:
12796
diff
changeset
|
107 ;; |
11633 | 108 ;; -insert FILE Insert the contents of FILE into buffer. |
109 ;; --insert FILE | |
110 ;; ------------------------- | |
111 ;; -kill Kill (exit) Emacs right away. | |
112 ;; --kill | |
113 ;; ------------------------- | |
322 | 114 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
115 ;;; Code: |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
116 |
322 | 117 (setq top-level '(normal-top-level)) |
118 | |
18294 | 119 (defvar command-line-processed nil |
120 "Non-nil once command line has been processed") | |
322 | 121 |
18294 | 122 (defgroup initialization nil |
123 "Emacs start-up procedure" | |
124 :group 'internal) | |
125 | |
126 (defcustom inhibit-startup-message nil | |
5930
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
127 "*Non-nil inhibits the initial startup message. |
322 | 128 This is for use in your personal init file, once you are familiar |
18294 | 129 with the contents of the startup message." |
130 :type 'boolean | |
131 :group 'initialization) | |
322 | 132 |
18294 | 133 (defcustom inhibit-startup-echo-area-message nil |
5930
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
134 "*Non-nil inhibits the initial startup echo area message. |
18294 | 135 Setting this variable takes effect |
136 only if you do it with the customization buffer | |
22529 | 137 or if your `.emacs' file contains a line of this form: |
6119
9e150a376c32
(inhibit-startup-echo-area-message): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
5932
diff
changeset
|
138 (setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\") |
7880
3dd8448eee15
(inhibit-startup-echo-area-message): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7658
diff
changeset
|
139 If your `.emacs' file is byte-compiled, use the following form instead: |
3dd8448eee15
(inhibit-startup-echo-area-message): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7658
diff
changeset
|
140 (eval '(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\")) |
5930
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
141 Thus, someone else using a copy of your `.emacs' file will see |
18294 | 142 the startup message unless he personally acts to inhibit it." |
143 :type '(choice (const :tag "Don't inhibit") | |
144 (string :tag "Enter your user name, to inhibit")) | |
145 :group 'initialization) | |
5930
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
146 |
18294 | 147 (defcustom inhibit-default-init nil |
148 "*Non-nil inhibits loading the `default' library." | |
149 :type 'boolean | |
150 :group 'initialization) | |
322 | 151 |
16687
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
152 (defvar command-switch-alist nil |
322 | 153 "Alist of command-line switches. |
154 Elements look like (SWITCH-STRING . HANDLER-FUNCTION). | |
155 HANDLER-FUNCTION receives switch name as sole arg; | |
156 remaining command-line args are in the variable `command-line-args-left'.") | |
157 | |
8335
e6afa5879de3
(command-line-args-left): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
8147
diff
changeset
|
158 (defvar command-line-args-left nil |
e6afa5879de3
(command-line-args-left): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
8147
diff
changeset
|
159 "List of command-line args not yet processed.") |
e6afa5879de3
(command-line-args-left): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
8147
diff
changeset
|
160 |
322 | 161 (defvar command-line-functions nil ;; lrs 7/31/89 |
162 "List of functions to process unrecognized command-line arguments. | |
163 Each function should access the dynamically bound variables | |
6593 | 164 `argi' (the current argument) and `command-line-args-left' (the remaining |
322 | 165 arguments). The function should return non-nil only if it recognizes and |
6593 | 166 processes `argi'. If it does so, it may consume successive arguments by |
167 altering `command-line-args-left' to remove them.") | |
322 | 168 |
7022
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
169 (defvar command-line-default-directory nil |
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
170 "Default directory to use for command line arguments. |
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
171 This is normally copied from `default-directory' when Emacs starts.") |
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
172 |
13889
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
173 ;;; This is here, rather than in x-win.el, so that we can ignore these |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
174 ;;; options when we are not using X. |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
175 (defvar command-line-x-option-alist |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
176 '(("-bw" 1 x-handle-numeric-switch border-width) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
177 ("-d" 1 x-handle-display) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
178 ("-display" 1 x-handle-display) |
15537
92107cc54a5f
(command-line-x-option-alist): Don't handle -rn.
Richard M. Stallman <rms@gnu.org>
parents:
14986
diff
changeset
|
179 ("-name" 1 x-handle-name-switch) |
14985
c0edd24119bc
(command-line-x-option-alist):
Richard M. Stallman <rms@gnu.org>
parents:
14928
diff
changeset
|
180 ("-title" 1 x-handle-switch title) |
14986
fd48987ee591
(command-line-x-option-alist): -T sets only the title.
Richard M. Stallman <rms@gnu.org>
parents:
14985
diff
changeset
|
181 ("-T" 1 x-handle-switch title) |
13889
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
182 ("-r" 0 x-handle-switch reverse t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
183 ("-rv" 0 x-handle-switch reverse t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
184 ("-reverse" 0 x-handle-switch reverse t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
185 ("-reverse-video" 0 x-handle-switch reverse t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
186 ("-fn" 1 x-handle-switch font) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
187 ("-font" 1 x-handle-switch font) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
188 ("-ib" 1 x-handle-numeric-switch internal-border-width) |
13912
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
189 ("-g" 1 x-handle-geometry) |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
190 ("-geometry" 1 x-handle-geometry) |
13889
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
191 ("-fg" 1 x-handle-switch foreground-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
192 ("-foreground" 1 x-handle-switch foreground-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
193 ("-bg" 1 x-handle-switch background-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
194 ("-background" 1 x-handle-switch background-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
195 ("-ms" 1 x-handle-switch mouse-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
196 ("-itype" 0 x-handle-switch icon-type t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
197 ("-i" 0 x-handle-switch icon-type t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
198 ("-iconic" 0 x-handle-iconic) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
199 ("-xrm" 1 x-handle-xrm-switch) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
200 ("-cr" 1 x-handle-switch cursor-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
201 ("-vb" 0 x-handle-switch vertical-scroll-bars t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
202 ("-hb" 0 x-handle-switch horizontal-scroll-bars t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
203 ("-bd" 1 x-handle-switch) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
204 ("--border-width" 1 x-handle-numeric-switch border-width) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
205 ("--display" 1 x-handle-display) |
15537
92107cc54a5f
(command-line-x-option-alist): Don't handle -rn.
Richard M. Stallman <rms@gnu.org>
parents:
14986
diff
changeset
|
206 ("--name" 1 x-handle-name-switch) |
14985
c0edd24119bc
(command-line-x-option-alist):
Richard M. Stallman <rms@gnu.org>
parents:
14928
diff
changeset
|
207 ("--title" 1 x-handle-switch title) |
13889
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
208 ("--reverse-video" 0 x-handle-switch reverse t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
209 ("--font" 1 x-handle-switch font) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
210 ("--internal-border" 1 x-handle-numeric-switch internal-border-width) |
13912
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
211 ("--geometry" 1 x-handle-geometry) |
13889
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
212 ("--foreground-color" 1 x-handle-switch foreground-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
213 ("--background-color" 1 x-handle-switch background-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
214 ("--mouse-color" 1 x-handle-switch mouse-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
215 ("--icon-type" 0 x-handle-switch icon-type t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
216 ("--iconic" 0 x-handle-iconic) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
217 ("--xrm" 1 x-handle-xrm-switch) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
218 ("--cursor-color" 1 x-handle-switch cursor-color) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
219 ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
220 ("--border-color" 1 x-handle-switch border-width)) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
221 "Alist of X Windows options. |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
222 Each element has the form |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
223 (NAME NUMARGS HANDLER FRAME-PARAM VALUE) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
224 where NAME is the option name string, NUMARGS is the number of arguments |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
225 that the option accepts, HANDLER is a function to call to handle the option. |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
226 FRAME-PARAM (optional) is the frame parameter this option specifies, |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
227 and VALUE is the value which is given to that frame parameter |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
228 \(most options use the argument for this, so VALUE is not present).") |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
229 |
688 | 230 (defvar before-init-hook nil |
14623
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
231 "Normal hook run after handling urgent options but before loading init files.") |
370 | 232 |
688 | 233 (defvar after-init-hook nil |
14623
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
234 "Normal hook run after loading the init files, `~/.emacs' and `default.el'. |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
235 There is no `condition-case' around the running of these functions; |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
236 therefore, if you set `debug-on-error' non-nil in `.emacs', |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
237 an error in one of these functions will invoke the debugger.") |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
238 |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
239 (defvar emacs-startup-hook nil |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
240 "Normal hook run after loading init files and handling the command line.") |
688 | 241 |
322 | 242 (defvar term-setup-hook nil |
14623
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
243 "Normal hook run after loading terminal-specific Lisp code. |
00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14565
diff
changeset
|
244 It also follows `emacs-startup-hook'. This hook exists for users to set, |
322 | 245 so as to override the definitions made by the terminal-specific file. |
246 Emacs never sets this variable itself.") | |
247 | |
248 (defvar keyboard-type nil | |
6593 | 249 "The brand of keyboard you are using. |
250 This variable is used to define | |
322 | 251 the proper function and keypad keys for use under X. It is used in a |
22529 | 252 fashion analogous to the environment variable TERM.") |
322 | 253 |
254 (defvar window-setup-hook nil | |
6593 | 255 "Normal hook run to initialize window system display. |
256 Emacs runs this hook after processing the command line arguments and loading | |
257 the user's init file.") | |
322 | 258 |
18294 | 259 (defcustom initial-major-mode 'lisp-interaction-mode |
260 "Major mode command symbol to use for the initial *scratch* buffer." | |
19941
d21ea4b5978e
(initial-major-mode): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19927
diff
changeset
|
261 :type 'function |
18294 | 262 :group 'initialization) |
322 | 263 |
18294 | 264 (defcustom init-file-user nil |
322 | 265 "Identity of user whose `.emacs' file is or was read. |
16687
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
266 The value is nil if `-q' or `--no-init-file' was specified, |
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
267 meaning do not load any init file. |
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
268 |
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
269 Otherwise, the value may be the null string, meaning use the init file |
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
270 for the user that originally logged in, or it may be a |
049c87a96dca
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16652
diff
changeset
|
271 string containing a user's name meaning use that person's init file. |
322 | 272 |
6980 | 273 In either of the latter cases, `(concat \"~\" init-file-user \"/\")' |
274 evaluates to the name of the directory where the `.emacs' file was | |
11083
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
275 looked for. |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
276 |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
277 Setting `init-file-user' does not prevent Emacs from loading |
18294 | 278 `site-start.el'. The only way to do that is to use `--no-site-file'." |
279 :type '(choice (const :tag "none" nil) string) | |
280 :group 'initialization) | |
322 | 281 |
18294 | 282 (defcustom site-run-file "site-start" |
4599
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
283 "File containing site-wide run-time initializations. |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
284 This file is loaded at run-time before `~/.emacs'. It contains inits |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
285 that need to be in place for the entire site, but which, due to their |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
286 higher incidence of change, don't make sense to load into emacs' |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
287 dumped image. Thus, the run-time load order is: 1. file described in |
11083
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
288 this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'. |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
289 |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
290 Don't use the `site-start.el' file for things some users may not like. |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
291 Put them in `default.el' instead, so that users can more easily |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
292 override them. Users can prevent loading `default.el' with the `-q' |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
293 option or by setting `inhibit-default-init' in their own init files, |
2c55e8ceb8b4
(init-file-user, site-run-file): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10444
diff
changeset
|
294 but inhibiting `site-start.el' requires `--no-site-file', which |
18294 | 295 is less convenient." |
23276
912ae6c6787d
(site-run-file): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents:
22937
diff
changeset
|
296 :type '(choice (const :tag "none" nil) string) |
18294 | 297 :group 'initialization) |
4599
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
298 |
24786
3699bc348208
(iso-8859-n-locale-regexp): Don't match 8859-15 &c.
Dave Love <fx@gnu.org>
parents:
24476
diff
changeset
|
299 (defconst iso-8859-n-locale-regexp "8859[-_]?\\([1-49]\\)\\>" |
18072
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
300 "Regexp that specifies when to enable an ISO 8859-N character set. |
24881
edc13d60943c
(iso-8859-n-locale-regexp): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24819
diff
changeset
|
301 We do that if this regexp matches the locale name specified by |
edc13d60943c
(iso-8859-n-locale-regexp): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24819
diff
changeset
|
302 one of the environment variables LC_ALL, LC_CTYPE, or LANG. |
18072
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
303 The paren group in the regexp should match the specific character |
24881
edc13d60943c
(iso-8859-n-locale-regexp): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24819
diff
changeset
|
304 set number, N. Currently only Latin-[12345] are supported. |
edc13d60943c
(iso-8859-n-locale-regexp): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24819
diff
changeset
|
305 \(Note that Latin-5 is ISO 8859-9, because 8859-[678] are non-Latin |
24884
1e6ee49f9474
(iso-8859-n-locale-regexp): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24881
diff
changeset
|
306 alphabets; hence, supported values of N are [12349].\)") |
8147
053a450a871a
(command-line): Check LC_ALL and LANG as well as LC_CTYPE.
Richard M. Stallman <rms@gnu.org>
parents:
8137
diff
changeset
|
307 |
18294 | 308 (defcustom mail-host-address nil |
309 "*Name of this machine, for purposes of naming users." | |
310 :type '(choice (const nil) string) | |
311 :group 'mail) | |
8989
54b7aaded223
(mail-host-address): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8759
diff
changeset
|
312 |
18294 | 313 (defcustom user-mail-address nil |
13479
983cfcaf1fbd
(command-line): Complain about unknown options.
Richard M. Stallman <rms@gnu.org>
parents:
13430
diff
changeset
|
314 "*Full mailing address of this user. |
983cfcaf1fbd
(command-line): Complain about unknown options.
Richard M. Stallman <rms@gnu.org>
parents:
13430
diff
changeset
|
315 This is initialized based on `mail-host-address', |
18294 | 316 after your init file is read, in case it sets `mail-host-address'." |
317 :type 'string | |
318 :group 'mail) | |
8048
5253d3981da6
(user-mail-address): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7880
diff
changeset
|
319 |
18294 | 320 (defcustom auto-save-list-file-prefix |
13912
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
321 (if (eq system-type 'ms-dos) |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
322 "~/_s" ; MS-DOS cannot have initial dot, and allows only 8.3 names |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
323 "~/.saves-") |
13811
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
324 "Prefix for generating `auto-save-list-file-name'. |
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
325 This is used after reading your `.emacs' file to initialize |
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
326 `auto-save-list-file-name', by appending Emacs's pid and the system name, |
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
327 if you have not already set `auto-save-list-file-name' yourself. |
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
328 Set this to nil if you want to prevent `auto-save-list-file-name' |
18294 | 329 from being initialized." |
20063
8de4c2591c49
(auto-save-list-file-prefix): Fix custom type.
Karl Heuer <kwzh@gnu.org>
parents:
20030
diff
changeset
|
330 :type '(choice (const :tag "Don't record a session's auto save list" nil) |
8de4c2591c49
(auto-save-list-file-prefix): Fix custom type.
Karl Heuer <kwzh@gnu.org>
parents:
20030
diff
changeset
|
331 string) |
18294 | 332 :group 'auto-save) |
13117
3753d2ea3ab1
(auto-save-list-file-prefix): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13073
diff
changeset
|
333 |
23299
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
334 (defvar locale-translation-file-name |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
335 (let ((files '("/usr/lib/X11/locale/locale.alias" ; e.g. X11R6.4 |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
336 "/usr/X11R6/lib/X11/locale/locale.alias" ; e.g. RedHat 4.2 |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
337 "/usr/openwin/lib/locale/locale.alias" ; e.g. Solaris 2.6 |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
338 ;; |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
339 ;; The following name appears after the X-related names above, |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
340 ;; since the X-related names are what X actually uses. |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
341 "/usr/share/locale/locale.alias" ; GNU/Linux sans X |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
342 ))) |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
343 (while (and files (not (file-exists-p (car files)))) |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
344 (setq files (cdr files))) |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
345 (car files)) |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
346 "*File name for the system's file of locale-name aliases, or nil if none.") |
22057
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
347 |
322 | 348 (defvar init-file-debug nil) |
349 | |
5109
062da10a4a6b
(command-line): Set init-file-had-error to t or nil.
Richard M. Stallman <rms@gnu.org>
parents:
5024
diff
changeset
|
350 (defvar init-file-had-error nil) |
062da10a4a6b
(command-line): Set init-file-had-error to t or nil.
Richard M. Stallman <rms@gnu.org>
parents:
5024
diff
changeset
|
351 |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
352 (defvar normal-top-level-add-subdirs-inode-list nil) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
353 |
21264
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
354 (defun normal-top-level-add-subdirs-to-load-path () |
22024
bf37812dd6bb
(normal-top-level-add-subdirs-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
21916
diff
changeset
|
355 "Add all subdirectories of current directory to `load-path'. |
bf37812dd6bb
(normal-top-level-add-subdirs-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
21916
diff
changeset
|
356 More precisely, this uses only the subdirectories whose names |
22334
979317421863
(normal-top-level-add-subdirs-to-load-path): Ignore
Dave Love <fx@gnu.org>
parents:
22176
diff
changeset
|
357 start with letters or digits; it excludes any subdirectory named `RCS' |
979317421863
(normal-top-level-add-subdirs-to-load-path): Ignore
Dave Love <fx@gnu.org>
parents:
22176
diff
changeset
|
358 or `CVS', and any subdirectory that contains a file named `.nosearch'." |
21264
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
359 (let (dirs |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
360 attrs |
21264
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
361 (pending (list default-directory))) |
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
362 ;; This loop does a breadth-first tree walk on DIR's subtree, |
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
363 ;; putting each subdir into DIRS as its contents are examined. |
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
364 (while pending |
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
365 (setq dirs (cons (car pending) dirs)) |
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
366 (setq pending (cdr pending)) |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
367 (setq attrs (nthcdr 10 (file-attributes (car dirs)))) |
21264
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
368 (let ((contents (directory-files (car dirs))) |
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
369 (default-directory (car dirs))) |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
370 (unless (member attrs normal-top-level-add-subdirs-inode-list) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
371 (setq normal-top-level-add-subdirs-inode-list |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
372 (cons attrs normal-top-level-add-subdirs-inode-list)) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
373 (while contents |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
374 (unless (member (car contents) '("." ".." "RCS" "CVS")) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
375 (when (and (string-match "\\`[a-zA-Z0-9]" (car contents)) |
24923
702b3d792db9
(normal-top-level-add-subdirs-to-load-path): Avoid doing a `stat' when
Richard M. Stallman <rms@gnu.org>
parents:
24884
diff
changeset
|
376 ;; Avoid doing a `stat' when it isn't necessary |
702b3d792db9
(normal-top-level-add-subdirs-to-load-path): Avoid doing a `stat' when
Richard M. Stallman <rms@gnu.org>
parents:
24884
diff
changeset
|
377 ;; because that can cause trouble when an NFS server |
702b3d792db9
(normal-top-level-add-subdirs-to-load-path): Avoid doing a `stat' when
Richard M. Stallman <rms@gnu.org>
parents:
24884
diff
changeset
|
378 ;; is down. |
702b3d792db9
(normal-top-level-add-subdirs-to-load-path): Avoid doing a `stat' when
Richard M. Stallman <rms@gnu.org>
parents:
24884
diff
changeset
|
379 (not (string-match "\\.elc?\\'" (car contents))) |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
380 (file-directory-p (car contents))) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
381 (let ((expanded (expand-file-name (car contents)))) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
382 (unless (file-exists-p (expand-file-name ".nosearch" |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
383 expanded)) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
384 (setq pending (nconc pending (list expanded))))))) |
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
385 (setq contents (cdr contents)))))) |
21292
5d62016adafd
(normal-top-level-add-subdirs-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
21264
diff
changeset
|
386 (normal-top-level-add-to-load-path (cdr (nreverse dirs))))) |
21264
9eb6fcceba90
(normal-top-level-add-subdirs-to-load-path): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20695
diff
changeset
|
387 |
22176 | 388 ;; This function is called from a subdirs.el file. |
389 ;; It assumes that default-directory is the directory | |
390 ;; in which the subdirs.el file exists, | |
391 ;; and it adds to load-path the subdirs of that directory | |
392 ;; as specified in DIRS. Normally the elements of DIRS are relative. | |
9443
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
393 (defun normal-top-level-add-to-load-path (dirs) |
19955
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
394 (let ((tail load-path) |
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
395 (thisdir (directory-file-name default-directory))) |
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
396 (while (and tail |
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
397 (not (equal thisdir (car tail))) |
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
398 (not (and (memq system-type '(ms-dos windows-nt)) |
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
399 (equal (downcase thisdir) (downcase (car tail)))))) |
1593da1bdfec
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19941
diff
changeset
|
400 (setq tail (cdr tail))) |
9443
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
401 (setcdr tail (append (mapcar 'expand-file-name dirs) (cdr tail))))) |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
402 |
322 | 403 (defun normal-top-level () |
404 (if command-line-processed | |
405 (message "Back to top level.") | |
406 (setq command-line-processed t) | |
11294
f5079cb33831
(normal-top-level): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11083
diff
changeset
|
407 ;; Give *Messages* the same default-directory as *scratch*, |
f5079cb33831
(normal-top-level): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11083
diff
changeset
|
408 ;; just to keep things predictable. |
f5079cb33831
(normal-top-level): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11083
diff
changeset
|
409 (let ((dir default-directory)) |
f5079cb33831
(normal-top-level): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11083
diff
changeset
|
410 (save-excursion |
f5079cb33831
(normal-top-level): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11083
diff
changeset
|
411 (set-buffer (get-buffer "*Messages*")) |
f5079cb33831
(normal-top-level): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
11083
diff
changeset
|
412 (setq default-directory dir))) |
22512 | 413 ;; For root, preserve owner and group when editing files. |
414 (if (equal (user-uid) 0) | |
415 (setq backup-by-copying-when-mismatch t)) | |
9443
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
416 ;; Look in each dir in load-path for a subdirs.el file. |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
417 ;; If we find one, load it, which will add the appropriate subdirs |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
418 ;; of that dir into load-path, |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
419 (let ((tail load-path) |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
420 new) |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
421 (while tail |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
422 (setq new (cons (car tail) new)) |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
423 (let ((default-directory (car tail))) |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
424 (load (expand-file-name "subdirs.el" (car tail)) t t t)) |
5eaca32b6af6
(normal-top-level-add-to-load-path): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9348
diff
changeset
|
425 (setq tail (cdr tail)))) |
648 | 426 (if (not (eq system-type 'vax-vms)) |
1558
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
427 (progn |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
428 ;; If the PWD environment variable isn't accurate, delete it. |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
429 (let ((pwd (getenv "PWD"))) |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
430 (and (stringp pwd) |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
431 ;; Use FOO/., so that if FOO is a symlink, file-attributes |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
432 ;; describes the directory linked to, not FOO itself. |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
433 (or (equal (file-attributes |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
434 (concat (file-name-as-directory pwd) ".")) |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
435 (file-attributes |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
436 (concat (file-name-as-directory default-directory) |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
437 "."))) |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
438 (setq process-environment |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
439 (delete (concat "PWD=" pwd) |
a7e915481db1
* startup.el (normal-top-level): Don't worry about setting
Jim Blandy <jimb@redhat.com>
parents:
1550
diff
changeset
|
440 process-environment))))))) |
707 | 441 (setq default-directory (abbreviate-file-name default-directory)) |
7371
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
442 (let ((menubar-bindings-done nil)) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
443 (unwind-protect |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
444 (command-line) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
445 ;; Do this again, in case .emacs defined more abbreviations. |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
446 (setq default-directory (abbreviate-file-name default-directory)) |
13279
68cd0fc88a56
(normal-top-level): Set auto-save-list-file-name later,
Richard M. Stallman <rms@gnu.org>
parents:
13153
diff
changeset
|
447 ;; Specify the file for recording all the auto save files of this session. |
68cd0fc88a56
(normal-top-level): Set auto-save-list-file-name later,
Richard M. Stallman <rms@gnu.org>
parents:
13153
diff
changeset
|
448 ;; This is used by recover-session. |
13811
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
449 (or auto-save-list-file-name |
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
450 (and auto-save-list-file-prefix |
66fa6267358e
(command-line-1): Use auto-save-list-file-prefix
Karl Heuer <kwzh@gnu.org>
parents:
13552
diff
changeset
|
451 (setq auto-save-list-file-name |
13912
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
452 ;; Under MS-DOS our PID is almost always reused between |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
453 ;; Emacs invocations. We need something more unique. |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
454 (if (eq system-type 'ms-dos) |
13914
18d26aa4c25a
(normal-top-level): Add ~ at end of auto-save-list-file-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
13912
diff
changeset
|
455 (concat |
18d26aa4c25a
(normal-top-level): Add ~ at end of auto-save-list-file-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
13912
diff
changeset
|
456 (make-temp-name |
18d26aa4c25a
(normal-top-level): Add ~ at end of auto-save-list-file-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
13912
diff
changeset
|
457 (expand-file-name auto-save-list-file-prefix)) |
18d26aa4c25a
(normal-top-level): Add ~ at end of auto-save-list-file-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
13912
diff
changeset
|
458 "~") |
18d26aa4c25a
(normal-top-level): Add ~ at end of auto-save-list-file-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
13912
diff
changeset
|
459 |
18d26aa4c25a
(normal-top-level): Add ~ at end of auto-save-list-file-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
13912
diff
changeset
|
460 (expand-file-name (format "%s%d-%s~" |
13912
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
461 auto-save-list-file-prefix |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
462 (emacs-pid) |
07d5e992fdc4
(auto-save-list-file-prefix): Under MS-DOS, use `.s-'.
Richard M. Stallman <rms@gnu.org>
parents:
13889
diff
changeset
|
463 (system-name))))))) |
7371
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
464 (run-hooks 'emacs-startup-hook) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
465 (and term-setup-hook |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
466 (run-hooks 'term-setup-hook)) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
467 ;; Modify the initial frame based on what .emacs puts into |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
468 ;; ...-frame-alist. |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
469 (if (fboundp 'frame-notice-user-settings) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
470 (frame-notice-user-settings)) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
471 ;; Now we know the user's default font, so add it to the menu. |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
472 (if (fboundp 'font-menu-add-default) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
473 (font-menu-add-default)) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
474 (and window-setup-hook |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
475 (run-hooks 'window-setup-hook)) |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
476 (or menubar-bindings-done |
16652
eb3f3934a185
(normal-top-level, command-line, command-line-1):
Geoff Voelker <voelker@cs.washington.edu>
parents:
16198
diff
changeset
|
477 (if (memq window-system '(x w32)) |
12300
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
478 (precompute-menubar-bindings))))))) |
7371
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
479 |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
480 ;; Precompute the keyboard equivalents in the menu bar items. |
099233e3a3be
(precompute-menubar-bindings): New function, formerly in loadup.el.
Karl Heuer <kwzh@gnu.org>
parents:
7022
diff
changeset
|
481 (defun precompute-menubar-bindings () |
12300
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
482 (let ((submap (lookup-key global-map [menu-bar]))) |
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
483 (while submap |
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
484 (and (consp (car submap)) |
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
485 (symbolp (car (car submap))) |
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
486 (stringp (car-safe (cdr (car submap)))) |
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
487 (keymapp (cdr (cdr (car submap)))) |
12346
a7f7ae7ef458
(precompute-menubar-bindings): While dumping,
Richard M. Stallman <rms@gnu.org>
parents:
12300
diff
changeset
|
488 (progn |
a7f7ae7ef458
(precompute-menubar-bindings): While dumping,
Richard M. Stallman <rms@gnu.org>
parents:
12300
diff
changeset
|
489 (x-popup-menu nil (cdr (cdr (car submap)))) |
a7f7ae7ef458
(precompute-menubar-bindings): While dumping,
Richard M. Stallman <rms@gnu.org>
parents:
12300
diff
changeset
|
490 (if purify-flag |
a7f7ae7ef458
(precompute-menubar-bindings): While dumping,
Richard M. Stallman <rms@gnu.org>
parents:
12300
diff
changeset
|
491 (garbage-collect)))) |
12300
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
492 (setq submap (cdr submap)))) |
d2f3dd6083d2
(normal-top-level, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
11947
diff
changeset
|
493 (setq define-key-rebound-commands t)) |
322 | 494 |
495 (defun command-line () | |
7022
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
496 (setq command-line-default-directory default-directory) |
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
497 |
22429
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
498 ;; Choose a reasonable location for temporary files. |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
499 (setq temporary-file-directory |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
500 (file-name-as-directory |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
501 (cond ((memq system-type '(ms-dos windows-nt)) |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
502 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp")) |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
503 ((memq system-type '(vax-vms axp-vms)) |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
504 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:")) |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
505 (t |
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
506 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))) |
25485
d862057a6c14
(command-line): Compute the value of
Eli Zaretskii <eliz@gnu.org>
parents:
25120
diff
changeset
|
507 (setq small-temporary-file-directory |
d862057a6c14
(command-line): Compute the value of
Eli Zaretskii <eliz@gnu.org>
parents:
25120
diff
changeset
|
508 (if (eq system-type 'ms-dos) |
25559
cf5a6d4a09f1
(command-line): Make small-temporary-file-directory
Eli Zaretskii <eliz@gnu.org>
parents:
25485
diff
changeset
|
509 (getenv "TMPDIR"))) |
22429
38486c386abb
(command-line): Set `temporary-file-directory' based
Richard M. Stallman <rms@gnu.org>
parents:
22334
diff
changeset
|
510 |
823 | 511 ;; See if we should import version-control from the environment variable. |
322 | 512 (let ((vc (getenv "VERSION_CONTROL"))) |
513 (cond ((eq vc nil)) ;don't do anything if not set | |
514 ((or (string= vc "t") | |
515 (string= vc "numbered")) | |
516 (setq version-control t)) | |
517 ((or (string= vc "nil") | |
518 (string= vc "existing")) | |
519 (setq version-control nil)) | |
520 ((or (string= vc "never") | |
521 (string= vc "simple")) | |
522 (setq version-control 'never)))) | |
523 | |
18072
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
524 (let ((ctype |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
525 ;; Use the first of these three envvars that has a nonempty value. |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
526 (or (let ((string (getenv "LC_ALL"))) |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
527 (and (not (equal string "")) string)) |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
528 (let ((string (getenv "LC_CTYPE"))) |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
529 (and (not (equal string "")) string)) |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
530 (let ((string (getenv "LANG"))) |
18294 | 531 (and (not (equal string "")) string))))) |
22057
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
532 ;; Translate "swedish" into "sv_SE.ISO-8859-1", and so on, |
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
533 ;; using the translation file that GNU/Linux systems have. |
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
534 (and ctype |
23299
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
535 locale-translation-file-name |
22057
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
536 (not (string-match iso-8859-n-locale-regexp ctype)) |
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
537 (with-temp-buffer |
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
538 (insert-file-contents locale-translation-file-name) |
23299
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
539 (if (re-search-forward |
00fa89a27438
(locale-translation-file-name): Prefer X-related names
Paul Eggert <eggert@twinsun.com>
parents:
23276
diff
changeset
|
540 (concat "^" (regexp-quote ctype) ":?[ \t]+") nil t) |
22057
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
541 (setq ctype (buffer-substring (point) |
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
542 (progn (end-of-line) (point))))))) |
9b0a64c31e1c
(locale-translation-file-name): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22024
diff
changeset
|
543 ;; Now see if the locale specifies an ISO 8859 character set. |
18072
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
544 (when (and ctype |
ffd40bd63246
(command-line): Detect Latin-N character sets
Richard M. Stallman <rms@gnu.org>
parents:
17924
diff
changeset
|
545 (string-match iso-8859-n-locale-regexp ctype)) |
18294 | 546 (let (charset (which (match-string 1 ctype))) |
22632
187c9bf1aab6
(command-line) <handling LANG>: Change 9 to 5, not 5 to 9.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
547 (if (equal "9" which) |
187c9bf1aab6
(command-line) <handling LANG>: Change 9 to 5, not 5 to 9.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
548 (setq which "5")) |
18294 | 549 (setq charset (concat "latin-" which)) |
21916
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
550 (when (string-match "latin-[12345]" charset) |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
551 ;; Set up for this character set. |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
552 ;; This is now the right way to do it |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
553 ;; for both unibyte and multibyte modes. |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
554 (set-language-environment charset) |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
555 (unless (or noninteractive (eq window-system 'x)) |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
556 ;; Send those codes literally to a non-X terminal. |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
557 (when default-enable-multibyte-characters |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
558 ;; If this is nil, we are using single-byte characters, |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
559 ;; so the terminal coding system is irrelevant. |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
560 (set-terminal-coding-system |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
561 (intern (downcase charset))))) |
ef39b27c5e20
(command-line): When choosing a language from LANG,
Richard M. Stallman <rms@gnu.org>
parents:
21511
diff
changeset
|
562 (standard-display-european-internal))))) |
8127
81dacf7883e7
(command-line): Automatically use iso-syntax and
Richard M. Stallman <rms@gnu.org>
parents:
8048
diff
changeset
|
563 |
755 | 564 ;;! This has been commented out; I currently find the behavior when |
565 ;;! split-window-keep-point is nil disturbing, but if I can get used | |
566 ;;! to it, then it would be better to eliminate the option. | |
567 ;;! ;; Choose a good default value for split-window-keep-point. | |
568 ;;! (setq split-window-keep-point (> baud-rate 2400)) | |
384 | 569 |
24203
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
570 ;; Set the default strings to display in mode line for |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
571 ;; end-of-line formats that aren't native to this platform. |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
572 (cond |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
573 ((memq system-type '(ms-dos windows-nt emx)) |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
574 (setq eol-mnemonic-unix "(Unix)") |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
575 (setq eol-mnemonic-mac "(Mac)")) |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
576 ;; Mac-specific settings should come here, once there's a |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
577 ;; system-type symbol specific to MacOS. |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
578 (t ; this is for Unix/GNU/Linux systems |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
579 (setq eol-mnemonic-dos "(DOS)") |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
580 (setq eol-mnemonic-mac "(Mac)"))) |
06cb71bb7bc5
(command-line): Set default eol-mnemonic-* strings to
Eli Zaretskii <eliz@gnu.org>
parents:
24198
diff
changeset
|
581 |
322 | 582 ;; Read window system's init file if using a window system. |
8748
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
583 (condition-case error |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
584 (if (and window-system (not noninteractive)) |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
585 (load (concat term-file-prefix |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
586 (symbol-name window-system) |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
587 "-win") |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
588 ;; Every window system should have a startup file; |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
589 ;; barf if we can't find it. |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
590 nil t)) |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
591 ;; If we can't read it, print the error message and exit. |
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
592 (error |
8749
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
593 (princ |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
594 (if (eq (car error) 'error) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
595 (apply 'concat (cdr error)) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
596 (if (memq 'file-error (get (car error) 'error-conditions)) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
597 (format "%s: %s" |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
598 (nth 1 error) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
599 (mapconcat '(lambda (obj) (prin1-to-string obj t)) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
600 (cdr (cdr error)) ", ")) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
601 (format "%s: %s" |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
602 (get (car error) 'error-message) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
603 (mapconcat '(lambda (obj) (prin1-to-string obj t)) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
604 (cdr error) ", ")))) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
605 'external-debugging-output) |
db4473742de7
(commmand-line): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8748
diff
changeset
|
606 (setq window-system nil) |
8748
fca85f8be890
(command-line): If we can't load x-win.el, terminate.
Richard M. Stallman <rms@gnu.org>
parents:
8335
diff
changeset
|
607 (kill-emacs))) |
322 | 608 |
326 | 609 (let ((done nil) |
610 (args (cdr command-line-args))) | |
611 | |
322 | 612 ;; Figure out which user's init file to load, |
613 ;; either from the environment or from the options. | |
614 (setq init-file-user (if noninteractive nil (user-login-name))) | |
615 ;; If user has not done su, use current $HOME to find .emacs. | |
616 (and init-file-user (string= init-file-user (user-real-login-name)) | |
617 (setq init-file-user "")) | |
326 | 618 |
619 ;; Process the command-line args, and delete the arguments | |
620 ;; processed. This is consistent with the way main in emacs.c | |
621 ;; does things. | |
322 | 622 (while (and (not done) args) |
9173
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
623 (let ((longopts '(("--no-init-file") ("--no-site-file") ("--user") |
11620
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
624 ("--debug-init") ("--iconic") ("--icon-type"))) |
9173
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
625 (argi (car args)) |
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
626 (argval nil)) |
13479
983cfcaf1fbd
(command-line): Complain about unknown options.
Richard M. Stallman <rms@gnu.org>
parents:
13430
diff
changeset
|
627 ;; Handle --OPTION=VALUE format. |
983cfcaf1fbd
(command-line): Complain about unknown options.
Richard M. Stallman <rms@gnu.org>
parents:
13430
diff
changeset
|
628 (if (and (string-match "\\`--" argi) |
983cfcaf1fbd
(command-line): Complain about unknown options.
Richard M. Stallman <rms@gnu.org>
parents:
13430
diff
changeset
|
629 (string-match "=" argi)) |
9174
900fdf19446a
(command-line): Fix bug in previous change.
Karl Heuer <kwzh@gnu.org>
parents:
9173
diff
changeset
|
630 (setq argval (substring argi (match-end 0)) |
900fdf19446a
(command-line): Fix bug in previous change.
Karl Heuer <kwzh@gnu.org>
parents:
9173
diff
changeset
|
631 argi (substring argi 0 (match-beginning 0)))) |
16092
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
632 (or (equal argi "--") |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
633 (let ((completion (try-completion argi longopts))) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
634 (if (eq completion t) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
635 (setq argi (substring argi 1)) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
636 (if (stringp completion) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
637 (let ((elt (assoc completion longopts))) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
638 (or elt |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
639 (error "Option `%s' is ambiguous" argi)) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
640 (setq argi (substring (car elt) 1))) |
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
641 (setq argval nil))))) |
322 | 642 (cond |
643 ((or (string-equal argi "-q") | |
644 (string-equal argi "-no-init-file")) | |
645 (setq init-file-user nil | |
646 args (cdr args))) | |
647 ((or (string-equal argi "-u") | |
648 (string-equal argi "-user")) | |
9173
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
649 (or argval |
12397
fcc312993a33
(command-line): Extract arg value properly for -u.
Richard M. Stallman <rms@gnu.org>
parents:
12346
diff
changeset
|
650 (setq args (cdr args) |
fcc312993a33
(command-line): Extract arg value properly for -u.
Richard M. Stallman <rms@gnu.org>
parents:
12346
diff
changeset
|
651 argval (car args))) |
9173
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
652 (setq init-file-user argval |
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
653 argval nil |
322 | 654 args (cdr args))) |
4599
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
655 ((string-equal argi "-no-site-file") |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
656 (setq site-run-file nil |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
657 args (cdr args))) |
322 | 658 ((string-equal argi "-debug-init") |
659 (setq init-file-debug t | |
660 args (cdr args))) | |
11620
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
661 ((string-equal argi "-iconic") |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
662 (setq initial-frame-alist |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
663 (cons '(visibility . icon) initial-frame-alist)) |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
664 (setq args (cdr args))) |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
665 ((or (string-equal argi "-icon-type") |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
666 (string-equal argi "-i") |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
667 (string-equal argi "-itype")) |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
668 (setq default-frame-alist |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
669 (cons '(icon-type . t) default-frame-alist)) |
5e836a7d213d
(command-line): Handle -iconic and -icon-type here.
Richard M. Stallman <rms@gnu.org>
parents:
11294
diff
changeset
|
670 (setq args (cdr args))) |
9173
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
671 (t (setq done t))) |
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
672 ;; Was argval set but not used? |
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
673 (and argval |
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
674 (error "Option `%s' doesn't allow an argument" argi)))) |
6ee3eeec722b
(command-line): Recognize --longopt synonyms for all options handled here.
Karl Heuer <kwzh@gnu.org>
parents:
8989
diff
changeset
|
675 |
326 | 676 ;; Re-attach the program name to the front of the arg list. |
11947
5c923b88c9da
(command-line): Handle nil command-line-args.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11633
diff
changeset
|
677 (and command-line-args (setcdr command-line-args args))) |
322 | 678 |
2761
26bad513fbb0
(command-line): Call frame-initialize explicitly.
Richard M. Stallman <rms@gnu.org>
parents:
2105
diff
changeset
|
679 ;; Under X Windows, this creates the X frame and deletes the terminal frame. |
2869
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
680 (if (fboundp 'frame-initialize) |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
681 (frame-initialize)) |
8759
19d9177069c4
(command-line): If initial X frame has a menu bar, mark menu-bar-mode as on.
Richard M. Stallman <rms@gnu.org>
parents:
8749
diff
changeset
|
682 ;; If frame was created with a menu bar, set menu-bar-mode on. |
16652
eb3f3934a185
(normal-top-level, command-line, command-line-1):
Geoff Voelker <voelker@cs.washington.edu>
parents:
16198
diff
changeset
|
683 (if (or (not (memq window-system '(x w32))) |
13371
4340d33c2e7a
(command-line-1): Say how to invoke menu bar, if not X.
Richard M. Stallman <rms@gnu.org>
parents:
13279
diff
changeset
|
684 (> (cdr (assq 'menu-bar-lines (frame-parameters))) 0)) |
8759
19d9177069c4
(command-line): If initial X frame has a menu bar, mark menu-bar-mode as on.
Richard M. Stallman <rms@gnu.org>
parents:
8749
diff
changeset
|
685 (menu-bar-mode t)) |
2761
26bad513fbb0
(command-line): Call frame-initialize explicitly.
Richard M. Stallman <rms@gnu.org>
parents:
2105
diff
changeset
|
686 |
688 | 687 (run-hooks 'before-init-hook) |
370 | 688 |
883 | 689 ;; Run the site-start library if it exists. The point of this file is |
690 ;; that it is run before .emacs. There is no point in doing this after | |
691 ;; .emacs; that is useless. | |
4599
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
692 (if site-run-file |
e1d54ee1deea
(site-run-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4293
diff
changeset
|
693 (load site-run-file t t)) |
883 | 694 |
22162
7b2a57ff032a
(command-line): Fixed a typo in comment.
Kenichi Handa <handa@m17n.org>
parents:
22057
diff
changeset
|
695 ;; Register available input methods by loading LEIM list file. |
18295
9fd01ad9a055
(command-line): Load "leim-list.el".
Kenichi Handa <handa@m17n.org>
parents:
18294
diff
changeset
|
696 (load "leim-list.el" 'noerror 'nomessage 'nosuffix) |
9fd01ad9a055
(command-line): Load "leim-list.el".
Kenichi Handa <handa@m17n.org>
parents:
18294
diff
changeset
|
697 |
4672
8996606e0a12
(command-line): Setq inhibit-startup-message to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4599
diff
changeset
|
698 ;; Sites should not disable this. Only individuals should disable |
8996606e0a12
(command-line): Setq inhibit-startup-message to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4599
diff
changeset
|
699 ;; the startup message. |
8996606e0a12
(command-line): Setq inhibit-startup-message to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4599
diff
changeset
|
700 (setq inhibit-startup-message nil) |
8996606e0a12
(command-line): Setq inhibit-startup-message to nil.
Richard M. Stallman <rms@gnu.org>
parents:
4599
diff
changeset
|
701 |
322 | 702 ;; Load that user's init file, or the default one, or none. |
5379
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
703 (let (debug-on-error-from-init-file |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
704 debug-on-error-should-be-set |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
705 (debug-on-error-initial |
24115
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
706 (if (eq init-file-debug t) 'startup init-file-debug)) |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
707 (orig-enable-multibyte default-enable-multibyte-characters)) |
5379
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
708 (let ((debug-on-error debug-on-error-initial) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
709 ;; This function actually reads the init files. |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
710 (inner |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
711 (function |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
712 (lambda () |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
713 (if init-file-user |
24819
649cfea33b84
(command-line): Don't set user-init-file directly;
Karl Heuer <kwzh@gnu.org>
parents:
24786
diff
changeset
|
714 (let ((user-init-file-1 |
5450
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
715 (cond |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
716 ((eq system-type 'ms-dos) |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
717 (concat "~" init-file-user "/_emacs")) |
9778
7641fc43ca94
(command-line): Use ~/_emacs as init file in windows-nt.
Richard M. Stallman <rms@gnu.org>
parents:
9443
diff
changeset
|
718 ((eq system-type 'windows-nt) |
24397
dcfaab09a584
(command-line) [windows-nt]: Fix typo in regexp
Andrew Innes <andrewi@gnu.org>
parents:
24203
diff
changeset
|
719 (if (directory-files "~" nil "^\\.emacs\\(\\.elc?\\)?$") |
14549
fe6846ee5999
(command-line): On windows NT, look for .emacs or _emacs.
Richard M. Stallman <rms@gnu.org>
parents:
14386
diff
changeset
|
720 "~/.emacs" |
fe6846ee5999
(command-line): On windows NT, look for .emacs or _emacs.
Richard M. Stallman <rms@gnu.org>
parents:
14386
diff
changeset
|
721 "~/_emacs")) |
5450
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
722 ((eq system-type 'vax-vms) |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
723 "sys$login:.emacs") |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
724 (t |
24819
649cfea33b84
(command-line): Don't set user-init-file directly;
Karl Heuer <kwzh@gnu.org>
parents:
24786
diff
changeset
|
725 (concat "~" init-file-user "/.emacs"))))) |
649cfea33b84
(command-line): Don't set user-init-file directly;
Karl Heuer <kwzh@gnu.org>
parents:
24786
diff
changeset
|
726 ;; This tells `load' to store the file name found |
649cfea33b84
(command-line): Don't set user-init-file directly;
Karl Heuer <kwzh@gnu.org>
parents:
24786
diff
changeset
|
727 ;; into user-init-file. |
649cfea33b84
(command-line): Don't set user-init-file directly;
Karl Heuer <kwzh@gnu.org>
parents:
24786
diff
changeset
|
728 (setq user-init-file t) |
649cfea33b84
(command-line): Don't set user-init-file directly;
Karl Heuer <kwzh@gnu.org>
parents:
24786
diff
changeset
|
729 (load user-init-file-1 t t) |
25055
a29c760f50ee
(command-line): If we don't find the user's init file,
Karl Heuer <kwzh@gnu.org>
parents:
24980
diff
changeset
|
730 ;; If we did not find the user's init file, |
a29c760f50ee
(command-line): If we don't find the user's init file,
Karl Heuer <kwzh@gnu.org>
parents:
24980
diff
changeset
|
731 ;; set user-init-file conclusively to nil; |
a29c760f50ee
(command-line): If we don't find the user's init file,
Karl Heuer <kwzh@gnu.org>
parents:
24980
diff
changeset
|
732 ;; don't let it be set from default.el. |
a29c760f50ee
(command-line): If we don't find the user's init file,
Karl Heuer <kwzh@gnu.org>
parents:
24980
diff
changeset
|
733 (if (eq user-init-file t) |
a29c760f50ee
(command-line): If we don't find the user's init file,
Karl Heuer <kwzh@gnu.org>
parents:
24980
diff
changeset
|
734 (setq user-init-file nil)) |
5450
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
735 (or inhibit-default-init |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
736 (let ((inhibit-startup-message nil)) |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
737 ;; Users are supposed to be told their rights. |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
738 ;; (Plus how to get help and how to undo.) |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
739 ;; Don't you dare turn this off for anyone |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
740 ;; except yourself. |
9c57cdb2091e
(command-line): Set user-init-file.
Richard M. Stallman <rms@gnu.org>
parents:
5379
diff
changeset
|
741 (load "default" t t))))))))) |
5379
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
742 (if init-file-debug |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
743 ;; Do this without a condition-case if the user wants to debug. |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
744 (funcall inner) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
745 (condition-case error |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
746 (progn |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
747 (funcall inner) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
748 (setq init-file-had-error nil)) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
749 (error (message "Error in init file: %s%s%s" |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
750 (get (car error) 'error-message) |
6911
6062cabdbe74
(command-line): If no error data, print "", not nil.
Karl Heuer <kwzh@gnu.org>
parents:
6874
diff
changeset
|
751 (if (cdr error) ": " "") |
5379
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
752 (mapconcat 'prin1-to-string (cdr error) ", ")) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
753 (setq init-file-had-error t)))) |
6911
6062cabdbe74
(command-line): If no error data, print "", not nil.
Karl Heuer <kwzh@gnu.org>
parents:
6874
diff
changeset
|
754 ;; If we can tell that the init file altered debug-on-error, |
5379
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
755 ;; arrange to preserve the value that it set up. |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
756 (or (eq debug-on-error debug-on-error-initial) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
757 (setq debug-on-error-should-be-set t |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
758 debug-on-error-from-init-file debug-on-error))) |
1d1d65ab7835
(command-line): In most cases, if init file sets
Richard M. Stallman <rms@gnu.org>
parents:
5109
diff
changeset
|
759 (if debug-on-error-should-be-set |
24115
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
760 (setq debug-on-error debug-on-error-from-init-file)) |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
761 (unless (or default-enable-multibyte-characters |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
762 (eq orig-enable-multibyte default-enable-multibyte-characters)) |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
763 ;; Init file changed to unibyte. Reset existing multibyte |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
764 ;; buffers (probably *scratch*, *Messages*, *Minibuff-0*). |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
765 ;; Arguably this should only be done if they're free of |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
766 ;; multibyte characters. |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
767 (mapcar (lambda (buffer) |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
768 (with-current-buffer buffer |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
769 (if enable-multibyte-characters |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
770 (set-buffer-multibyte nil)))) |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
771 (buffer-list)) |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
772 ;; Also re-set the language environment in case it was |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
773 ;; originally done before unibyte was set and is sensitive to |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
774 ;; unibyte (display table, terminal coding system &c). |
10955ef4bdfb
(command-line): If the init file changes operation to
Richard M. Stallman <rms@gnu.org>
parents:
23299
diff
changeset
|
775 (set-language-environment current-language-environment))) |
370 | 776 |
13153
c9694633f7ca
(command-line): Init user-mail-address here, after reading init file.
Richard M. Stallman <rms@gnu.org>
parents:
13117
diff
changeset
|
777 ;; Do this here in case the init file sets mail-host-address. |
c9694633f7ca
(command-line): Init user-mail-address here, after reading init file.
Richard M. Stallman <rms@gnu.org>
parents:
13117
diff
changeset
|
778 (or user-mail-address |
c9694633f7ca
(command-line): Init user-mail-address here, after reading init file.
Richard M. Stallman <rms@gnu.org>
parents:
13117
diff
changeset
|
779 (setq user-mail-address (concat (user-login-name) "@" |
c9694633f7ca
(command-line): Init user-mail-address here, after reading init file.
Richard M. Stallman <rms@gnu.org>
parents:
13117
diff
changeset
|
780 (or mail-host-address |
c9694633f7ca
(command-line): Init user-mail-address here, after reading init file.
Richard M. Stallman <rms@gnu.org>
parents:
13117
diff
changeset
|
781 (system-name))))) |
c9694633f7ca
(command-line): Init user-mail-address here, after reading init file.
Richard M. Stallman <rms@gnu.org>
parents:
13117
diff
changeset
|
782 |
688 | 783 (run-hooks 'after-init-hook) |
784 | |
322 | 785 ;; If *scratch* exists and init file didn't change its mode, initialize it. |
786 (if (get-buffer "*scratch*") | |
787 (save-excursion | |
788 (set-buffer "*scratch*") | |
789 (if (eq major-mode 'fundamental-mode) | |
790 (funcall initial-major-mode)))) | |
24980
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
791 |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
792 ;; Register default TTY colors for the case the terminal hasn't a |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
793 ;; terminal init file. The colors are good for xterm-color and the |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
794 ;; FreeBSD console (cons.*). They should be sufficient for Linux |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
795 ;; too, I guess. |
25120
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
796 (or (eq window-system 'pc) ; pc-win.el did this already |
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
797 (let ((colors '("black" "red" "green" "yellow" "blue" "magenta" |
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
798 "cyan" "white")) |
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
799 (i 0)) |
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
800 (while colors |
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
801 (face-register-tty-color (car colors) i) |
de7cab1fe991
(command-line): Don't register default colors for
Eli Zaretskii <eliz@gnu.org>
parents:
25055
diff
changeset
|
802 (setq colors (cdr colors) i (1+ i))))) |
24980
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
803 |
322 | 804 ;; Load library for our terminal type. |
805 ;; User init file can set term-file-prefix to nil to prevent this. | |
806 (and term-file-prefix (not noninteractive) (not window-system) | |
807 (let ((term (getenv "TERM")) | |
808 hyphend) | |
809 (while (and term | |
810 (not (load (concat term-file-prefix term) t t))) | |
811 ;; Strip off last hyphen and what follows, then try again | |
812 (if (setq hyphend (string-match "[-_][^-_]+$" term)) | |
813 (setq term (substring term 0 hyphend)) | |
814 (setq term nil))))) | |
815 | |
326 | 816 ;; Process the remaining args. |
322 | 817 (command-line-1 (cdr command-line-args)) |
818 | |
819 ;; If -batch, terminate after processing the command options. | |
820 (if noninteractive (kill-emacs t))) | |
821 | |
19927
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
822 (defcustom initial-scratch-message "\ |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
823 This buffer is for notes you don't want to save, and for Lisp evaluation. |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
824 If you want to create a file, visit that file with C-x C-f, |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
825 then enter the text in that file's own buffer. |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
826 |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
827 " |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
828 "Initial message displayed in *scratch* buffer at startup. |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
829 If this is nil, no message will be displayed." |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
830 :type 'string) |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
831 |
322 | 832 (defun command-line-1 (command-line-args-left) |
5109
062da10a4a6b
(command-line): Set init-file-had-error to t or nil.
Richard M. Stallman <rms@gnu.org>
parents:
5024
diff
changeset
|
833 (or noninteractive (input-pending-p) init-file-had-error |
5930
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
834 (and inhibit-startup-echo-area-message |
22475
3bd923346a65
(command-line-1): Check that user-init-file non-nil.
Richard M. Stallman <rms@gnu.org>
parents:
22429
diff
changeset
|
835 user-init-file |
18294 | 836 (or (and (get 'inhibit-startup-echo-area-message 'saved-value) |
837 (equal inhibit-startup-echo-area-message | |
5931
7008ece592cb
(command-line-1): Improve previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5930
diff
changeset
|
838 (if (string= init-file-user "") |
7008ece592cb
(command-line-1): Improve previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5930
diff
changeset
|
839 (user-login-name) |
7008ece592cb
(command-line-1): Improve previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5930
diff
changeset
|
840 init-file-user))) |
18294 | 841 ;; Wasn't set with custom; see if .emacs has a setq. |
842 (let ((buffer (get-buffer-create " *temp*"))) | |
843 (prog1 | |
844 (condition-case nil | |
845 (save-excursion | |
846 (set-buffer buffer) | |
847 (insert-file-contents user-init-file) | |
848 (re-search-forward | |
849 (concat | |
850 "([ \t\n]*setq[ \t\n]+" | |
851 "inhibit-startup-echo-area-message[ \t\n]+" | |
852 (regexp-quote | |
853 (prin1-to-string | |
854 (if (string= init-file-user "") | |
855 (user-login-name) | |
856 init-file-user))) | |
857 "[ \t\n]*)") | |
858 nil t)) | |
859 (error nil)) | |
860 (kill-buffer buffer))))) | |
5930
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
861 (message (if (eq (key-binding "\C-h\C-p") 'describe-project) |
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
862 "For information about the GNU Project and its goals, type C-h C-p." |
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
863 (substitute-command-keys |
3cfd09c8ba8e
(inhibit-startup-echo-area-message): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5481
diff
changeset
|
864 "For information about the GNU Project and its goals, type \\[describe-project].")))) |
24980
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
865 (when (and (not noninteractive) |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
866 (memq window-system '(x w32))) |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
867 (make-mode-line-mouse-sensitive)) |
322 | 868 (if (null command-line-args-left) |
869 (cond ((and (not inhibit-startup-message) (not noninteractive) | |
870 ;; Don't clobber a non-scratch buffer if init file | |
871 ;; has selected it. | |
19222
0fda8fa5865a
(command-line-1): Don't let type-ahead inhibit the
Richard M. Stallman <rms@gnu.org>
parents:
19065
diff
changeset
|
872 (string= (buffer-name) "*scratch*")) |
322 | 873 ;; If there are no switches to process, we might as well |
874 ;; run this hook now, and there may be some need to do it | |
875 ;; before doing any output. | |
876 (and term-setup-hook | |
877 (run-hooks 'term-setup-hook)) | |
878 ;; Don't let the hook be run twice. | |
879 (setq term-setup-hook nil) | |
2869
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
880 |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
881 ;; It's important to notice the user settings before we |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
882 ;; display the startup message; otherwise, the settings |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
883 ;; won't take effect until the user gives the first |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
884 ;; keystroke, and that's distracting. |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
885 (if (fboundp 'frame-notice-user-settings) |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
886 (frame-notice-user-settings)) |
d370b253473b
* startup.el (normal-top-level, command-line, command-line-1):
Jim Blandy <jimb@redhat.com>
parents:
2761
diff
changeset
|
887 |
322 | 888 (and window-setup-hook |
889 (run-hooks 'window-setup-hook)) | |
890 (setq window-setup-hook nil) | |
7658
c06b9bcb12e7
(command-line-1): Precompute menu bar before startup msg.
Richard M. Stallman <rms@gnu.org>
parents:
7509
diff
changeset
|
891 ;; Do this now to avoid an annoying delay if the user |
c06b9bcb12e7
(command-line-1): Precompute menu bar before startup msg.
Richard M. Stallman <rms@gnu.org>
parents:
7509
diff
changeset
|
892 ;; clicks the menu bar during the sit-for. |
24980
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
893 (when (memq window-system '(x w32)) |
54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
Gerd Moellmann <gerd@gnu.org>
parents:
24923
diff
changeset
|
894 (precompute-menubar-bindings)) |
7658
c06b9bcb12e7
(command-line-1): Precompute menu bar before startup msg.
Richard M. Stallman <rms@gnu.org>
parents:
7509
diff
changeset
|
895 (setq menubar-bindings-done t) |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
896 (when (= (buffer-size) 0) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
897 (let ((buffer-undo-list t)) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
898 (unwind-protect |
19222
0fda8fa5865a
(command-line-1): Don't let type-ahead inhibit the
Richard M. Stallman <rms@gnu.org>
parents:
19065
diff
changeset
|
899 (when (not (input-pending-p)) |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
900 (goto-char (point-max)) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
901 ;; The convention for this piece of code is that |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
902 ;; each piece of output starts with one or two newlines |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
903 ;; and does not end with any newlines. |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
904 (insert "Welcome to GNU Emacs") |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
905 (if (eq system-type 'gnu/linux) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
906 (insert ", one component of a Linux-based GNU system.")) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
907 (insert "\n") |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
908 (if (assq 'display (frame-parameters)) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
909 (progn |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
910 (insert "\ |
22632
187c9bf1aab6
(command-line) <handling LANG>: Change 9 to 5, not 5 to 9.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
911 The menu bar and scroll bar are sufficient for basic editing with the mouse. |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
912 |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
913 Useful Files menu items: |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
914 Exit Emacs (or type Control-x followed by Control-c) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
915 Recover Session recover files you were editing before a crash |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
916 |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
917 Important Help menu items: |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
918 Emacs Tutorial Learn-by-doing tutorial for using Emacs efficiently. |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
919 \(Non)Warranty GNU Emacs comes with ABSOLUTELY NO WARRANTY |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
920 Copying Conditions Conditions for redistributing and changing Emacs. |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
921 Getting New Versions How to obtain the latest version of Emacs. |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
922 ") |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
923 (insert "\n\n" (emacs-version) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
924 " |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
925 Copyright (C) 1999 Free Software Foundation, Inc.")) |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
926 ;; If keys have their default meanings, |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
927 ;; use precomputed string to save lots of time. |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
928 (if (and (eq (key-binding "\C-h") 'help-command) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
929 (eq (key-binding "\C-xu") 'advertised-undo) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
930 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-emacs) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
931 (eq (key-binding "\C-ht") 'help-with-tutorial) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
932 (eq (key-binding "\C-hi") 'info) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
933 (eq (key-binding "\C-h\C-n") 'view-emacs-news)) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
934 (insert " |
15997
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
935 Get help C-h (Hold down CTRL and press h) |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
936 Undo changes C-x u Exit Emacs C-x C-c |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
937 Get a tutorial C-h t Use Info to read docs C-h i") |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
938 (insert (substitute-command-keys |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
939 (format "\n |
15997
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
940 Get help %s |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
941 Undo changes \\[advertised-undo] |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
942 Exit Emacs \\[save-buffers-kill-emacs] |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
943 Get a tutorial \\[help-with-tutorial] |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
944 Use Info to read docs \\[info]" |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
945 (let ((where (where-is-internal |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
946 'help-command nil t))) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
947 (if where |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
948 (key-description where) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
949 "M-x help")))))) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
950 ;; Say how to use the menu bar |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
951 ;; if that is not with the mouse. |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
952 (if (and (eq (key-binding "\M-`") 'tmm-menubar) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
953 (eq (key-binding [f10]) 'tmm-menubar)) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
954 (insert " |
15997
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
955 Activate menubar F10 or ESC ` or M-`") |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
956 (insert (substitute-command-keys " |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
957 Activate menubar \\[tmm-menubar]"))) |
322 | 958 |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
959 ;; Windows and MSDOS (currently) do not count as |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
960 ;; window systems, but do have mouse support. |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
961 (if window-system |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
962 (insert " |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
963 Mode-specific menu C-mouse-3 (third button, with CTRL)")) |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
964 ;; Many users seem to have problems with these. |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
965 (insert " |
15997
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
966 \(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key. |
647b8cab9d9a
(command-line-1): Rearrange initial screen.
Richard M. Stallman <rms@gnu.org>
parents:
15647
diff
changeset
|
967 If you have no Meta key, you may instead type ESC followed by the character.)") |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
968 (and auto-save-list-file-prefix |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
969 (directory-files |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
970 (file-name-directory auto-save-list-file-prefix) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
971 nil |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
972 (concat "\\`" |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
973 (regexp-quote (file-name-nondirectory |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
974 auto-save-list-file-prefix))) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
975 t) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
976 (insert "\n\nIf an Emacs session crashed recently, " |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
977 "type M-x recover-session RET\nto recover" |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
978 " the files you were editing.")) |
13542
e0d71654a95f
(command-line-1): Reorganize the initial help output.
Richard M. Stallman <rms@gnu.org>
parents:
13524
diff
changeset
|
979 |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
980 (insert "\n\n" (emacs-version) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
981 " |
24198
ee8046b6187d
(command-line-1): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24138
diff
changeset
|
982 Copyright (C) 1999 Free Software Foundation, Inc.") |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
983 (if (and (eq (key-binding "\C-h\C-c") 'describe-copying) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
984 (eq (key-binding "\C-h\C-d") 'describe-distribution) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
985 (eq (key-binding "\C-h\C-w") 'describe-no-warranty)) |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
986 (insert |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
987 "\n |
322 | 988 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details. |
24476
80cc02242a00
(command-line-1): Improve startup msg.
Karl Heuer <kwzh@gnu.org>
parents:
24397
diff
changeset
|
989 Emacs is Free Software--Free as in Freedom--so you can redistribute copies |
80cc02242a00
(command-line-1): Improve startup msg.
Karl Heuer <kwzh@gnu.org>
parents:
24397
diff
changeset
|
990 of Emacs and modify it; type C-h C-c to see the conditions. |
322 | 991 Type C-h C-d for information on getting the latest version.") |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
992 (insert (substitute-command-keys |
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
993 "\n |
322 | 994 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details. |
24476
80cc02242a00
(command-line-1): Improve startup msg.
Karl Heuer <kwzh@gnu.org>
parents:
24397
diff
changeset
|
995 Emacs is Free Software--Free as in Freedom--so you can redistribute copies |
80cc02242a00
(command-line-1): Improve startup msg.
Karl Heuer <kwzh@gnu.org>
parents:
24397
diff
changeset
|
996 of Emacs and modify it; type \\[describe-copying] to see the conditions. |
20695
c67b70bc40d9
(command-line-1): Add alternate startup message
Richard M. Stallman <rms@gnu.org>
parents:
20063
diff
changeset
|
997 Type \\[describe-distribution] for information on getting the latest version.")))) |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
998 (goto-char (point-min)) |
12764
69dcdd99fd8d
(command-line-1): Mention recover-session if there's a .saves file.
Richard M. Stallman <rms@gnu.org>
parents:
12563
diff
changeset
|
999 |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
1000 (set-buffer-modified-p nil) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
1001 (sit-for 120)) |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
1002 (with-current-buffer (get-buffer "*scratch*") |
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
1003 (erase-buffer) |
19927
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
1004 (and initial-scratch-message |
962303f5f565
(normal-top-level-add-to-load-path):
Richard M. Stallman <rms@gnu.org>
parents:
19813
diff
changeset
|
1005 (insert initial-scratch-message)) |
18392
24c1f9256352
(command-line-1): Don't display startup message
Richard M. Stallman <rms@gnu.org>
parents:
18295
diff
changeset
|
1006 (set-buffer-modified-p nil))))))) |
10324
82efaa5a2567
(command-line-1): Pause between init file error
Richard M. Stallman <rms@gnu.org>
parents:
10285
diff
changeset
|
1007 ;; Delay 2 seconds after the init file error message |
82efaa5a2567
(command-line-1): Pause between init file error
Richard M. Stallman <rms@gnu.org>
parents:
10285
diff
changeset
|
1008 ;; was displayed, so user can read it. |
82efaa5a2567
(command-line-1): Pause between init file error
Richard M. Stallman <rms@gnu.org>
parents:
10285
diff
changeset
|
1009 (if init-file-had-error |
82efaa5a2567
(command-line-1): Pause between init file error
Richard M. Stallman <rms@gnu.org>
parents:
10285
diff
changeset
|
1010 (sit-for 2)) |
7022
5635564a3064
(command-line-default-directory): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6980
diff
changeset
|
1011 (let ((dir command-line-default-directory) |
322 | 1012 (file-count 0) |
1013 first-file-buffer | |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1014 tem |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1015 just-files ;; t if this follows the magic -- option. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1016 ;; This includes our standard options' long versions |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1017 ;; and long versions of what's on command-switch-alist. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1018 (longopts |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1019 (append '(("--funcall") ("--load") ("--insert") ("--kill") |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1020 ("--directory") ("--eval") ("--find-file") ("--visit")) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1021 (mapcar '(lambda (elt) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1022 (list (concat "-" (car elt)))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1023 command-switch-alist))) |
322 | 1024 (line 0)) |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1025 |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1026 ;; Add the long X options to longopts. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1027 (setq tem command-line-x-option-alist) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1028 (while tem |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1029 (if (string-match "^--" (car (car tem))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1030 (setq longopts (cons (list (car (car tem))) longopts))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1031 (setq tem (cdr tem))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1032 |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1033 ;; Loop, processing options. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1034 (while (and command-line-args-left) |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1035 (let* ((argi (car command-line-args-left)) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1036 (orig-argi argi) |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1037 argval completion |
11625
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1038 ;; List of directories specified in -L/--directory, |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1039 ;; in reverse of the order specified. |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1040 extra-load-path |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1041 (initial-load-path load-path)) |
322 | 1042 (setq command-line-args-left (cdr command-line-args-left)) |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1043 |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1044 ;; Do preliminary decoding of the option. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1045 (if just-files |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1046 ;; After --, don't look for options; treat all args as files. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1047 (setq argi "") |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1048 ;; Convert long options to ordinary options |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1049 ;; and separate out an attached option argument into argval. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1050 (if (string-match "^--[^=]*=" argi) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1051 (setq argval (substring argi (match-end 0)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1052 argi (substring argi 0 (1- (match-end 0))))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1053 (if (equal argi "--") |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1054 (setq completion nil) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1055 (setq completion (try-completion argi longopts))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1056 (if (eq completion t) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1057 (setq argi (substring argi 1)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1058 (if (stringp completion) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1059 (let ((elt (assoc completion longopts))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1060 (or elt |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1061 (error "Option `%s' is ambiguous" argi)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1062 (setq argi (substring (car elt) 1))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1063 (setq argval nil argi orig-argi)))) |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1064 |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1065 ;; Execute the option. |
322 | 1066 (cond ((setq tem (assoc argi command-switch-alist)) |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1067 (if argval |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1068 (let ((command-line-args-left |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1069 (cons argval command-line-args-left))) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1070 (funcall (cdr tem) argi)) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1071 (funcall (cdr tem) argi))) |
322 | 1072 ((or (string-equal argi "-f") ;what the manual claims |
1073 (string-equal argi "-funcall") | |
1074 (string-equal argi "-e")) ; what the source used to say | |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1075 (if argval |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1076 (setq tem (intern argval)) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1077 (setq tem (intern (car command-line-args-left))) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1078 (setq command-line-args-left (cdr command-line-args-left))) |
10444
c6bc0c89d0ce
(command-line-1): Handle -f with kbd macro.
Richard M. Stallman <rms@gnu.org>
parents:
10324
diff
changeset
|
1079 (if (arrayp (symbol-function tem)) |
c6bc0c89d0ce
(command-line-1): Handle -f with kbd macro.
Richard M. Stallman <rms@gnu.org>
parents:
10324
diff
changeset
|
1080 (command-execute tem) |
c6bc0c89d0ce
(command-line-1): Handle -f with kbd macro.
Richard M. Stallman <rms@gnu.org>
parents:
10324
diff
changeset
|
1081 (funcall tem))) |
12849
ce41e6df8986
(command-line-1): Add option --eval to evalute an
Richard M. Stallman <rms@gnu.org>
parents:
12796
diff
changeset
|
1082 ((string-equal argi "-eval") |
ce41e6df8986
(command-line-1): Add option --eval to evalute an
Richard M. Stallman <rms@gnu.org>
parents:
12796
diff
changeset
|
1083 (if argval |
ce41e6df8986
(command-line-1): Add option --eval to evalute an
Richard M. Stallman <rms@gnu.org>
parents:
12796
diff
changeset
|
1084 (setq tem argval) |
ce41e6df8986
(command-line-1): Add option --eval to evalute an
Richard M. Stallman <rms@gnu.org>
parents:
12796
diff
changeset
|
1085 (setq tem (car command-line-args-left)) |
ce41e6df8986
(command-line-1): Add option --eval to evalute an
Richard M. Stallman <rms@gnu.org>
parents:
12796
diff
changeset
|
1086 (setq command-line-args-left (cdr command-line-args-left))) |
13072
c5e3d029241d
(command-line-1): --eval: Don't print the value.
Erik Naggum <erik@naggum.no>
parents:
12849
diff
changeset
|
1087 (eval (read tem))) |
11625
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1088 ;; Set the default directory as specified in -L. |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1089 ((or (string-equal argi "-L") |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1090 (string-equal argi "-directory")) |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1091 (if argval |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1092 (setq tem argval) |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1093 (setq tem (car command-line-args-left) |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1094 command-line-args-left (cdr command-line-args-left))) |
14386
4e5b28d28a5f
(command-line-normalize-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14283
diff
changeset
|
1095 (setq tem (command-line-normalize-file-name tem)) |
11625
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1096 (setq extra-load-path |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1097 (cons (expand-file-name tem) extra-load-path)) |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1098 (setq load-path (append (nreverse extra-load-path) |
927b52de7ed2
(command-line-1): Implement -L/--directory option.
Richard M. Stallman <rms@gnu.org>
parents:
11620
diff
changeset
|
1099 initial-load-path))) |
322 | 1100 ((or (string-equal argi "-l") |
1101 (string-equal argi "-load")) | |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1102 (if argval |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1103 (setq tem argval) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1104 (setq tem (car command-line-args-left) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1105 command-line-args-left (cdr command-line-args-left))) |
14386
4e5b28d28a5f
(command-line-normalize-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14283
diff
changeset
|
1106 (let ((file (command-line-normalize-file-name tem))) |
322 | 1107 ;; Take file from default dir if it exists there; |
1108 ;; otherwise let `load' search for it. | |
1109 (if (file-exists-p (expand-file-name file)) | |
1110 (setq file (expand-file-name file))) | |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1111 (load file nil t))) |
3072
a655e32e6270
* startup.el (command-line-1): Don't handle `-i'. We're
Jim Blandy <jimb@redhat.com>
parents:
2869
diff
changeset
|
1112 ((string-equal argi "-insert") |
10028
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1113 (if argval |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1114 (setq tem argval) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1115 (setq tem (car command-line-args-left) |
55f7d03ce918
(command-line-1): Handle long options --funcall, --load, --insert, --kill.
Richard M. Stallman <rms@gnu.org>
parents:
9778
diff
changeset
|
1116 command-line-args-left (cdr command-line-args-left))) |
13073
840a4e0ec0a6
(command-line-1): --insert: Don't complain on --insert=file.
Erik Naggum <erik@naggum.no>
parents:
13072
diff
changeset
|
1117 (or (stringp tem) |
840a4e0ec0a6
(command-line-1): --insert: Don't complain on --insert=file.
Erik Naggum <erik@naggum.no>
parents:
13072
diff
changeset
|
1118 (error "File name omitted from `-insert' option")) |
14386
4e5b28d28a5f
(command-line-normalize-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14283
diff
changeset
|
1119 (insert-file-contents (command-line-normalize-file-name tem))) |
322 | 1120 ((string-equal argi "-kill") |
1121 (kill-emacs t)) | |
1122 ((string-match "^\\+[0-9]+\\'" argi) | |
1123 (setq line (string-to-int argi))) | |
13889
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
1124 ((setq tem (assoc argi command-line-x-option-alist)) |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
1125 ;; Ignore X-windows options and their args if not using X. |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
1126 (setq command-line-args-left |
1c65a1e5f099
(command-line-x-option-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13811
diff
changeset
|
1127 (nthcdr (nth 1 tem) command-line-args-left))) |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1128 ((or (string-equal argi "-find-file") |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1129 (string-equal argi "-visit")) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1130 ;; An explicit option to specify visiting a file. |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1131 (setq file-count (1+ file-count)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1132 (let ((file |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1133 (expand-file-name |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1134 (command-line-normalize-file-name orig-argi) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1135 dir))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1136 (if (= file-count 1) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1137 (setq first-file-buffer (find-file file)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1138 (find-file-other-window file))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1139 (or (zerop line) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1140 (goto-line line)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1141 (setq line 0)) |
16092
439578110829
(command-line, command-line-1):
Richard M. Stallman <rms@gnu.org>
parents:
15997
diff
changeset
|
1142 ((equal argi "--") |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1143 (setq just-files t)) |
322 | 1144 (t |
1145 ;; We have almost exhausted our options. See if the | |
1146 ;; user has made any other command-line options available | |
1147 (let ((hooks command-line-functions);; lrs 7/31/89 | |
1148 (did-hook nil)) | |
1149 (while (and hooks | |
1150 (not (setq did-hook (funcall (car hooks))))) | |
1151 (setq hooks (cdr hooks))) | |
1152 (if (not did-hook) | |
1153 ;; Ok, presume that the argument is a file name | |
1154 (progn | |
13524
0d24a33d8bba
(command-line): Don't reject unknown args here.
Richard M. Stallman <rms@gnu.org>
parents:
13479
diff
changeset
|
1155 (if (string-match "\\`-" argi) |
0d24a33d8bba
(command-line): Don't reject unknown args here.
Richard M. Stallman <rms@gnu.org>
parents:
13479
diff
changeset
|
1156 (error "Unknown option `%s'" argi)) |
322 | 1157 (setq file-count (1+ file-count)) |
16745
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1158 (let ((file |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1159 (expand-file-name |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1160 (command-line-normalize-file-name orig-argi) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1161 dir))) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1162 (if (= file-count 1) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1163 (setq first-file-buffer (find-file file)) |
1975baf7f996
(command-line-1): Handle --visit and --find.
Richard M. Stallman <rms@gnu.org>
parents:
16687
diff
changeset
|
1164 (find-file-other-window file))) |
322 | 1165 (or (zerop line) |
1166 (goto-line line)) | |
1167 (setq line 0)))))))) | |
1168 ;; If 3 or more files visited, and not all visible, | |
1169 ;; show user what they all are. | |
16836
ba46af9fd00d
(command-line-1): Don't run buffer-menu if in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
16745
diff
changeset
|
1170 (and (> file-count 2) |
ba46af9fd00d
(command-line-1): Don't run buffer-menu if in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
16745
diff
changeset
|
1171 (not noninteractive) |
ba46af9fd00d
(command-line-1): Don't run buffer-menu if in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
16745
diff
changeset
|
1172 (or (get-buffer-window first-file-buffer) |
ba46af9fd00d
(command-line-1): Don't run buffer-menu if in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
16745
diff
changeset
|
1173 (progn (other-window 1) |
ba46af9fd00d
(command-line-1): Don't run buffer-menu if in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
16745
diff
changeset
|
1174 (buffer-menu))))))) |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
1175 |
14386
4e5b28d28a5f
(command-line-normalize-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14283
diff
changeset
|
1176 (defun command-line-normalize-file-name (file) |
4e5b28d28a5f
(command-line-normalize-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14283
diff
changeset
|
1177 "Collapse multiple slashes to one, to handle non-Emacs file names." |
14729
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1178 (save-match-data |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1179 ;; Use arg 1 so that we don't collapse // at the start of the file name. |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1180 ;; That is significant on some systems. |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1181 ;; However, /// at the beginning is supposed to mean just /, not //. |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1182 (if (string-match "^///+" file) |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1183 (setq file (replace-match "/" t t file))) |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1184 (while (string-match "//+" file 1) |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1185 (setq file (replace-match "/" t t file))) |
b072589a6e57
(command-line-normalize-file-name): Do save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
14716
diff
changeset
|
1186 file)) |
14386
4e5b28d28a5f
(command-line-normalize-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14283
diff
changeset
|
1187 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
650
diff
changeset
|
1188 ;;; startup.el ends here |