Mercurial > emacs
annotate src/emacs.c @ 3781:6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
* Makefile.in (distclean): Call clean to do most of the work.
Delete aixcc.c and TAGS.
(realclean): Just call distclean.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 16 Jun 1993 23:49:07 +0000 |
parents | 5acf09035d16 |
children | 13592aebe35e |
rev | line source |
---|---|
284 | 1 /* Fully extensible Emacs, running on Unix, intended for GNU. |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1993 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 | |
24 #include "config.h" | |
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 #ifdef APOLLO | |
39 #ifndef APOLLO_SR10 | |
40 #include <default_acl.h> | |
41 #endif | |
42 #endif | |
43 | |
44 #include "lisp.h" | |
45 #include "commands.h" | |
1284 | 46 #include "intervals.h" |
284 | 47 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
48 #include "systty.h" |
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
49 #include "syssignal.h" |
554 | 50 |
284 | 51 #ifndef O_RDWR |
52 #define O_RDWR 2 | |
53 #endif | |
54 | |
55 #define PRIO_PROCESS 0 | |
56 | |
57 /* Command line args from shell, as list of strings */ | |
58 Lisp_Object Vcommand_line_args; | |
59 | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
60 /* 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
|
61 names discarded. */ |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
62 Lisp_Object Vinvocation_name; |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
63 |
732 | 64 /* Hook run by `kill-emacs' before it does really anything. */ |
65 Lisp_Object Vkill_emacs_hook; | |
66 | |
284 | 67 /* Set nonzero after Emacs has started up the first time. |
68 Prevents reinitialization of the Lisp world and keymaps | |
69 on subsequent starts. */ | |
70 int initialized; | |
71 | |
72 /* Variable whose value is symbol giving operating system type */ | |
73 Lisp_Object Vsystem_type; | |
74 | |
75 /* If non-zero, emacs should not attempt to use an window-specific code, | |
76 but instead should use the virtual terminal under which it was started */ | |
77 int inhibit_window_system; | |
78 | |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
79 /* 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
|
80 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
|
81 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
|
82 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
|
83 |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
84 #ifdef BSD |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
85 /* See sysdep.c. */ |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
86 extern int inherited_pgroup; |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
87 #endif |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
88 |
284 | 89 #ifdef HAVE_X_WINDOWS |
90 /* If non-zero, -d was specified, meaning we're using some window system. */ | |
91 int display_arg; | |
92 #endif | |
93 | |
94 /* An address near the bottom of the stack. | |
95 Tells GC how to save a copy of the stack. */ | |
96 char *stack_bottom; | |
97 | |
98 #ifdef HAVE_X_WINDOWS | |
99 extern Lisp_Object Vwindow_system; | |
100 #endif /* HAVE_X_WINDOWS */ | |
101 | |
102 #ifdef USG_SHARED_LIBRARIES | |
103 /* If nonzero, this is the place to put the end of the writable segment | |
104 at startup. */ | |
105 | |
106 unsigned int bss_end = 0; | |
107 #endif | |
108 | |
109 /* Nonzero means running Emacs without interactive terminal. */ | |
110 | |
111 int noninteractive; | |
112 | |
113 /* Value of Lisp variable `noninteractive'. | |
114 Normally same as C variable `noninteractive' | |
115 but nothing terrible happens if user sets this one. */ | |
116 | |
117 int noninteractive1; | |
118 | |
119 /* Signal code for the fatal signal that was received */ | |
120 int fatal_error_code; | |
121 | |
122 /* Nonzero if handling a fatal error already */ | |
123 int fatal_error_in_progress; | |
124 | |
125 /* Handle bus errors, illegal instruction, etc. */ | |
505 | 126 SIGTYPE |
284 | 127 fatal_error_signal (sig) |
128 int sig; | |
129 { | |
130 fatal_error_code = sig; | |
131 signal (sig, SIG_DFL); | |
132 | |
133 /* 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
|
134 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
|
135 { |
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
136 fatal_error_in_progress = 1; |
284 | 137 |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
138 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
|
139 } |
284 | 140 |
141 #ifdef VMS | |
142 LIB$STOP (SS$_ABORT); | |
143 #else | |
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
144 /* 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
|
145 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
|
146 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
|
147 want to really receive it. */ |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
148 sigunblock (sigmask (fatal_error_code)); |
284 | 149 kill (getpid (), fatal_error_code); |
150 #endif /* not VMS */ | |
151 } | |
152 | |
153 /* Code for dealing with Lisp access to the Unix command line */ | |
154 | |
155 static | |
156 init_cmdargs (argc, argv, skip_args) | |
157 int argc; | |
158 char **argv; | |
159 int skip_args; | |
160 { | |
161 register int i; | |
162 | |
2313
ddab91a375d8
(init_cmdargs): Fix simple bug in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2279
diff
changeset
|
163 Vinvocation_name = Ffile_name_nondirectory (build_string (argv[0])); |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
164 |
284 | 165 Vcommand_line_args = Qnil; |
166 | |
167 for (i = argc - 1; i >= 0; i--) | |
168 { | |
169 if (i == 0 || i > skip_args) | |
170 Vcommand_line_args | |
171 = Fcons (build_string (argv[i]), Vcommand_line_args); | |
172 } | |
173 } | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
174 |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
175 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
|
176 "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
|
177 Any directory names are omitted.") |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
178 () |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
179 { |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
180 return Fcopy_sequence (Vinvocation_name); |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
181 } |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
182 |
284 | 183 |
184 #ifdef VMS | |
185 #ifdef LINK_CRTL_SHARE | |
186 #ifdef SHAREABLE_LIB_BUG | |
187 extern noshare char **environ; | |
188 #endif /* SHAREABLE_LIB_BUG */ | |
189 #endif /* LINK_CRTL_SHARE */ | |
190 #endif /* VMS */ | |
191 | |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
192 #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
|
193 /* 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
|
194 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
|
195 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
|
196 (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
|
197 #ifdef __GNUC__ |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
198 __do_global_ctors () |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
199 {} |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
200 __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
|
201 {} |
1074
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
202 __do_global_dtors () |
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
203 {} |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
204 char * __CTOR_LIST__[2] = { (char *) (-1), 0 }; |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
205 char * __DTOR_LIST__[2] = { (char *) (-1), 0 }; |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
206 __main () |
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
207 {} |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
208 #endif /* __GNUC__ */ |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
209 #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
|
210 |
284 | 211 /* ARGSUSED */ |
212 main (argc, argv, envp) | |
213 int argc; | |
214 char **argv; | |
215 char **envp; | |
216 { | |
217 char stack_bottom_variable; | |
218 int skip_args = 0; | |
219 extern int errno; | |
220 extern sys_nerr; | |
221 extern char *sys_errlist[]; | |
222 extern void malloc_warning (); | |
223 | |
224 /* Map in shared memory, if we are using that. */ | |
225 #ifdef HAVE_SHM | |
226 if (argc > 1 && !strcmp (argv[1], "-nl")) | |
227 { | |
228 map_in_data (0); | |
229 /* The shared memory was just restored, which clobbered this. */ | |
230 skip_args = 1; | |
231 } | |
232 else | |
233 { | |
234 map_in_data (1); | |
235 /* The shared memory was just restored, which clobbered this. */ | |
236 skip_args = 0; | |
237 } | |
238 #endif | |
239 | |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
240 #ifdef NeXT |
2649
3a9fb5d6d259
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
241 extern int malloc_cookie; |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
242 |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
243 /* This helps out unexnext.c. */ |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
244 if (initialized) |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
245 if (malloc_jumpstart (malloc_cookie) != 0) |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
246 printf ("malloc jumpstart failed!\n"); |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
247 #endif /* NeXT */ |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
248 |
284 | 249 #ifdef HAVE_X_WINDOWS |
348 | 250 /* Stupid kludge to catch command-line display spec. We can't |
251 handle this argument entirely in window system dependent code | |
252 because we don't even know which window system dependent code | |
253 to run until we've recognized this argument. */ | |
284 | 254 { |
255 int i; | |
256 | |
257 for (i = 1; (i < argc && ! display_arg); i++) | |
2674
2579fa92c809
(main): Handle -display like -d.
Richard M. Stallman <rms@gnu.org>
parents:
2649
diff
changeset
|
258 if (!strcmp (argv[i], "-d") || !strcmp (argv[i], "-display")) |
284 | 259 display_arg = 1; |
260 } | |
261 #endif | |
262 | |
263 #ifdef VMS | |
264 /* If -map specified, map the data file in */ | |
265 if (argc > 2 && ! strcmp (argv[1], "-map")) | |
266 { | |
267 skip_args = 2; | |
268 mapin_data (argv[2]); | |
269 } | |
270 | |
271 #ifdef LINK_CRTL_SHARE | |
272 #ifdef SHAREABLE_LIB_BUG | |
273 /* Bletcherous shared libraries! */ | |
274 if (!stdin) | |
275 stdin = fdopen (0, "r"); | |
276 if (!stdout) | |
277 stdout = fdopen (1, "w"); | |
278 if (!stderr) | |
279 stderr = fdopen (2, "w"); | |
280 if (!environ) | |
281 environ = envp; | |
282 #endif /* SHAREABLE_LIB_BUG */ | |
283 #endif /* LINK_CRTL_SHARE */ | |
284 #endif /* VMS */ | |
285 | |
286 /* Record (approximately) where the stack begins. */ | |
287 stack_bottom = &stack_bottom_variable; | |
288 | |
289 #ifdef RUN_TIME_REMAP | |
290 if (initialized) | |
291 run_time_remap (argv[0]); | |
292 #endif | |
293 | |
294 #ifdef USG_SHARED_LIBRARIES | |
295 if (bss_end) | |
296 brk (bss_end); | |
297 #endif | |
298 | |
299 clearerr (stdin); | |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
300 |
284 | 301 #ifdef BSD |
3434
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
302 { |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
303 #ifdef GETPGRP_NO_ARG |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
304 inherited_pgroup = getpgrp (); |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
305 #else /* THISSENTENCE_NO_VERB */ |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
306 inherited_pgroup = getpgrp (0); |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
307 #endif |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
308 setpgrp (0, getpid ()); |
3434
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
309 } |
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
310 #endif |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
311 |
284 | 312 |
313 #ifdef APOLLO | |
314 #ifndef APOLLO_SR10 | |
315 /* If USE_DOMAIN_ACLS environment variable exists, | |
316 use ACLs rather than UNIX modes. */ | |
317 if (egetenv ("USE_DOMAIN_ACLS")) | |
318 default_acl (USE_DEFACL); | |
319 #endif | |
320 #endif /* APOLLO */ | |
321 | |
322 #ifndef SYSTEM_MALLOC | |
323 if (! initialized) | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
324 { |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
325 /* 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
|
326 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
|
327 |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
328 /* 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
|
329 running. */ |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
330 uninterrupt_malloc (); |
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
331 } |
284 | 332 #endif /* not SYSTEM_MALLOC */ |
333 | |
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
|
334 #ifdef PRIO_PROCESS |
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
|
335 if (emacs_priority) |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
336 nice (emacs_priority); |
284 | 337 setuid (getuid ()); |
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
|
338 #endif /* PRIO_PROCESS */ |
284 | 339 |
340 inhibit_window_system = 0; | |
341 | |
420 | 342 /* Handle the -t switch, which specifies filename to use as terminal */ |
284 | 343 if (skip_args + 2 < argc && !strcmp (argv[skip_args + 1], "-t")) |
344 { | |
345 int result; | |
346 skip_args += 2; | |
347 close (0); | |
348 close (1); | |
349 result = open (argv[skip_args], O_RDWR, 2 ); | |
350 if (result < 0) | |
351 { | |
352 char *errstring; | |
353 | |
354 if (errno >= 0 && errno < sys_nerr) | |
355 errstring = sys_errlist[errno]; | |
356 else | |
357 errstring = "undocumented error code"; | |
358 fprintf (stderr, "emacs: %s: %s\n", argv[skip_args], errstring); | |
359 exit (1); | |
360 } | |
361 dup (0); | |
362 if (! isatty (0)) | |
363 { | |
364 fprintf (stderr, "emacs: %s: not a tty\n", argv[skip_args]); | |
365 exit (1); | |
366 } | |
367 fprintf (stderr, "Using %s\n", argv[skip_args]); | |
368 #ifdef HAVE_X_WINDOWS | |
369 inhibit_window_system = 1; /* -t => -nw */ | |
370 #endif | |
371 } | |
372 | |
373 if (skip_args + 1 < argc | |
374 && (!strcmp (argv[skip_args + 1], "-nw"))) | |
375 { | |
376 skip_args += 1; | |
377 inhibit_window_system = 1; | |
378 } | |
379 | |
380 /* Handle the -batch switch, which means don't do interactive display. */ | |
381 noninteractive = 0; | |
382 if (skip_args + 1 < argc && !strcmp (argv[skip_args + 1], "-batch")) | |
383 { | |
384 skip_args += 1; | |
385 noninteractive = 1; | |
386 } | |
387 | |
348 | 388 #ifdef POSIX_SIGNALS |
389 init_signals (); | |
390 #endif | |
391 | |
284 | 392 if ( |
393 #ifndef CANNOT_DUMP | |
394 ! noninteractive || initialized | |
395 #else | |
396 1 | |
397 #endif | |
398 ) | |
399 { | |
400 /* Don't catch these signals in batch mode if not initialized. | |
401 On some machines, this sets static data that would make | |
402 signal fail to work right when the dumped Emacs is run. */ | |
403 signal (SIGHUP, fatal_error_signal); | |
404 signal (SIGQUIT, fatal_error_signal); | |
405 signal (SIGILL, fatal_error_signal); | |
406 signal (SIGTRAP, fatal_error_signal); | |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
407 #ifdef SIGIOT |
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
408 /* This is missing on some systems - OS/2, for example. */ |
284 | 409 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
|
410 #endif |
284 | 411 #ifdef SIGEMT |
412 signal (SIGEMT, fatal_error_signal); | |
413 #endif | |
414 signal (SIGFPE, fatal_error_signal); | |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
415 #ifdef SIGBUS |
284 | 416 signal (SIGBUS, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
417 #endif |
284 | 418 signal (SIGSEGV, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
419 #ifdef SIGSYS |
284 | 420 signal (SIGSYS, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
421 #endif |
284 | 422 signal (SIGTERM, fatal_error_signal); |
423 #ifdef SIGXCPU | |
424 signal (SIGXCPU, fatal_error_signal); | |
425 #endif | |
426 #ifdef SIGXFSZ | |
427 signal (SIGXFSZ, fatal_error_signal); | |
428 #endif /* SIGXFSZ */ | |
429 | |
430 #ifdef AIX | |
431 signal (SIGDANGER, fatal_error_signal); | |
432 signal (20, fatal_error_signal); | |
433 signal (21, fatal_error_signal); | |
434 signal (22, fatal_error_signal); | |
435 signal (23, fatal_error_signal); | |
436 signal (24, fatal_error_signal); | |
372 | 437 #ifdef SIGIO |
284 | 438 signal (SIGAIO, fatal_error_signal); |
439 signal (SIGPTY, fatal_error_signal); | |
372 | 440 #endif |
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
441 #ifndef _I386 |
284 | 442 signal (SIGIOINT, fatal_error_signal); |
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
443 #endif |
284 | 444 signal (SIGGRANT, fatal_error_signal); |
445 signal (SIGRETRACT, fatal_error_signal); | |
446 signal (SIGSOUND, fatal_error_signal); | |
447 signal (SIGMSG, fatal_error_signal); | |
448 #endif /* AIX */ | |
449 } | |
450 | |
451 noninteractive1 = noninteractive; | |
452 | |
453 /* Perform basic initializations (not merely interning symbols) */ | |
454 | |
455 if (!initialized) | |
456 { | |
457 init_alloc_once (); | |
458 init_obarray (); | |
459 init_eval_once (); | |
460 init_syntax_once (); /* Create standard syntax table. */ | |
461 /* Must be done before init_buffer */ | |
462 init_casetab_once (); | |
463 init_buffer_once (); /* Create buffer table and some buffers */ | |
464 init_minibuf_once (); /* Create list of minibuffers */ | |
465 /* Must precede init_window_once */ | |
466 init_window_once (); /* Init the window system */ | |
467 } | |
468 | |
469 init_alloc (); | |
470 init_eval (); | |
471 init_data (); | |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
472 |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
473 /* 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
|
474 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
|
475 until calling init_callproc. */ |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
476 set_process_environment (); |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
477 |
348 | 478 init_lread (); |
284 | 479 |
480 init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */ | |
481 init_buffer (); /* Init default directory of main buffer */ | |
482 if (!noninteractive) | |
483 { | |
484 #ifdef VMS | |
763 | 485 init_vms_input ();/* init_display calls get_frame_size, that needs this */ |
284 | 486 #endif /* VMS */ |
487 init_display (); /* Determine terminal type. init_sys_modes uses results */ | |
488 } | |
489 init_keyboard (); /* This too must precede init_sys_modes */ | |
490 init_callproc (); /* And this too. */ | |
491 #ifdef VMS | |
492 init_vmsproc (); /* And this too. */ | |
493 #endif /* VMS */ | |
494 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */ | |
495 init_xdisp (); | |
496 init_macros (); | |
497 init_editfns (); | |
498 #ifdef LISP_FLOAT_TYPE | |
499 init_floatfns (); | |
500 #endif | |
501 #ifdef VMS | |
502 init_vmsfns (); | |
503 #endif /* VMS */ | |
504 init_process (); | |
624 | 505 #ifdef CLASH_DETECTION |
506 init_filelock (); | |
507 #endif /* CLASH_DETECTION */ | |
284 | 508 |
509 /* Intern the names of all standard functions and variables; define standard keys */ | |
510 | |
511 if (!initialized) | |
512 { | |
513 /* The basic levels of Lisp must come first */ | |
514 /* And data must come first of all | |
515 for the sake of symbols like error-message */ | |
516 syms_of_data (); | |
517 syms_of_alloc (); | |
348 | 518 syms_of_lread (); |
284 | 519 syms_of_print (); |
520 syms_of_eval (); | |
521 syms_of_fns (); | |
522 #ifdef LISP_FLOAT_TYPE | |
523 syms_of_floatfns (); | |
524 #endif | |
525 | |
526 syms_of_abbrev (); | |
527 syms_of_buffer (); | |
528 syms_of_bytecode (); | |
529 syms_of_callint (); | |
530 syms_of_casefiddle (); | |
531 syms_of_casetab (); | |
532 syms_of_callproc (); | |
533 syms_of_cmds (); | |
534 #ifndef NO_DIR_LIBRARY | |
535 syms_of_dired (); | |
536 #endif /* not NO_DIR_LIBRARY */ | |
537 syms_of_display (); | |
538 syms_of_doc (); | |
539 syms_of_editfns (); | |
540 syms_of_emacs (); | |
541 syms_of_fileio (); | |
542 #ifdef CLASH_DETECTION | |
543 syms_of_filelock (); | |
544 #endif /* CLASH_DETECTION */ | |
545 syms_of_indent (); | |
546 syms_of_keyboard (); | |
547 syms_of_keymap (); | |
548 syms_of_macros (); | |
549 syms_of_marker (); | |
550 syms_of_minibuf (); | |
551 syms_of_mocklisp (); | |
552 syms_of_process (); | |
553 syms_of_search (); | |
763 | 554 syms_of_frame (); |
284 | 555 syms_of_syntax (); |
556 syms_of_undo (); | |
1284 | 557 |
558 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ | |
559 syms_of_textprop (); | |
284 | 560 #ifdef VMS |
561 syms_of_vmsproc (); | |
562 #endif /* VMS */ | |
563 syms_of_window (); | |
564 syms_of_xdisp (); | |
565 #ifdef HAVE_X_WINDOWS | |
375 | 566 syms_of_xterm (); |
284 | 567 syms_of_xfns (); |
2392
319c8db6eb51
(main): Call syms_of_xfaces.
Richard M. Stallman <rms@gnu.org>
parents:
2313
diff
changeset
|
568 syms_of_xfaces (); |
375 | 569 #ifdef HAVE_X11 |
570 syms_of_xselect (); | |
571 #endif | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1774
diff
changeset
|
572 #ifdef HAVE_X_MENU |
284 | 573 syms_of_xmenu (); |
574 #endif /* HAVE_X_MENU */ | |
575 #endif /* HAVE_X_WINDOWS */ | |
576 | |
577 #ifdef SYMS_SYSTEM | |
578 SYMS_SYSTEM; | |
579 #endif | |
580 | |
581 #ifdef SYMS_MACHINE | |
582 SYMS_MACHINE; | |
583 #endif | |
584 | |
585 keys_of_casefiddle (); | |
586 keys_of_cmds (); | |
587 keys_of_buffer (); | |
588 keys_of_keyboard (); | |
589 keys_of_keymap (); | |
590 keys_of_macros (); | |
591 keys_of_minibuf (); | |
592 keys_of_window (); | |
1384
416f7f33fe95
* emacs.c (main): Call keys_of_frame.
Jim Blandy <jimb@redhat.com>
parents:
1350
diff
changeset
|
593 keys_of_frame (); |
284 | 594 } |
595 | |
596 if (!initialized) | |
597 { | |
598 /* Handle -l loadup-and-dump, args passed by Makefile. */ | |
599 if (argc > 2 + skip_args && !strcmp (argv[1 + skip_args], "-l")) | |
600 Vtop_level = Fcons (intern ("load"), | |
601 Fcons (build_string (argv[2 + skip_args]), Qnil)); | |
602 #ifdef CANNOT_DUMP | |
603 /* Unless next switch is -nl, load "loadup.el" first thing. */ | |
604 if (!(argc > 1 + skip_args && !strcmp (argv[1 + skip_args], "-nl"))) | |
605 Vtop_level = Fcons (intern ("load"), | |
606 Fcons (build_string ("loadup.el"), Qnil)); | |
607 #endif /* CANNOT_DUMP */ | |
608 } | |
609 | |
610 initialized = 1; | |
611 | |
815 | 612 #ifdef sun |
613 /* sun's localtime() has a bug. it caches the value of the time | |
614 zone rather than looking it up every time. Since localtime() is | |
615 called to bolt the undumping time into the undumped emacs, this | |
616 results in localtime() ignoring the TZ environment variable. | |
617 This flushes the new TZ value into localtime(). */ | |
618 tzset(); | |
619 #endif /* sun */ | |
620 | |
284 | 621 /* Enter editor command loop. This never returns. */ |
622 Frecursive_edit (); | |
623 /* NOTREACHED */ | |
624 } | |
625 | |
626 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
|
627 "Exit the Emacs job and kill it.\n\ |
284 | 628 If ARG is an integer, return ARG as the exit program code.\n\ |
629 If ARG is a string, stuff it as keyboard input.\n\n\ | |
630 The value of `kill-emacs-hook', if not void,\n\ | |
631 is a list of functions (of no args),\n\ | |
632 all of which are called before Emacs is actually killed.") | |
633 (arg) | |
634 Lisp_Object arg; | |
635 { | |
636 Lisp_Object hook, hook1; | |
637 int i; | |
638 struct gcpro gcpro1; | |
639 | |
640 GCPRO1 (arg); | |
641 | |
642 if (feof (stdin)) | |
643 arg = Qt; | |
644 | |
505 | 645 if (!NILP (Vrun_hooks) && !noninteractive) |
284 | 646 call1 (Vrun_hooks, intern ("kill-emacs-hook")); |
647 | |
648 UNGCPRO; | |
649 | |
650 /* Is it really necessary to do this deassign | |
651 when we are going to exit anyway? */ | |
652 /* #ifdef VMS | |
653 stop_vms_input (); | |
654 #endif */ | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
655 |
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
656 shut_down_emacs (0, 0); |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
657 |
284 | 658 exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) |
659 #ifdef VMS | |
660 : 1 | |
661 #else | |
662 : 0 | |
663 #endif | |
664 ); | |
665 /* NOTREACHED */ | |
666 } | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
667 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
668 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
669 /* 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
|
670 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
|
671 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
|
672 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
|
673 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
|
674 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
675 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
|
676 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
677 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
|
678 and Fkill_emacs. */ |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
679 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
680 void |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
681 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
|
682 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
|
683 Lisp_Object stuff; |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
684 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
685 /* 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
|
686 #ifdef EMACS_HAVE_TTY_PGRP |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
687 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
688 int tpgrp; |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
689 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1 |
3434
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
690 #ifdef GETPGRP_NO_ARG |
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
691 && tpgrp == getpgrp ()) |
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
692 #else |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
693 && tpgrp == getpgrp (0)) |
3434
e7558407ad29
(shut_down_emacs): Handle GETPGRP_NO_ARG.
Richard M. Stallman <rms@gnu.org>
parents:
3320
diff
changeset
|
694 #endif |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
695 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
696 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
697 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
698 if (sig && sig != SIGTERM) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
699 fprintf (stderr, "Fatal error (%d).", sig); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
700 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
701 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
702 #else |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
703 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
704 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
705 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
706 |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
707 stuff_buffered_input (stuff); |
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
708 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
709 kill_buffer_processes (Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
710 Fdo_auto_save (Qt, Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
711 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
712 #ifdef CLASH_DETECTION |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
713 unlock_all_files (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
714 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
715 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
716 #ifdef VMS |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
717 kill_vms_processes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
718 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
719 |
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
720 #ifdef HAVE_X_WINDOWS |
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
721 if (!noninteractive && EQ (Vwindow_system, intern ("x")) && ! no_x) |
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
722 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
|
723 #endif /* HAVE_X_WINDOWS */ |
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
724 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
725 #ifdef SIGIO |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
726 /* 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
|
727 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
|
728 unrequest_sigio (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
729 signal (SIGIO, SIG_IGN); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
730 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
731 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
732 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
733 |
284 | 734 |
735 #ifndef CANNOT_DUMP | |
736 /* Nothing like this can be implemented on an Apollo. | |
737 What a loss! */ | |
738 | |
739 #ifdef HAVE_SHM | |
740 | |
741 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0, | |
742 "Dump current state of Emacs into data file FILENAME.\n\ | |
743 This function exists on systems that use HAVE_SHM.") | |
744 (intoname) | |
745 Lisp_Object intoname; | |
746 { | |
747 extern int my_edata; | |
748 Lisp_Object tem; | |
749 extern void malloc_warning (); | |
750 | |
751 CHECK_STRING (intoname, 0); | |
752 intoname = Fexpand_file_name (intoname, Qnil); | |
753 | |
754 tem = Vpurify_flag; | |
755 Vpurify_flag = Qnil; | |
756 | |
757 fflush (stdout); | |
758 /* Tell malloc where start of impure now is */ | |
759 /* Also arrange for warnings when nearly out of space. */ | |
760 #ifndef SYSTEM_MALLOC | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
761 memory_warnings (&my_edata, malloc_warning); |
284 | 762 #endif |
763 map_out_data (XSTRING (intoname)->data); | |
764 | |
765 Vpurify_flag = tem; | |
766 | |
767 return Qnil; | |
768 } | |
769 | |
770 #else /* not HAVE_SHM */ | |
771 | |
772 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0, | |
773 "Dump current state of Emacs into executable file FILENAME.\n\ | |
774 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\ | |
775 This is used in the file `loadup.el' when building Emacs.\n\ | |
776 \n\ | |
777 Bind `command-line-processed' to nil before dumping,\n\ | |
778 if you want the dumped Emacs to process its command line\n\ | |
779 and announce itself normally when it is run.") | |
780 (intoname, symname) | |
781 Lisp_Object intoname, symname; | |
782 { | |
783 extern int my_edata; | |
784 Lisp_Object tem; | |
785 extern void malloc_warning (); | |
786 | |
787 CHECK_STRING (intoname, 0); | |
788 intoname = Fexpand_file_name (intoname, Qnil); | |
505 | 789 if (!NILP (symname)) |
284 | 790 { |
791 CHECK_STRING (symname, 0); | |
792 if (XSTRING (symname)->size) | |
793 symname = Fexpand_file_name (symname, Qnil); | |
794 } | |
795 | |
796 tem = Vpurify_flag; | |
797 Vpurify_flag = Qnil; | |
798 | |
799 fflush (stdout); | |
800 #ifdef VMS | |
801 mapout_data (XSTRING (intoname)->data); | |
802 #else | |
803 /* Tell malloc where start of impure now is */ | |
804 /* Also arrange for warnings when nearly out of space. */ | |
805 #ifndef SYSTEM_MALLOC | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
806 memory_warnings (&my_edata, malloc_warning); |
284 | 807 #endif |
808 unexec (XSTRING (intoname)->data, | |
505 | 809 !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0); |
284 | 810 #endif /* not VMS */ |
811 | |
812 Vpurify_flag = tem; | |
813 | |
814 return Qnil; | |
815 } | |
816 | |
817 #endif /* not HAVE_SHM */ | |
818 | |
819 #endif /* not CANNOT_DUMP */ | |
820 | |
2649
3a9fb5d6d259
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
821 #ifndef SEPCHAR |
284 | 822 #define SEPCHAR ':' |
823 #endif | |
824 | |
825 Lisp_Object | |
826 decode_env_path (evarname, defalt) | |
827 char *evarname, *defalt; | |
828 { | |
829 register char *path, *p; | |
830 extern char *index (); | |
831 | |
832 Lisp_Object lpath; | |
833 | |
505 | 834 /* It's okay to use getenv here, because this function is only used |
835 to initialize variables when Emacs starts up, and isn't called | |
836 after that. */ | |
638 | 837 if (evarname != 0) |
838 path = (char *) getenv (evarname); | |
839 else | |
840 path = 0; | |
284 | 841 if (!path) |
842 path = defalt; | |
843 lpath = Qnil; | |
844 while (1) | |
845 { | |
846 p = index (path, SEPCHAR); | |
847 if (!p) p = path + strlen (path); | |
848 lpath = Fcons (p - path ? make_string (path, p - path) : Qnil, | |
849 lpath); | |
850 if (*p) | |
851 path = p + 1; | |
852 else | |
853 break; | |
854 } | |
855 return Fnreverse (lpath); | |
856 } | |
857 | |
858 syms_of_emacs () | |
859 { | |
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
860 #ifndef CANNOT_DUMP |
284 | 861 #ifdef HAVE_SHM |
862 defsubr (&Sdump_emacs_data); | |
863 #else | |
864 defsubr (&Sdump_emacs); | |
865 #endif | |
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
866 #endif |
284 | 867 |
868 defsubr (&Skill_emacs); | |
869 | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
870 defsubr (&Sinvocation_name); |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
871 |
284 | 872 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, |
873 "Args passed by shell to Emacs, as a list of strings."); | |
874 | |
875 DEFVAR_LISP ("system-type", &Vsystem_type, | |
876 "Value is symbol indicating type of operating system you are using."); | |
877 Vsystem_type = intern (SYSTEM_TYPE); | |
878 | |
879 DEFVAR_BOOL ("noninteractive", &noninteractive1, | |
880 "Non-nil means Emacs is running without interactive terminal."); | |
732 | 881 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
882 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
|
883 "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
|
884 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
|
885 in other similar situations), functions placed on this hook should not\n\ |
3454
0761060b16a3
(syms_of_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3434
diff
changeset
|
886 expect to be able to interact with the user."); |
732 | 887 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
|
888 |
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
|
889 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
|
890 "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
|
891 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
|
892 and only if the Emacs executable is installed with setuid to permit\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
|
893 it to change priority. (Emacs sets its uid back to the real uid.)"); |
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
|
894 emacs_priority = 0; |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
895 |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
896 staticpro (&Vinvocation_name); |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
897 Vinvocation_name = Qnil; |
284 | 898 } |