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