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