Mercurial > emacs
annotate src/emacs.c @ 14659:7669c19beda8
Comment change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 24 Feb 1996 04:43:05 +0000 |
| parents | 37107ad125f0 |
| children | 0e3add8490d0 |
| rev | line source |
|---|---|
| 284 | 1 /* Fully extensible Emacs, running on Unix, intended for GNU. |
| 11235 | 2 Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc. |
| 284 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
| 284 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 | |
| 21 #include <signal.h> | |
| 22 #include <errno.h> | |
| 23 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4632
diff
changeset
|
24 #include <config.h> |
| 284 | 25 #include <stdio.h> |
| 26 | |
| 27 #include <sys/types.h> | |
| 28 #include <sys/file.h> | |
| 29 | |
| 30 #ifdef VMS | |
| 31 #include <ssdef.h> | |
| 32 #endif | |
| 33 | |
| 34 #ifdef BSD | |
| 35 #include <sys/ioctl.h> | |
| 36 #endif | |
| 37 | |
| 38 #include "lisp.h" | |
| 39 #include "commands.h" | |
| 1284 | 40 #include "intervals.h" |
| 284 | 41 |
|
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
42 #include "systty.h" |
| 14502 | 43 #include "blockinput.h" |
|
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
44 #include "syssignal.h" |
| 4589 | 45 #include "process.h" |
| 554 | 46 |
| 284 | 47 #ifndef O_RDWR |
| 48 #define O_RDWR 2 | |
| 49 #endif | |
| 50 | |
|
6027
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
51 extern void malloc_warning (); |
|
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
52 extern void set_time_zone_rule (); |
|
6027
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
53 extern char *index (); |
|
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
54 extern char *strerror (); |
|
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
55 |
| 284 | 56 /* Command line args from shell, as list of strings */ |
| 57 Lisp_Object Vcommand_line_args; | |
| 58 | |
|
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
59 /* The name under which Emacs was invoked, with any leading directory |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
60 names discarded. */ |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
61 Lisp_Object Vinvocation_name; |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
62 |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
63 /* The directory name from which Emacs was invoked. */ |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
64 Lisp_Object Vinvocation_directory; |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
65 |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
66 /* The directory name in which to find subdirs such as lisp and etc. |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
67 nil means get them only from PATH_LOADSEARCH. */ |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
68 Lisp_Object Vinstallation_directory; |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
69 |
| 732 | 70 /* Hook run by `kill-emacs' before it does really anything. */ |
| 71 Lisp_Object Vkill_emacs_hook; | |
| 72 | |
| 284 | 73 /* Set nonzero after Emacs has started up the first time. |
| 74 Prevents reinitialization of the Lisp world and keymaps | |
| 75 on subsequent starts. */ | |
| 76 int initialized; | |
| 77 | |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
78 /* Variable whose value is symbol giving operating system type. */ |
| 284 | 79 Lisp_Object Vsystem_type; |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
80 |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
81 /* Variable whose value is string giving configuration built for. */ |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
82 Lisp_Object Vsystem_configuration; |
|
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
83 |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
84 /* Variable whose value is string giving configuration options, |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
85 for use when reporting bugs. */ |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
86 Lisp_Object Vsystem_configuration_options; |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
87 |
| 284 | 88 /* If non-zero, emacs should not attempt to use an window-specific code, |
| 89 but instead should use the virtual terminal under which it was started */ | |
| 90 int inhibit_window_system; | |
| 91 | |
|
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
92 /* If nonzero, set Emacs to run at this priority. This is also used |
|
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
93 in child_setup and sys_suspend to make sure subshells run at normal |
|
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
94 priority; Those functions have their own extern declaration. */ |
|
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
95 int emacs_priority; |
|
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
96 |
|
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
10029
diff
changeset
|
97 /* If non-zero a filter or a sentinel is running. Tested to save the match |
|
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
10029
diff
changeset
|
98 data on the first attempt to change it inside asynchronous code. */ |
|
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
10029
diff
changeset
|
99 int running_asynch_code; |
|
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
10029
diff
changeset
|
100 |
|
6863
2aab30ba72b4
(inherited_pgroup): Conditionalize on BSD_PGRPS.
Richard M. Stallman <rms@gnu.org>
parents:
6814
diff
changeset
|
101 #ifdef BSD_PGRPS |
|
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
102 /* See sysdep.c. */ |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
103 extern int inherited_pgroup; |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
104 #endif |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
105 |
| 284 | 106 #ifdef HAVE_X_WINDOWS |
| 107 /* If non-zero, -d was specified, meaning we're using some window system. */ | |
| 108 int display_arg; | |
| 109 #endif | |
| 110 | |
| 111 /* An address near the bottom of the stack. | |
| 112 Tells GC how to save a copy of the stack. */ | |
| 113 char *stack_bottom; | |
| 114 | |
|
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
115 #ifdef HAVE_WINDOW_SYSTEM |
| 284 | 116 extern Lisp_Object Vwindow_system; |
|
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
117 #endif /* HAVE_WINDOW_SYSTEM */ |
| 284 | 118 |
|
11720
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
119 extern Lisp_Object Vauto_save_list_file_name; |
|
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
120 |
| 284 | 121 #ifdef USG_SHARED_LIBRARIES |
| 122 /* If nonzero, this is the place to put the end of the writable segment | |
| 123 at startup. */ | |
| 124 | |
| 125 unsigned int bss_end = 0; | |
| 126 #endif | |
| 127 | |
| 128 /* Nonzero means running Emacs without interactive terminal. */ | |
| 129 | |
| 130 int noninteractive; | |
| 131 | |
| 132 /* Value of Lisp variable `noninteractive'. | |
| 133 Normally same as C variable `noninteractive' | |
| 134 but nothing terrible happens if user sets this one. */ | |
| 135 | |
| 136 int noninteractive1; | |
|
7869
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
137 |
|
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
138 /* Save argv and argc. */ |
|
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
139 char **initial_argv; |
|
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
140 int initial_argc; |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
141 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
142 static void sort_args (); |
| 284 | 143 |
| 144 /* Signal code for the fatal signal that was received */ | |
| 145 int fatal_error_code; | |
| 146 | |
| 147 /* Nonzero if handling a fatal error already */ | |
| 148 int fatal_error_in_progress; | |
| 149 | |
| 150 /* Handle bus errors, illegal instruction, etc. */ | |
| 505 | 151 SIGTYPE |
| 284 | 152 fatal_error_signal (sig) |
| 153 int sig; | |
| 154 { | |
| 155 fatal_error_code = sig; | |
| 156 signal (sig, SIG_DFL); | |
| 157 | |
|
14497
002c4d6b3e28
(fatal_error_signal): Do TOTALLY_UNBLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
14399
diff
changeset
|
158 TOTALLY_UNBLOCK_INPUT; |
|
002c4d6b3e28
(fatal_error_signal): Do TOTALLY_UNBLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
14399
diff
changeset
|
159 |
| 284 | 160 /* If fatal error occurs in code below, avoid infinite recursion. */ |
|
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
161 if (! fatal_error_in_progress) |
|
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
162 { |
|
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
163 fatal_error_in_progress = 1; |
| 284 | 164 |
|
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
165 shut_down_emacs (sig, 0, Qnil); |
|
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
166 } |
| 284 | 167 |
| 168 #ifdef VMS | |
| 169 LIB$STOP (SS$_ABORT); | |
| 170 #else | |
|
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
171 /* Signal the same code; this time it will really be fatal. |
|
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
172 Remember that since we're in a signal handler, the signal we're |
|
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
173 going to send is probably blocked, so we have to unblock it if we |
|
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
174 want to really receive it. */ |
|
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
175 #ifndef MSDOS |
|
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
176 sigunblock (sigmask (fatal_error_code)); |
|
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
177 #endif |
| 284 | 178 kill (getpid (), fatal_error_code); |
| 179 #endif /* not VMS */ | |
| 180 } | |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
181 |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
182 #ifdef SIGDANGER |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
183 |
| 6171 | 184 /* Handler for SIGDANGER. */ |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
185 SIGTYPE |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
186 memory_warning_signal (sig) |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
187 int sig; |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
188 { |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
189 signal (sig, memory_warning_signal); |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
190 |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
191 malloc_warning ("Operating system warns that virtual memory is running low.\n"); |
|
7223
38931e897e56
(memory_warning_signal): Call force_auto_save_soon.
Richard M. Stallman <rms@gnu.org>
parents:
7164
diff
changeset
|
192 |
|
38931e897e56
(memory_warning_signal): Call force_auto_save_soon.
Richard M. Stallman <rms@gnu.org>
parents:
7164
diff
changeset
|
193 /* It might be unsafe to call do_auto_save now. */ |
|
38931e897e56
(memory_warning_signal): Call force_auto_save_soon.
Richard M. Stallman <rms@gnu.org>
parents:
7164
diff
changeset
|
194 force_auto_save_soon (); |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
195 } |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
196 #endif |
| 284 | 197 |
| 198 /* Code for dealing with Lisp access to the Unix command line */ | |
| 199 | |
| 200 static | |
| 201 init_cmdargs (argc, argv, skip_args) | |
| 202 int argc; | |
| 203 char **argv; | |
| 204 int skip_args; | |
| 205 { | |
| 206 register int i; | |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
207 Lisp_Object name, dir; |
| 284 | 208 |
|
7869
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
209 initial_argv = argv; |
|
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
210 initial_argc = argc; |
|
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
211 |
|
2313
ddab91a375d8
(init_cmdargs): Fix simple bug in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2279
diff
changeset
|
212 Vinvocation_name = Ffile_name_nondirectory (build_string (argv[0])); |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
213 Vinvocation_directory = Ffile_name_directory (build_string (argv[0])); |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
214 /* If we got no directory in argv[0], search PATH to find where |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
215 Emacs actually came from. */ |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
216 if (NILP (Vinvocation_directory)) |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
217 { |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
218 Lisp_Object found; |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
219 int yes = openp (Vexec_path, Vinvocation_name, |
| 4589 | 220 EXEC_SUFFIXES, &found, 1); |
|
4632
48634fa190aa
(init_cmdargs): Check openp result for 1, not != 0.
Richard M. Stallman <rms@gnu.org>
parents:
4619
diff
changeset
|
221 if (yes == 1) |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
222 Vinvocation_directory = Ffile_name_directory (found); |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
223 } |
|
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
224 |
|
12383
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
225 if (!NILP (Vinvocation_directory) |
|
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
226 && NILP (Ffile_name_absolute_p (Vinvocation_directory))) |
|
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
227 /* Emacs was started with relative path, like ./emacs */ |
|
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
228 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil); |
|
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
229 |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
230 Vinstallation_directory = Qnil; |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
231 |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
232 if (!NILP (Vinvocation_directory)) |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
233 { |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
234 dir = Vinvocation_directory; |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
235 name = Fexpand_file_name (Vinvocation_name, dir); |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
236 while (1) |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
237 { |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
238 Lisp_Object tem, lib_src_exists; |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
239 Lisp_Object etc_exists, info_exists; |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
240 |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
241 /* See if dir contains subdirs for use by Emacs. |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
242 Check for the ones that would exist in a build directory, |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
243 not including lisp and info. */ |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
244 tem = Fexpand_file_name (build_string ("lib-src"), dir); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
245 lib_src_exists = Ffile_exists_p (tem); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
246 if (!NILP (lib_src_exists)) |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
247 { |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
248 tem = Fexpand_file_name (build_string ("etc"), dir); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
249 etc_exists = Ffile_exists_p (tem); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
250 if (!NILP (etc_exists)) |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
251 { |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
252 Vinstallation_directory |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
253 = Ffile_name_as_directory (dir); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
254 break; |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
255 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
256 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
257 |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
258 /* See if dir's parent contains those subdirs. */ |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
259 tem = Fexpand_file_name (build_string ("../lib-src"), dir); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
260 lib_src_exists = Ffile_exists_p (tem); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
261 if (!NILP (lib_src_exists)) |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
262 { |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
263 tem = Fexpand_file_name (build_string ("../etc"), dir); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
264 etc_exists = Ffile_exists_p (tem); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
265 if (!NILP (etc_exists)) |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
266 { |
|
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
267 tem = Fexpand_file_name (build_string (".."), dir); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
268 Vinstallation_directory |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
269 = Ffile_name_as_directory (tem); |
|
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
270 break; |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
271 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
272 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
273 |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
274 /* If the Emacs executable is actually a link, |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
275 next try the dir that the link points into. */ |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
276 tem = Ffile_symlink_p (name); |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
277 if (!NILP (tem)) |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
278 { |
|
8704
ec7ec0e35e5e
(init_cmdargs): After chasing link, use only the expanded name.
Richard M. Stallman <rms@gnu.org>
parents:
7869
diff
changeset
|
279 name = Fexpand_file_name (tem, dir); |
|
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
280 dir = Ffile_name_directory (name); |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
281 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
282 else |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
283 break; |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
284 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
285 } |
|
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
286 |
| 284 | 287 Vcommand_line_args = Qnil; |
| 288 | |
| 289 for (i = argc - 1; i >= 0; i--) | |
| 290 { | |
| 291 if (i == 0 || i > skip_args) | |
| 292 Vcommand_line_args | |
| 293 = Fcons (build_string (argv[i]), Vcommand_line_args); | |
| 294 } | |
| 295 } | |
|
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
296 |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
297 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0, |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
298 "Return the program name that was used to run Emacs.\n\ |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
299 Any directory names are omitted.") |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
300 () |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
301 { |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
302 return Fcopy_sequence (Vinvocation_name); |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
303 } |
|
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
304 |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
305 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory, |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
306 0, 0, 0, |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
307 "Return the directory name in which the Emacs executable was located") |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
308 () |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
309 { |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
310 return Fcopy_sequence (Vinvocation_directory); |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
311 } |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
312 |
| 284 | 313 |
| 314 #ifdef VMS | |
| 315 #ifdef LINK_CRTL_SHARE | |
|
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
316 #ifdef SHARABLE_LIB_BUG |
| 284 | 317 extern noshare char **environ; |
|
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
318 #endif /* SHARABLE_LIB_BUG */ |
| 284 | 319 #endif /* LINK_CRTL_SHARE */ |
| 320 #endif /* VMS */ | |
| 321 | |
|
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
322 #ifdef HAVE_TZSET |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
323 /* A valid but unlikely value for the TZ environment value. |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
324 It is OK (though a bit slower) if the user actually chooses this value. */ |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
325 static char dump_tz[] = "UtC0"; |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
326 #endif |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
327 |
|
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
328 #ifndef ORDINARY_LINK |
|
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
329 /* We don't include crtbegin.o and crtend.o in the link, |
|
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
330 so these functions and variables might be missed. |
|
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
331 Provide dummy definitions to avoid error. |
|
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
332 (We don't have any real constructors or destructors.) */ |
|
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
333 #ifdef __GNUC__ |
|
6467
53c14a4f9307
(__do_global_ctors, __do_global_ctors_aux)
Richard M. Stallman <rms@gnu.org>
parents:
6428
diff
changeset
|
334 #ifndef GCC_CTORS_IN_LIBC |
|
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
335 __do_global_ctors () |
|
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
336 {} |
|
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
337 __do_global_ctors_aux () |
|
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
338 {} |
|
1074
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
339 __do_global_dtors () |
|
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
340 {} |
|
4619
fdb92f0aa8c7
(__CTOR_LIST__): Don't declare it on Linux.
Richard M. Stallman <rms@gnu.org>
parents:
4589
diff
changeset
|
341 /* Linux has a bug in its library; avoid an error. */ |
|
fdb92f0aa8c7
(__CTOR_LIST__): Don't declare it on Linux.
Richard M. Stallman <rms@gnu.org>
parents:
4589
diff
changeset
|
342 #ifndef LINUX |
|
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
343 char * __CTOR_LIST__[2] = { (char *) (-1), 0 }; |
|
4619
fdb92f0aa8c7
(__CTOR_LIST__): Don't declare it on Linux.
Richard M. Stallman <rms@gnu.org>
parents:
4589
diff
changeset
|
344 #endif |
|
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
345 char * __DTOR_LIST__[2] = { (char *) (-1), 0 }; |
|
6467
53c14a4f9307
(__do_global_ctors, __do_global_ctors_aux)
Richard M. Stallman <rms@gnu.org>
parents:
6428
diff
changeset
|
346 #endif /* GCC_CTORS_IN_LIBC */ |
|
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
347 __main () |
|
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
348 {} |
|
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
349 #endif /* __GNUC__ */ |
|
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
350 #endif /* ORDINARY_LINK */ |
|
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
351 |
| 9094 | 352 /* Test whether the next argument in ARGV matches SSTR or a prefix of |
| 353 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null | |
| 354 (the argument is supposed to have a value) store in *VALPTR either | |
| 355 the next argument or the portion of this one after the equal sign. | |
| 356 ARGV is read starting at position *SKIPPTR; this index is advanced | |
| 357 by the number of arguments used. | |
| 358 | |
| 359 Too bad we can't just use getopt for all of this, but we don't have | |
| 360 enough information to do it right. */ | |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
361 |
| 9094 | 362 static int |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
363 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr) |
| 9094 | 364 char **argv; |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
365 int argc; |
| 9094 | 366 char *sstr; |
| 367 char *lstr; | |
| 368 int minlen; | |
| 369 char **valptr; | |
| 370 int *skipptr; | |
| 371 { | |
| 372 char *p; | |
| 373 int arglen; | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
374 char *arg; |
|
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
375 |
|
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
376 /* Don't access argv[argc]; give up in advance. */ |
|
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
377 if (argc <= *skipptr + 1) |
|
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
378 return 0; |
|
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
379 |
|
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
380 arg = argv[*skipptr+1]; |
| 9094 | 381 if (arg == NULL) |
| 382 return 0; | |
| 383 if (strcmp (arg, sstr) == 0) | |
| 384 { | |
| 385 if (valptr != NULL) | |
| 386 { | |
| 387 *valptr = argv[*skipptr+2]; | |
| 388 *skipptr += 2; | |
| 389 } | |
| 390 else | |
| 391 *skipptr += 1; | |
| 392 return 1; | |
| 393 } | |
| 394 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL | |
| 395 ? p - arg : strlen (arg)); | |
|
10102
339e129f8874
(argmatch): Handle lstr == 0.
Richard M. Stallman <rms@gnu.org>
parents:
10032
diff
changeset
|
396 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0) |
| 9094 | 397 return 0; |
| 398 else if (valptr == NULL) | |
| 399 { | |
| 400 *skipptr += 1; | |
| 401 return 1; | |
| 402 } | |
| 403 else if (p != NULL) | |
| 404 { | |
| 405 *valptr = p+1; | |
| 406 *skipptr += 1; | |
| 407 return 1; | |
| 408 } | |
| 409 else if (argv[*skipptr+2] != NULL) | |
| 410 { | |
| 411 *valptr = argv[*skipptr+2]; | |
| 412 *skipptr += 2; | |
| 413 return 1; | |
| 414 } | |
| 415 else | |
| 416 { | |
| 417 return 0; | |
| 418 } | |
| 419 } | |
| 420 | |
| 284 | 421 /* ARGSUSED */ |
| 422 main (argc, argv, envp) | |
| 423 int argc; | |
| 424 char **argv; | |
| 425 char **envp; | |
| 426 { | |
| 427 char stack_bottom_variable; | |
| 428 int skip_args = 0; | |
| 429 extern int errno; | |
| 430 extern sys_nerr; | |
| 431 | |
|
13617
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
432 #ifdef LINUX_SBRK_BUG |
|
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
433 __sbrk (1); |
|
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
434 #endif |
|
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
435 |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
436 sort_args (argc, argv); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
437 |
|
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
438 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)) |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
439 { |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
440 Lisp_Object tem; |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
441 tem = Fsymbol_value (intern ("emacs-version")); |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
442 if (!STRINGP (tem)) |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
443 { |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
444 fprintf (stderr, "Invalid value of `emacs-version'\n"); |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
445 exit (1); |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
446 } |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
447 else |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
448 { |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
449 printf ("%s\n", XSTRING (tem)->data); |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
450 exit (0); |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
451 } |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
452 } |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
453 |
| 284 | 454 /* Map in shared memory, if we are using that. */ |
| 455 #ifdef HAVE_SHM | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
456 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args)) |
| 284 | 457 { |
| 458 map_in_data (0); | |
| 459 /* The shared memory was just restored, which clobbered this. */ | |
| 460 skip_args = 1; | |
| 461 } | |
| 462 else | |
| 463 { | |
| 464 map_in_data (1); | |
| 465 /* The shared memory was just restored, which clobbered this. */ | |
| 466 skip_args = 0; | |
| 467 } | |
| 468 #endif | |
| 469 | |
|
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
470 #ifdef NeXT |
|
11806
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
471 { |
|
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
472 extern int malloc_cookie; |
|
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
473 /* This helps out unexnext.c. */ |
|
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
474 if (initialized) |
|
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
475 if (malloc_jumpstart (malloc_cookie) != 0) |
|
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
476 printf ("malloc jumpstart failed!\n"); |
|
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
477 } |
|
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
478 #endif /* NeXT */ |
|
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
479 |
| 284 | 480 #ifdef VMS |
| 481 /* If -map specified, map the data file in */ | |
| 9094 | 482 { |
| 483 char *file; | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
484 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args)) |
| 9094 | 485 mapin_data (file); |
| 486 } | |
| 284 | 487 |
| 488 #ifdef LINK_CRTL_SHARE | |
|
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
489 #ifdef SHARABLE_LIB_BUG |
| 284 | 490 /* Bletcherous shared libraries! */ |
| 491 if (!stdin) | |
| 492 stdin = fdopen (0, "r"); | |
| 493 if (!stdout) | |
| 494 stdout = fdopen (1, "w"); | |
| 495 if (!stderr) | |
| 496 stderr = fdopen (2, "w"); | |
| 497 if (!environ) | |
| 498 environ = envp; | |
|
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
499 #endif /* SHARABLE_LIB_BUG */ |
| 284 | 500 #endif /* LINK_CRTL_SHARE */ |
| 501 #endif /* VMS */ | |
| 502 | |
| 503 /* Record (approximately) where the stack begins. */ | |
| 504 stack_bottom = &stack_bottom_variable; | |
| 505 | |
| 506 #ifdef RUN_TIME_REMAP | |
| 507 if (initialized) | |
| 508 run_time_remap (argv[0]); | |
| 509 #endif | |
| 510 | |
| 511 #ifdef USG_SHARED_LIBRARIES | |
| 512 if (bss_end) | |
|
11233
d3b0cf2c3b78
(main): Cast arg to `brk'.
Richard M. Stallman <rms@gnu.org>
parents:
11195
diff
changeset
|
513 brk ((void *)bss_end); |
| 284 | 514 #endif |
| 515 | |
| 516 clearerr (stdin); | |
|
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
517 |
| 284 | 518 #ifndef SYSTEM_MALLOC |
| 519 if (! initialized) | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
520 { |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
521 /* Arrange to get warning messages as memory fills up. */ |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
522 memory_warnings (0, malloc_warning); |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
523 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
524 /* Arrange to disable interrupt input while malloc and friends are |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
525 running. */ |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
526 uninterrupt_malloc (); |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
527 } |
| 284 | 528 #endif /* not SYSTEM_MALLOC */ |
| 529 | |
|
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
530 #ifdef MSDOS |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
531 /* We do all file input/output as binary files. When we need to translate |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
532 newlines, we do that manually. */ |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
533 _fmode = O_BINARY; |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
534 (stdin)->_flag &= ~_IOTEXT; |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
535 (stdout)->_flag &= ~_IOTEXT; |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
536 (stderr)->_flag &= ~_IOTEXT; |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
537 #endif /* MSDOS */ |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
538 |
|
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
539 #ifdef SET_EMACS_PRIORITY |
|
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
540 if (emacs_priority) |
|
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
541 nice (emacs_priority); |
| 284 | 542 setuid (getuid ()); |
|
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
543 #endif /* SET_EMACS_PRIORITY */ |
| 284 | 544 |
|
6778
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
545 #ifdef EXTRA_INITIALIZE |
|
6814
531d6d07096a
(main): Fix typo in prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
6778
diff
changeset
|
546 EXTRA_INITIALIZE; |
|
6778
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
547 #endif |
|
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
548 |
| 284 | 549 inhibit_window_system = 0; |
| 550 | |
| 420 | 551 /* Handle the -t switch, which specifies filename to use as terminal */ |
| 9094 | 552 { |
| 553 char *term; | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
554 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args)) |
| 9094 | 555 { |
| 556 int result; | |
| 557 close (0); | |
| 558 close (1); | |
| 559 result = open (term, O_RDWR, 2 ); | |
| 560 if (result < 0) | |
| 561 { | |
| 562 char *errstring = strerror (errno); | |
| 563 fprintf (stderr, "emacs: %s: %s\n", term, errstring); | |
| 564 exit (1); | |
| 565 } | |
| 566 dup (0); | |
| 567 if (! isatty (0)) | |
| 568 { | |
| 569 fprintf (stderr, "emacs: %s: not a tty\n", term); | |
| 570 exit (1); | |
| 571 } | |
| 572 fprintf (stderr, "Using %s\n", term); | |
|
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
573 #ifdef HAVE_WINDOW_SYSTEM |
| 9094 | 574 inhibit_window_system = 1; /* -t => -nw */ |
| 575 #endif | |
| 576 } | |
| 577 } | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
578 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args)) |
| 9094 | 579 inhibit_window_system = 1; |
| 580 | |
| 581 /* Handle the -batch switch, which means don't do interactive display. */ | |
| 582 noninteractive = 0; | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
583 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args)) |
| 9094 | 584 noninteractive = 1; |
| 585 | |
| 586 /* Handle the --help option, which gives a usage message.. */ | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
587 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args)) |
| 284 | 588 { |
| 9094 | 589 printf ("\ |
| 590 Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\ | |
| 591 [-q] [--no-init-file] [-u user] [--user user] [--debug-init]\n\ | |
| 12533 | 592 [--version] [--no-site-file]\n\ |
| 9094 | 593 [-f func] [--funcall func] [-l file] [--load file] [--insert file]\n\ |
| 12533 | 594 [+linenum] file-to-visit [--kill]\n", argv[0]); |
| 9094 | 595 exit (0); |
| 284 | 596 } |
| 597 | |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
598 #ifdef HAVE_X_WINDOWS |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
599 /* Stupid kludge to catch command-line display spec. We can't |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
600 handle this argument entirely in window system dependent code |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
601 because we don't even know which window system dependent code |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
602 to run until we've recognized this argument. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
603 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
604 char *displayname; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
605 int i; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
606 int count_before = skip_args; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
607 |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
608 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args)) |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
609 display_arg = 1; |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
610 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args)) |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
611 display_arg = 1; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
612 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
613 /* If we have the form --display=NAME, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
614 convert it into -d name. |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
615 This requires inserting a new element into argv. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
616 if (displayname != 0 && skip_args - count_before == 1) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
617 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
618 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2)); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
619 int j; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
620 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
621 for (j = 0; j < count_before + 1; j++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
622 new[j] = argv[j]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
623 new[count_before + 1] = "-d"; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
624 new[count_before + 2] = displayname; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
625 for (j = count_before + 2; j <argc; j++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
626 new[j + 1] = argv[j]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
627 argv = new; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
628 argc++; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
629 } |
|
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
630 /* Change --display to -d, when its arg is separate. */ |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
631 else if (displayname != 0 && skip_args > count_before |
|
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
632 && argv[count_before + 1][1] == '-') |
|
13721
eb5fa0aa172e
(main): Fix args to handle `--display DISPLAY'.
Karl Heuer <kwzh@gnu.org>
parents:
13617
diff
changeset
|
633 argv[count_before + 1] = "-d"; |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
634 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
635 /* Don't actually discard this arg. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
636 skip_args = count_before; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
637 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
638 #endif |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
639 |
|
7788
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
640 if (! noninteractive) |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
641 { |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
642 #ifdef BSD_PGRPS |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
643 if (initialized) |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
644 { |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
645 inherited_pgroup = EMACS_GETPGRP (0); |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
646 setpgrp (0, getpid ()); |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
647 } |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
648 #else |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
649 #if defined (USG5) && defined (INTERRUPT_INPUT) |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
650 setpgrp (); |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
651 #endif |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
652 #endif |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
653 } |
|
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
654 |
| 348 | 655 #ifdef POSIX_SIGNALS |
| 656 init_signals (); | |
| 657 #endif | |
| 658 | |
|
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
659 /* Don't catch SIGHUP if dumping. */ |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
660 if (1 |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
661 #ifndef CANNOT_DUMP |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
662 && initialized |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
663 #endif |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
664 ) |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
665 { |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
666 sigblockx (SIGHUP); |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
667 /* In --batch mode, don't catch SIGHUP if already ignored. |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
668 That makes nohup work. */ |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
669 if (! noninteractive |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
670 || signal (SIGHUP, SIG_IGN) != SIG_IGN) |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
671 signal (SIGHUP, fatal_error_signal); |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
672 sigunblockx (SIGHUP); |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
673 } |
|
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
674 |
| 284 | 675 if ( |
| 676 #ifndef CANNOT_DUMP | |
| 677 ! noninteractive || initialized | |
| 678 #else | |
| 679 1 | |
| 680 #endif | |
| 681 ) | |
| 682 { | |
|
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
683 /* Don't catch these signals in batch mode if dumping. |
| 284 | 684 On some machines, this sets static data that would make |
| 685 signal fail to work right when the dumped Emacs is run. */ | |
| 686 signal (SIGQUIT, fatal_error_signal); | |
| 687 signal (SIGILL, fatal_error_signal); | |
| 688 signal (SIGTRAP, fatal_error_signal); | |
|
10388
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
689 #ifdef SIGABRT |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
690 signal (SIGABRT, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
691 #endif |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
692 #ifdef SIGHWE |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
693 signal (SIGHWE, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
694 #endif |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
695 #ifdef SIGPRE |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
696 signal (SIGPRE, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
697 #endif |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
698 #ifdef SIGORE |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
699 signal (SIGORE, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
700 #endif |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
701 #ifdef SIGUME |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
702 signal (SIGUME, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
703 #endif |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
704 #ifdef SIGDLK |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
705 signal (SIGDLK, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
706 #endif |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
707 #ifdef SIGCPULIM |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
708 signal (SIGCPULIM, fatal_error_signal); |
|
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
709 #endif |
|
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
710 #ifdef SIGIOT |
|
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
711 /* This is missing on some systems - OS/2, for example. */ |
| 284 | 712 signal (SIGIOT, fatal_error_signal); |
|
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
713 #endif |
| 284 | 714 #ifdef SIGEMT |
| 715 signal (SIGEMT, fatal_error_signal); | |
| 716 #endif | |
| 717 signal (SIGFPE, fatal_error_signal); | |
|
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
718 #ifdef SIGBUS |
| 284 | 719 signal (SIGBUS, fatal_error_signal); |
|
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
720 #endif |
| 284 | 721 signal (SIGSEGV, fatal_error_signal); |
|
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
722 #ifdef SIGSYS |
| 284 | 723 signal (SIGSYS, fatal_error_signal); |
|
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
724 #endif |
| 284 | 725 signal (SIGTERM, fatal_error_signal); |
| 726 #ifdef SIGXCPU | |
| 727 signal (SIGXCPU, fatal_error_signal); | |
| 728 #endif | |
| 729 #ifdef SIGXFSZ | |
| 730 signal (SIGXFSZ, fatal_error_signal); | |
| 731 #endif /* SIGXFSZ */ | |
| 732 | |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
733 #ifdef SIGDANGER |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
734 /* This just means available memory is getting low. */ |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
735 signal (SIGDANGER, memory_warning_signal); |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
736 #endif |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
737 |
| 284 | 738 #ifdef AIX |
|
5794
9d324422db4c
(main) [AIX]: Don't handle signal 20, 21 or 22.
Richard M. Stallman <rms@gnu.org>
parents:
5763
diff
changeset
|
739 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */ |
|
9d324422db4c
(main) [AIX]: Don't handle signal 20, 21 or 22.
Richard M. Stallman <rms@gnu.org>
parents:
5763
diff
changeset
|
740 signal (SIGXCPU, fatal_error_signal); |
|
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
741 #ifndef _I386 |
| 284 | 742 signal (SIGIOINT, fatal_error_signal); |
|
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
743 #endif |
| 284 | 744 signal (SIGGRANT, fatal_error_signal); |
| 745 signal (SIGRETRACT, fatal_error_signal); | |
| 746 signal (SIGSOUND, fatal_error_signal); | |
| 747 signal (SIGMSG, fatal_error_signal); | |
| 748 #endif /* AIX */ | |
| 749 } | |
| 750 | |
| 751 noninteractive1 = noninteractive; | |
| 752 | |
| 753 /* Perform basic initializations (not merely interning symbols) */ | |
| 754 | |
| 755 if (!initialized) | |
| 756 { | |
| 757 init_alloc_once (); | |
| 758 init_obarray (); | |
| 759 init_eval_once (); | |
| 760 init_syntax_once (); /* Create standard syntax table. */ | |
| 761 /* Must be done before init_buffer */ | |
| 762 init_casetab_once (); | |
| 763 init_buffer_once (); /* Create buffer table and some buffers */ | |
| 764 init_minibuf_once (); /* Create list of minibuffers */ | |
| 765 /* Must precede init_window_once */ | |
| 766 init_window_once (); /* Init the window system */ | |
| 767 } | |
| 768 | |
| 769 init_alloc (); | |
| 770 init_eval (); | |
| 771 init_data (); | |
|
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
10029
diff
changeset
|
772 running_asynch_code = 0; |
|
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
773 |
|
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
774 #ifdef MSDOS |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
775 /* Call early 'cause init_environment needs it. */ |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
776 init_dosfns (); |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
777 /* Set defaults for several environment variables. */ |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
778 if (initialized) init_environment (argc, argv, skip_args); |
|
13393
0d3722d074a7
(main): [MSDOS] Call init_gettimeofday.
Karl Heuer <kwzh@gnu.org>
parents:
13016
diff
changeset
|
779 else init_gettimeofday (); |
|
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
780 #endif |
|
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
781 |
|
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
782 #ifdef WINDOWSNT |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
783 /* Initialize environment from registry settings. */ |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
784 init_environment (); |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
785 #endif |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
786 |
|
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
787 /* egetenv is a pretty low-level facility, which may get called in |
|
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
788 many circumstances; it seems flimsy to put off initializing it |
|
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
789 until calling init_callproc. */ |
|
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
790 set_process_environment (); |
|
5364
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
791 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4 |
|
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
792 if this is not done. Do it after set_process_environment so that we |
|
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
793 don't pollute Vprocess_environment. */ |
|
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
794 #ifdef AIX |
|
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
795 putenv ("LANG=C"); |
|
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
796 #endif |
|
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
797 |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
798 init_buffer (); /* Init default directory of main buffer */ |
|
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
799 |
|
5155
3fcc21b4f083
(main): Call init_callproc and init_callproc_1.
Richard M. Stallman <rms@gnu.org>
parents:
4957
diff
changeset
|
800 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */ |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
801 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */ |
|
5155
3fcc21b4f083
(main): Call init_callproc and init_callproc_1.
Richard M. Stallman <rms@gnu.org>
parents:
4957
diff
changeset
|
802 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */ |
| 348 | 803 init_lread (); |
| 284 | 804 |
| 805 if (!noninteractive) | |
| 806 { | |
| 807 #ifdef VMS | |
| 763 | 808 init_vms_input ();/* init_display calls get_frame_size, that needs this */ |
| 284 | 809 #endif /* VMS */ |
| 810 init_display (); /* Determine terminal type. init_sys_modes uses results */ | |
| 811 } | |
| 812 init_keyboard (); /* This too must precede init_sys_modes */ | |
| 813 #ifdef VMS | |
| 814 init_vmsproc (); /* And this too. */ | |
| 815 #endif /* VMS */ | |
| 816 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */ | |
| 817 init_xdisp (); | |
| 818 init_macros (); | |
| 819 init_editfns (); | |
| 820 #ifdef LISP_FLOAT_TYPE | |
| 821 init_floatfns (); | |
| 822 #endif | |
| 823 #ifdef VMS | |
| 824 init_vmsfns (); | |
| 825 #endif /* VMS */ | |
| 826 init_process (); | |
| 624 | 827 #ifdef CLASH_DETECTION |
| 828 init_filelock (); | |
| 829 #endif /* CLASH_DETECTION */ | |
| 284 | 830 |
| 831 /* Intern the names of all standard functions and variables; define standard keys */ | |
| 832 | |
| 833 if (!initialized) | |
| 834 { | |
| 835 /* The basic levels of Lisp must come first */ | |
| 836 /* And data must come first of all | |
| 837 for the sake of symbols like error-message */ | |
| 838 syms_of_data (); | |
| 839 syms_of_alloc (); | |
| 348 | 840 syms_of_lread (); |
| 284 | 841 syms_of_print (); |
| 842 syms_of_eval (); | |
| 843 syms_of_fns (); | |
| 844 syms_of_floatfns (); | |
| 845 | |
| 846 syms_of_abbrev (); | |
| 847 syms_of_buffer (); | |
| 848 syms_of_bytecode (); | |
| 849 syms_of_callint (); | |
| 850 syms_of_casefiddle (); | |
| 851 syms_of_casetab (); | |
| 852 syms_of_callproc (); | |
| 853 syms_of_cmds (); | |
| 854 #ifndef NO_DIR_LIBRARY | |
| 855 syms_of_dired (); | |
| 856 #endif /* not NO_DIR_LIBRARY */ | |
| 857 syms_of_display (); | |
| 858 syms_of_doc (); | |
| 859 syms_of_editfns (); | |
| 860 syms_of_emacs (); | |
| 861 syms_of_fileio (); | |
| 862 #ifdef CLASH_DETECTION | |
| 863 syms_of_filelock (); | |
| 864 #endif /* CLASH_DETECTION */ | |
| 865 syms_of_indent (); | |
| 866 syms_of_keyboard (); | |
| 867 syms_of_keymap (); | |
| 868 syms_of_macros (); | |
| 869 syms_of_marker (); | |
| 870 syms_of_minibuf (); | |
| 871 syms_of_mocklisp (); | |
| 872 syms_of_process (); | |
| 873 syms_of_search (); | |
| 763 | 874 syms_of_frame (); |
| 284 | 875 syms_of_syntax (); |
| 6751 | 876 syms_of_term (); |
| 284 | 877 syms_of_undo (); |
| 1284 | 878 |
| 879 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ | |
| 880 syms_of_textprop (); | |
| 284 | 881 #ifdef VMS |
| 882 syms_of_vmsproc (); | |
| 883 #endif /* VMS */ | |
| 884 syms_of_window (); | |
| 885 syms_of_xdisp (); | |
| 886 #ifdef HAVE_X_WINDOWS | |
| 375 | 887 syms_of_xterm (); |
| 284 | 888 syms_of_xfns (); |
|
2392
319c8db6eb51
(main): Call syms_of_xfaces.
Richard M. Stallman <rms@gnu.org>
parents:
2313
diff
changeset
|
889 syms_of_xfaces (); |
| 375 | 890 #ifdef HAVE_X11 |
| 891 syms_of_xselect (); | |
| 892 #endif | |
| 284 | 893 #endif /* HAVE_X_WINDOWS */ |
| 894 | |
| 9572 | 895 #if defined (MSDOS) && !defined (HAVE_X_WINDOWS) |
| 896 syms_of_xfaces (); | |
|
13881
15e38bb8df9c
(main): Call syms_of_xmenu if and only if HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents:
13721
diff
changeset
|
897 #endif |
|
15e38bb8df9c
(main): Call syms_of_xmenu if and only if HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents:
13721
diff
changeset
|
898 |
|
15e38bb8df9c
(main): Call syms_of_xmenu if and only if HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents:
13721
diff
changeset
|
899 #ifdef HAVE_MENUS |
| 9572 | 900 syms_of_xmenu (); |
|
13881
15e38bb8df9c
(main): Call syms_of_xmenu if and only if HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents:
13721
diff
changeset
|
901 #endif /* HAVE_MENUS */ |
| 9572 | 902 |
|
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
903 #ifdef HAVE_NTGUI |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
904 syms_of_win32term (); |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
905 syms_of_win32fns (); |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
906 syms_of_win32faces (); |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
907 syms_of_win32select (); |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
908 syms_of_win32menu (); |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
909 #endif /* HAVE_NTGUI */ |
|
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
910 |
| 284 | 911 #ifdef SYMS_SYSTEM |
| 912 SYMS_SYSTEM; | |
| 913 #endif | |
| 914 | |
| 915 #ifdef SYMS_MACHINE | |
| 916 SYMS_MACHINE; | |
| 917 #endif | |
| 918 | |
| 919 keys_of_casefiddle (); | |
| 920 keys_of_cmds (); | |
| 921 keys_of_buffer (); | |
| 922 keys_of_keyboard (); | |
| 923 keys_of_keymap (); | |
| 924 keys_of_macros (); | |
| 925 keys_of_minibuf (); | |
| 926 keys_of_window (); | |
|
1384
416f7f33fe95
* emacs.c (main): Call keys_of_frame.
Jim Blandy <jimb@redhat.com>
parents:
1350
diff
changeset
|
927 keys_of_frame (); |
| 284 | 928 } |
| 929 | |
| 930 if (!initialized) | |
| 931 { | |
| 9094 | 932 char *file; |
| 284 | 933 /* Handle -l loadup-and-dump, args passed by Makefile. */ |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
934 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args)) |
| 284 | 935 Vtop_level = Fcons (intern ("load"), |
| 9094 | 936 Fcons (build_string (file), Qnil)); |
| 284 | 937 #ifdef CANNOT_DUMP |
| 938 /* Unless next switch is -nl, load "loadup.el" first thing. */ | |
|
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
939 if (!argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args)) |
| 284 | 940 Vtop_level = Fcons (intern ("load"), |
| 941 Fcons (build_string ("loadup.el"), Qnil)); | |
| 942 #endif /* CANNOT_DUMP */ | |
| 943 } | |
| 944 | |
|
11195
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
945 if (initialized) |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
946 { |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
947 /* Erase any pre-dump messages in the message log, to avoid confusion */ |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
948 Lisp_Object old_log_max; |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
949 old_log_max = Vmessage_log_max; |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
950 XSETFASTINT (Vmessage_log_max, 0); |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
951 message_dolog ("", 0, 1); |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
952 Vmessage_log_max = old_log_max; |
|
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
953 |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
954 #ifdef HAVE_TZSET |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
955 { |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
956 /* If the execution TZ happens to be the same as the dump TZ, |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
957 change it to some other value and then change it back, |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
958 to force the underlying implementation to reload the TZ info. |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
959 This is needed on implementations that load TZ info from files, |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
960 since the TZ file contents may differ between dump and execution. */ |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
961 char *tz = getenv ("TZ"); |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
962 if (tz && !strcmp (tz, dump_tz)) |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
963 { |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
964 ++*tz; |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
965 tzset (); |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
966 --*tz; |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
967 } |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
968 } |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
969 #endif |
|
11195
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
970 } |
|
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
971 |
| 284 | 972 initialized = 1; |
| 973 | |
|
13016
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
974 #ifdef LOCALTIME_CACHE |
|
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
975 /* Some versions of localtime have a bug. They cache the value of the time |
| 815 | 976 zone rather than looking it up every time. Since localtime() is |
| 977 called to bolt the undumping time into the undumped emacs, this | |
|
4303
fd9865b5a41e
(main): Test LOCALTIME_CACHE.
Richard M. Stallman <rms@gnu.org>
parents:
3932
diff
changeset
|
978 results in localtime ignoring the TZ environment variable. |
|
fd9865b5a41e
(main): Test LOCALTIME_CACHE.
Richard M. Stallman <rms@gnu.org>
parents:
3932
diff
changeset
|
979 This flushes the new TZ value into localtime. */ |
|
fd9865b5a41e
(main): Test LOCALTIME_CACHE.
Richard M. Stallman <rms@gnu.org>
parents:
3932
diff
changeset
|
980 tzset (); |
|
13016
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
981 #endif /* defined (LOCALTIME_CACHE) */ |
| 815 | 982 |
| 284 | 983 /* Enter editor command loop. This never returns. */ |
| 984 Frecursive_edit (); | |
| 985 /* NOTREACHED */ | |
| 986 } | |
| 987 | |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
988 /* Sort the args so we can find the most important ones |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
989 at the beginning of argv. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
990 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
991 /* First, here's a table of all the standard options. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
992 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
993 struct standard_args |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
994 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
995 char *name; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
996 char *longname; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
997 int priority; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
998 int nargs; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
999 }; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1000 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1001 struct standard_args standard_args[] = |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1002 { |
|
11634
820eaef29fae
(main): Delete duplicate code for -version.
Richard M. Stallman <rms@gnu.org>
parents:
11629
diff
changeset
|
1003 { "-version", "--version", 110, 0 }, |
|
820eaef29fae
(main): Delete duplicate code for -version.
Richard M. Stallman <rms@gnu.org>
parents:
11629
diff
changeset
|
1004 { "-help", "--help", 110, 0 }, |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1005 { "-nl", "--no-shared-memory", 100, 0 }, |
|
11629
bae8a831397f
(standard_args): Add #ifdef VMS for -map.
Richard M. Stallman <rms@gnu.org>
parents:
11623
diff
changeset
|
1006 #ifdef VMS |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1007 { "-map", "--map-data", 100, 0 }, |
|
11629
bae8a831397f
(standard_args): Add #ifdef VMS for -map.
Richard M. Stallman <rms@gnu.org>
parents:
11623
diff
changeset
|
1008 #endif |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1009 { "-t", "--terminal", 90, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1010 { "-d", "--display", 80, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1011 { "-display", 0, 80, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1012 { "-nw", "--no-windows", 70, 0 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1013 { "-batch", "--batch", 60, 0 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1014 { "-q", "--no-init-file", 50, 0 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1015 { "-no-init-file", 0, 50, 0 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1016 { "-no-site-file", "--no-site-file", 40, 0 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1017 { "-u", "--user", 30, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1018 { "-user", 0, 30, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1019 { "-debug-init", "--debug-init", 20, 0 }, |
|
11931
3a2442baa290
(standard_args): -i, -itype, --icon-type take 0, not 1, args
Karl Heuer <kwzh@gnu.org>
parents:
11846
diff
changeset
|
1020 { "-i", "--icon-type", 15, 0 }, |
|
3a2442baa290
(standard_args): -i, -itype, --icon-type take 0, not 1, args
Karl Heuer <kwzh@gnu.org>
parents:
11846
diff
changeset
|
1021 { "-itype", 0, 15, 0 }, |
|
11596
b59f90606227
(standard_args): Move -iconic and --icon-type (etc.)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
1022 { "-iconic", "--iconic", 15, 0 }, |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1023 { "-bg", "--background-color", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1024 { "-background", 0, 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1025 { "-fg", "--foreground-color", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1026 { "-foreground", 0, 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1027 { "-bd", "--border-color", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1028 { "-bw", "--border-width", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1029 { "-ib", "--internal-border", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1030 { "-ms", "--mouse-color", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1031 { "-cr", "--cursor-color", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1032 { "-fn", "--font", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1033 { "-font", 0, 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1034 { "-g", "--geometry", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1035 { "-geometry", 0, 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1036 { "-T", "--title", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1037 { "-name", "--name", 10, 1 }, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1038 { "-xrm", "--xrm", 10, 1 }, |
|
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1039 { "-r", "--reverse-video", 5, 0 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1040 { "-rv", 0, 5, 0 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1041 { "-reverse", 0, 5, 0 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1042 { "-vb", "--vertical-scroll-bars", 5, 0 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1043 /* These have the same priority as ordinary file name args, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1044 so they are not reordered with respect to those. */ |
|
11623
584362605c5e
(standard_args): Add -L/--directory/-directory.
Richard M. Stallman <rms@gnu.org>
parents:
11596
diff
changeset
|
1045 { "-L", "--directory", 0, 1 }, |
|
584362605c5e
(standard_args): Add -L/--directory/-directory.
Richard M. Stallman <rms@gnu.org>
parents:
11596
diff
changeset
|
1046 { "-directory", 0, 0, 1 }, |
|
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1047 { "-l", "--load", 0, 1 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1048 { "-load", 0, 0, 1 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1049 { "-f", "--funcall", 0, 1 }, |
|
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1050 { "-funcall", 0, 0, 1 }, |
|
12851
89d5e3a554de
(standard_args): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12848
diff
changeset
|
1051 { "-eval", "--eval", 0, 1 }, |
|
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1052 { "-insert", "--insert", 0, 1 }, |
|
11596
b59f90606227
(standard_args): Move -iconic and --icon-type (etc.)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
1053 /* This should be processed after ordinary file name args and the like. */ |
|
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1054 { "-kill", "--kill", -10, 0 }, |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1055 }; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1056 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1057 /* Reorder the elements of ARGV (assumed to have ARGC elements) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1058 so that the highest priority ones come first. |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1059 Do not change the order of elements of equal priority. |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1060 If an option takes an argument, keep it and its argument together. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1061 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1062 static void |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1063 sort_args (argc, argv) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1064 int argc; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1065 char **argv; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1066 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1067 char **new = (char **) xmalloc (sizeof (char *) * argc); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1068 /* For each element of argv, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1069 the corresponding element of options is: |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1070 0 for an option that takes no arguments, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1071 1 for an option that takes one argument, etc. |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1072 -1 for an ordinary non-option argument. */ |
|
10150
d8fb9db90d8e
(sort_args): Make `options' a vector of ints.
Richard M. Stallman <rms@gnu.org>
parents:
10111
diff
changeset
|
1073 int *options = (int *) xmalloc (sizeof (int) * argc); |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1074 int *priority = (int *) xmalloc (sizeof (int) * argc); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1075 int to = 1; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1076 int from; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1077 int i; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1078 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1079 /* Categorize all the options, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1080 and figure out which argv elts are option arguments. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1081 for (from = 1; from < argc; from++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1082 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1083 options[from] = -1; |
|
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1084 priority[from] = 0; |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1085 if (argv[from][0] == '-') |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1086 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1087 int match, thislen; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1088 char *equals; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1089 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1090 /* Look for a match with a known old-fashioned option. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1091 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1092 if (!strcmp (argv[from], standard_args[i].name)) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1093 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1094 options[from] = standard_args[i].nargs; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1095 priority[from] = standard_args[i].priority; |
|
14399
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1096 if (from + standard_args[i].nargs >= argc) |
|
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1097 fatal ("Option `%s' requires an argument\n", argv[from]); |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1098 from += standard_args[i].nargs; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1099 goto done; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1100 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1101 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1102 /* Look for a match with a known long option. |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1103 MATCH is -1 if no match so far, -2 if two or more matches so far, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1104 >= 0 (the table index of the match) if just one match so far. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1105 if (argv[from][1] == '-') |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1106 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1107 match = -1; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1108 thislen = strlen (argv[from]); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1109 equals = index (argv[from], '='); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1110 if (equals != 0) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1111 thislen = equals - argv[from]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1112 |
|
11157
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1113 for (i = 0; |
|
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1114 i < sizeof (standard_args) / sizeof (standard_args[0]); i++) |
|
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1115 if (standard_args[i].longname |
|
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1116 && !strncmp (argv[from], standard_args[i].longname, |
|
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1117 thislen)) |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1118 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1119 if (match == -1) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1120 match = i; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1121 else |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1122 match = -2; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1123 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1124 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1125 /* If we found exactly one match, use that. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1126 if (match >= 0) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1127 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1128 options[from] = standard_args[match].nargs; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1129 priority[from] = standard_args[match].priority; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1130 /* If --OPTION=VALUE syntax is used, |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1131 this option uses just one argv element. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1132 if (equals != 0) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1133 options[from] = 0; |
|
14399
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1134 if (from + options[from] >= argc) |
|
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1135 fatal ("Option `%s' requires an argument\n", argv[from]); |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1136 from += options[from]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1137 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1138 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1139 done: ; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1140 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1141 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1142 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1143 /* Copy the arguments, in order of decreasing priority, to NEW. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1144 new[0] = argv[0]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1145 while (to < argc) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1146 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1147 int best = -1; |
|
12861
c67a46e4fcef
(sort_args): Initialize best_priority smaller than any
Karl Heuer <kwzh@gnu.org>
parents:
12851
diff
changeset
|
1148 int best_priority = -9999; |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1149 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1150 /* Find the highest priority remaining option. |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1151 If several have equal priority, take the first of them. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1152 for (from = 1; from < argc; from++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1153 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1154 if (argv[from] != 0 && priority[from] > best_priority) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1155 { |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1156 best_priority = priority[from]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1157 best = from; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1158 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1159 /* Skip option arguments--they are tied to the options. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1160 if (options[from] > 0) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1161 from += options[from]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1162 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1163 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1164 if (best < 0) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1165 abort (); |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1166 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1167 /* Copy the highest priority remaining option, with its args, to NEW. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1168 new[to++] = argv[best]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1169 for (i = 0; i < options[best]; i++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1170 new[to++] = argv[best + i + 1]; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1171 |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1172 /* Clear out this option in ARGV. */ |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1173 argv[best] = 0; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1174 for (i = 0; i < options[best]; i++) |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1175 argv[best + i + 1] = 0; |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1176 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1177 |
|
10150
d8fb9db90d8e
(sort_args): Make `options' a vector of ints.
Richard M. Stallman <rms@gnu.org>
parents:
10111
diff
changeset
|
1178 bcopy (new, argv, sizeof (char *) * argc); |
|
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1179 } |
|
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1180 |
| 284 | 1181 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P", |
|
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
1182 "Exit the Emacs job and kill it.\n\ |
| 284 | 1183 If ARG is an integer, return ARG as the exit program code.\n\ |
| 1184 If ARG is a string, stuff it as keyboard input.\n\n\ | |
| 1185 The value of `kill-emacs-hook', if not void,\n\ | |
| 1186 is a list of functions (of no args),\n\ | |
| 1187 all of which are called before Emacs is actually killed.") | |
| 1188 (arg) | |
| 1189 Lisp_Object arg; | |
| 1190 { | |
| 1191 Lisp_Object hook, hook1; | |
| 1192 int i; | |
| 1193 struct gcpro gcpro1; | |
| 1194 | |
| 1195 GCPRO1 (arg); | |
| 1196 | |
| 1197 if (feof (stdin)) | |
| 1198 arg = Qt; | |
| 1199 | |
| 505 | 1200 if (!NILP (Vrun_hooks) && !noninteractive) |
| 284 | 1201 call1 (Vrun_hooks, intern ("kill-emacs-hook")); |
| 1202 | |
| 1203 UNGCPRO; | |
| 1204 | |
| 1205 /* Is it really necessary to do this deassign | |
| 1206 when we are going to exit anyway? */ | |
| 1207 /* #ifdef VMS | |
| 1208 stop_vms_input (); | |
| 1209 #endif */ | |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1210 |
|
3837
85652925d5b8
* emacs.c (Fkill_emacs): Pass third argument to shut_down_emacs.
Jim Blandy <jimb@redhat.com>
parents:
3826
diff
changeset
|
1211 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil); |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1212 |
|
11846
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1213 /* If we have an auto-save list file, |
|
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1214 kill it because we are exiting Emacs deliberately (not crashing). |
|
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1215 Do it after shut_down_emacs, which does an auto-save. */ |
|
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1216 if (STRINGP (Vauto_save_list_file_name)) |
|
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1217 unlink (XSTRING (Vauto_save_list_file_name)->data); |
|
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1218 |
|
9132
b2ca75d3a5cb
(Fkill_emacs): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9094
diff
changeset
|
1219 exit (INTEGERP (arg) ? XINT (arg) |
| 284 | 1220 #ifdef VMS |
| 1221 : 1 | |
| 1222 #else | |
| 1223 : 0 | |
| 1224 #endif | |
| 1225 ); | |
| 1226 /* NOTREACHED */ | |
| 1227 } | |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1228 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1229 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1230 /* Perform an orderly shutdown of Emacs. Autosave any modified |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1231 buffers, kill any child processes, clean up the terminal modes (if |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1232 we're in the foreground), and other stuff like that. Don't perform |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1233 any redisplay; this may be called when Emacs is shutting down in |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1234 the background, or after its X connection has died. |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1235 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1236 If SIG is a signal number, print a message for it. |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1237 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1238 This is called by fatal signal handlers, X protocol error handlers, |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1239 and Fkill_emacs. */ |
|
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1240 |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1241 void |
|
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1242 shut_down_emacs (sig, no_x, stuff) |
|
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1243 int sig, no_x; |
|
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1244 Lisp_Object stuff; |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1245 { |
|
6210
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
1246 /* Prevent running of hooks from now on. */ |
|
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
1247 Vrun_hooks = Qnil; |
|
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
1248 |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1249 /* If we are controlling the terminal, reset terminal modes */ |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1250 #ifdef EMACS_HAVE_TTY_PGRP |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1251 { |
|
4957
dccce35b1173
(main): Use EMACS_GETPGRP macro.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1252 int pgrp = EMACS_GETPGRP (0); |
|
dccce35b1173
(main): Use EMACS_GETPGRP macro.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1253 |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1254 int tpgrp; |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1255 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1 |
|
3826
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3801
diff
changeset
|
1256 && tpgrp == pgrp) |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1257 { |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1258 fflush (stdout); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1259 reset_sys_modes (); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1260 if (sig && sig != SIGTERM) |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1261 fprintf (stderr, "Fatal error (%d).", sig); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1262 } |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1263 } |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1264 #else |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1265 fflush (stdout); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1266 reset_sys_modes (); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1267 #endif |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1268 |
|
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1269 stuff_buffered_input (stuff); |
|
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1270 |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1271 kill_buffer_processes (Qnil); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1272 Fdo_auto_save (Qt, Qnil); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1273 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1274 #ifdef CLASH_DETECTION |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1275 unlock_all_files (); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1276 #endif |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1277 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1278 #ifdef VMS |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1279 kill_vms_processes (); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1280 #endif |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1281 |
|
8815
b1766995a504
(shut_down_emacs): Don't call Fx_close_current_connection.
Richard M. Stallman <rms@gnu.org>
parents:
8704
diff
changeset
|
1282 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */ |
|
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1283 #ifdef HAVE_X_WINDOWS |
|
7538
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1284 /* It's not safe to call intern here. Maybe we are crashing. */ |
|
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1285 if (!noninteractive && SYMBOLP (Vwindow_system) |
|
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1286 && XSYMBOL (Vwindow_system)->name->size == 1 |
|
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1287 && XSYMBOL (Vwindow_system)->name->data[0] == 'x' |
|
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1288 && ! no_x) |
|
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1289 Fx_close_current_connection (); |
|
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1290 #endif /* HAVE_X_WINDOWS */ |
|
8815
b1766995a504
(shut_down_emacs): Don't call Fx_close_current_connection.
Richard M. Stallman <rms@gnu.org>
parents:
8704
diff
changeset
|
1291 #endif |
|
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1292 |
|
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1293 #ifdef SIGIO |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1294 /* There is a tendency for a SIGIO signal to arrive within exit, |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1295 and cause a SIGHUP because the input descriptor is already closed. */ |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1296 unrequest_sigio (); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1297 signal (SIGIO, SIG_IGN); |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1298 #endif |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1299 } |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1300 |
|
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1301 |
| 284 | 1302 |
| 1303 #ifndef CANNOT_DUMP | |
| 1304 | |
| 1305 #ifdef HAVE_SHM | |
| 1306 | |
| 1307 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0, | |
| 1308 "Dump current state of Emacs into data file FILENAME.\n\ | |
| 1309 This function exists on systems that use HAVE_SHM.") | |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1310 (filename) |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1311 Lisp_Object filename; |
| 284 | 1312 { |
|
11076
9d2cb049844b
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10902
diff
changeset
|
1313 extern char my_edata[]; |
| 284 | 1314 Lisp_Object tem; |
| 1315 | |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1316 CHECK_STRING (filename, 0); |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1317 filename = Fexpand_file_name (filename, Qnil); |
| 284 | 1318 |
| 1319 tem = Vpurify_flag; | |
| 1320 Vpurify_flag = Qnil; | |
| 1321 | |
| 1322 fflush (stdout); | |
| 1323 /* Tell malloc where start of impure now is */ | |
| 1324 /* Also arrange for warnings when nearly out of space. */ | |
| 1325 #ifndef SYSTEM_MALLOC | |
|
11720
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
1326 memory_warnings (my_edata, malloc_warning); |
| 284 | 1327 #endif |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1328 map_out_data (XSTRING (filename)->data); |
| 284 | 1329 |
| 1330 Vpurify_flag = tem; | |
| 1331 | |
| 1332 return Qnil; | |
| 1333 } | |
| 1334 | |
| 1335 #else /* not HAVE_SHM */ | |
| 1336 | |
| 1337 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0, | |
| 1338 "Dump current state of Emacs into executable file FILENAME.\n\ | |
| 1339 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\ | |
| 1340 This is used in the file `loadup.el' when building Emacs.\n\ | |
| 1341 \n\ | |
| 1342 Bind `command-line-processed' to nil before dumping,\n\ | |
| 1343 if you want the dumped Emacs to process its command line\n\ | |
| 1344 and announce itself normally when it is run.") | |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1345 (filename, symfile) |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1346 Lisp_Object filename, symfile; |
| 284 | 1347 { |
|
11076
9d2cb049844b
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10902
diff
changeset
|
1348 extern char my_edata[]; |
| 284 | 1349 Lisp_Object tem; |
| 1350 | |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1351 CHECK_STRING (filename, 0); |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1352 filename = Fexpand_file_name (filename, Qnil); |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1353 if (!NILP (symfile)) |
| 284 | 1354 { |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1355 CHECK_STRING (symfile, 0); |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1356 if (XSTRING (symfile)->size) |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1357 symfile = Fexpand_file_name (symfile, Qnil); |
| 284 | 1358 } |
| 1359 | |
| 1360 tem = Vpurify_flag; | |
| 1361 Vpurify_flag = Qnil; | |
| 1362 | |
|
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1363 #ifdef HAVE_TZSET |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1364 set_time_zone_rule (dump_tz); |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1365 #ifndef LOCALTIME_CACHE |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1366 /* Force a tz reload, since set_time_zone_rule doesn't. */ |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1367 tzset (); |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1368 #endif |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1369 #endif |
|
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1370 |
| 284 | 1371 fflush (stdout); |
| 1372 #ifdef VMS | |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1373 mapout_data (XSTRING (filename)->data); |
| 284 | 1374 #else |
| 1375 /* Tell malloc where start of impure now is */ | |
| 1376 /* Also arrange for warnings when nearly out of space. */ | |
| 1377 #ifndef SYSTEM_MALLOC | |
|
9788
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1378 #ifndef WINDOWSNT |
|
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1379 /* On Windows, this was done before dumping, and that once suffices. |
|
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1380 Meanwhile, my_edata is not valid on Windows. */ |
|
11756
7d21f64d2c0e
(Fdump_emacs): Don't use & before my_edata.
Richard M. Stallman <rms@gnu.org>
parents:
11720
diff
changeset
|
1381 memory_warnings (my_edata, malloc_warning); |
|
9788
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1382 #endif /* not WINDOWSNT */ |
| 284 | 1383 #endif |
|
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1384 unexec (XSTRING (filename)->data, |
|
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1385 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0); |
| 284 | 1386 #endif /* not VMS */ |
| 1387 | |
| 1388 Vpurify_flag = tem; | |
| 1389 | |
| 1390 return Qnil; | |
| 1391 } | |
| 1392 | |
| 1393 #endif /* not HAVE_SHM */ | |
| 1394 | |
| 1395 #endif /* not CANNOT_DUMP */ | |
| 1396 | |
|
2649
3a9fb5d6d259
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
1397 #ifndef SEPCHAR |
| 284 | 1398 #define SEPCHAR ':' |
| 1399 #endif | |
| 1400 | |
| 1401 Lisp_Object | |
| 1402 decode_env_path (evarname, defalt) | |
| 1403 char *evarname, *defalt; | |
| 1404 { | |
| 1405 register char *path, *p; | |
| 1406 | |
| 1407 Lisp_Object lpath; | |
| 1408 | |
| 505 | 1409 /* It's okay to use getenv here, because this function is only used |
| 1410 to initialize variables when Emacs starts up, and isn't called | |
| 1411 after that. */ | |
| 638 | 1412 if (evarname != 0) |
| 1413 path = (char *) getenv (evarname); | |
| 1414 else | |
| 1415 path = 0; | |
| 284 | 1416 if (!path) |
| 1417 path = defalt; | |
| 1418 lpath = Qnil; | |
| 1419 while (1) | |
| 1420 { | |
| 1421 p = index (path, SEPCHAR); | |
| 1422 if (!p) p = path + strlen (path); | |
|
12971
ec9ae189a275
(decode_env_path): Use ".", not nil, for current dir.
Richard M. Stallman <rms@gnu.org>
parents:
12861
diff
changeset
|
1423 lpath = Fcons (p - path ? make_string (path, p - path) |
|
ec9ae189a275
(decode_env_path): Use ".", not nil, for current dir.
Richard M. Stallman <rms@gnu.org>
parents:
12861
diff
changeset
|
1424 : build_string ("."), |
| 284 | 1425 lpath); |
| 1426 if (*p) | |
| 1427 path = p + 1; | |
| 1428 else | |
| 1429 break; | |
| 1430 } | |
| 1431 return Fnreverse (lpath); | |
| 1432 } | |
| 1433 | |
| 1434 syms_of_emacs () | |
| 1435 { | |
|
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1436 #ifndef CANNOT_DUMP |
| 284 | 1437 #ifdef HAVE_SHM |
| 1438 defsubr (&Sdump_emacs_data); | |
| 1439 #else | |
| 1440 defsubr (&Sdump_emacs); | |
| 1441 #endif | |
|
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1442 #endif |
| 284 | 1443 |
| 1444 defsubr (&Skill_emacs); | |
| 1445 | |
|
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
1446 defsubr (&Sinvocation_name); |
|
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
1447 defsubr (&Sinvocation_directory); |
|
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
1448 |
| 284 | 1449 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, |
| 1450 "Args passed by shell to Emacs, as a list of strings."); | |
| 1451 | |
| 1452 DEFVAR_LISP ("system-type", &Vsystem_type, | |
| 1453 "Value is symbol indicating type of operating system you are using."); | |
| 1454 Vsystem_type = intern (SYSTEM_TYPE); | |
| 1455 | |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1456 DEFVAR_LISP ("system-configuration", &Vsystem_configuration, |
|
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1457 "Value is string indicating configuration Emacs was built for."); |
|
7538
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1458 Vsystem_configuration = build_string (EMACS_CONFIGURATION); |
|
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1459 |
|
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
1460 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options, |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
1461 "String containing the configuration options Emacs was built with."); |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
1462 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS); |
|
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
1463 |
| 284 | 1464 DEFVAR_BOOL ("noninteractive", &noninteractive1, |
| 1465 "Non-nil means Emacs is running without interactive terminal."); | |
| 732 | 1466 |
|
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
1467 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook, |
|
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
1468 "Hook to be run whenever kill-emacs is called.\n\ |
|
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
1469 Since kill-emacs may be invoked when the terminal is disconnected (or\n\ |
|
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
1470 in other similar situations), functions placed on this hook should not\n\ |
|
10902
a8ec3a55a1d9
(syms_of_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10664
diff
changeset
|
1471 expect to be able to interact with the user. To ask for confirmation,\n\ |
|
a8ec3a55a1d9
(syms_of_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10664
diff
changeset
|
1472 see `kill-emacs-query-functions' instead."); |
| 732 | 1473 Vkill_emacs_hook = Qnil; |
|
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
1474 |
|
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
1475 DEFVAR_INT ("emacs-priority", &emacs_priority, |
|
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
1476 "Priority for Emacs to run at.\n\ |
|
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
1477 This value is effective only if set before Emacs is dumped,\n\ |
|
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
1478 and only if the Emacs executable is installed with setuid to permit\n\ |
|
7163
299e6e1e5ae6
(syms_of_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7003
diff
changeset
|
1479 it to change priority. (Emacs sets its uid back to the real uid.)\n\ |
|
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
1480 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\ |
|
7164
d5927b5a3da1
Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
7163
diff
changeset
|
1481 before you compile Emacs, to enable the code for this feature."); |
|
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
1482 emacs_priority = 0; |
|
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
1483 |
|
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1484 DEFVAR_LISP ("invocation-name", &Vinvocation_name, |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1485 "The program name that was used to run Emacs.\n\ |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1486 Any directory names are omitted."); |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1487 |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1488 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory, |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1489 "The directory in which the Emacs executable was found, to run it.\n\ |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1490 The value is nil if that directory's name is not known."); |
|
6428
633b2d7d12df
(syms_of_emacs): Don't initialize Vinstallation_name
Richard M. Stallman <rms@gnu.org>
parents:
6210
diff
changeset
|
1491 |
|
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1492 DEFVAR_LISP ("installation-directory", &Vinstallation_directory, |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1493 "A directory within which to look for the `lib-src' and `etc' directories.\n\ |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1494 This is non-nil when we can't find those directories in their standard\n\ |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1495 installed locations, but we can find them\n\ |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1496 near where the Emacs executable was found."); |
|
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
1497 Vinstallation_directory = Qnil; |
| 284 | 1498 } |
