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