Mercurial > emacs
annotate src/emacs.c @ 29404:5b490e305c65
comment
author | Dave Love <fx@gnu.org> |
---|---|
date | Sat, 03 Jun 2000 18:53:11 +0000 |
parents | b3592c1e9ddb |
children | f93f1d35850a |
rev | line source |
---|---|
284 | 1 /* Fully extensible Emacs, running on Unix, intended for GNU. |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999 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 | |
14862 | 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 Boston, MA 02111-1307, USA. */ | |
284 | 20 |
21 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
22 #include <config.h> |
284 | 23 #include <signal.h> |
24 #include <errno.h> | |
25 #include <stdio.h> | |
26 | |
27 #include <sys/types.h> | |
28 #include <sys/file.h> | |
29 | |
30 #ifdef VMS | |
31 #include <ssdef.h> | |
32 #endif | |
33 | |
25746
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
34 #ifdef HAVE_UNISTD_H |
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
35 #include <unistd.h> |
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
36 #endif |
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
37 |
16219
7f3f182f20a3
Replace symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16091
diff
changeset
|
38 #ifdef BSD_SYSTEM |
284 | 39 #include <sys/ioctl.h> |
40 #endif | |
41 | |
42 #include "lisp.h" | |
43 #include "commands.h" | |
1284 | 44 #include "intervals.h" |
21722 | 45 #include "buffer.h" |
284 | 46 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
47 #include "systty.h" |
14502 | 48 #include "blockinput.h" |
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
49 #include "syssignal.h" |
4589 | 50 #include "process.h" |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
51 #include "termhooks.h" |
21514 | 52 #include "keyboard.h" |
554 | 53 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
54 #ifdef HAVE_SETLOCALE |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
55 #include <locale.h> |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
56 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
57 |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
58 #ifdef HAVE_SETRLIMIT |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
59 #include <sys/time.h> |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
60 #include <sys/resource.h> |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
61 #endif |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
62 |
284 | 63 #ifndef O_RDWR |
64 #define O_RDWR 2 | |
65 #endif | |
66 | |
29125
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
67 #ifdef HAVE_SETPGID |
29150
0398ec3316c5
(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
Gerd Moellmann <gerd@gnu.org>
parents:
29125
diff
changeset
|
68 #if !defined (USG) || defined (BSD_PGRPS) |
29125
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
69 #define setpgrp setpgid |
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
70 #endif |
29150
0398ec3316c5
(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
Gerd Moellmann <gerd@gnu.org>
parents:
29125
diff
changeset
|
71 #endif |
29125
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
72 |
6027
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
73 extern void malloc_warning (); |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
74 extern void set_time_zone_rule (); |
6027
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
75 extern char *index (); |
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
76 |
26532
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
77 /* Make these values available in GDB, which doesn't see macros. */ |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
78 |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
79 EMACS_INT gdb_valbits = VALBITS; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
80 EMACS_INT gdb_gctypebits = GCTYPEBITS; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
81 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
82 #ifdef DATA_SEG_BITS |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
83 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
84 #else |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
85 EMACS_INT gdb_data_seg_bits = 0; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
86 #endif |
26567 | 87 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG; |
26532
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
88 |
284 | 89 /* Command line args from shell, as list of strings */ |
90 Lisp_Object Vcommand_line_args; | |
91 | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
92 /* 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
|
93 names discarded. */ |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
94 Lisp_Object Vinvocation_name; |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
95 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
96 /* The directory name from which Emacs was invoked. */ |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
97 Lisp_Object Vinvocation_directory; |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
98 |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
99 /* 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
|
100 nil means get them only from PATH_LOADSEARCH. */ |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
101 Lisp_Object Vinstallation_directory; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
102 |
732 | 103 /* Hook run by `kill-emacs' before it does really anything. */ |
104 Lisp_Object Vkill_emacs_hook; | |
105 | |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
106 #ifdef SIGUSR1 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
107 /* Hooks for signal USR1 and USR2 handing */ |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
108 Lisp_Object Vsignal_USR1_hook; |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
109 #ifdef SIGUSR2 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
110 Lisp_Object Vsignal_USR2_hook; |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
111 #endif |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
112 #endif |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
113 |
21622
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
114 /* Search path separator. */ |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
115 Lisp_Object Vpath_separator; |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
116 |
284 | 117 /* Set nonzero after Emacs has started up the first time. |
118 Prevents reinitialization of the Lisp world and keymaps | |
119 on subsequent starts. */ | |
120 int initialized; | |
121 | |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
122 #ifdef DOUG_LEA_MALLOC |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
123 /* Preserves a pointer to the memory allocated that copies that |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
124 static data inside glibc's malloc. */ |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
125 void *malloc_state_ptr; |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
126 /* From glibc, a routine that returns a copy of the malloc internal state. */ |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
127 extern void *malloc_get_state (); |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
128 /* From glibc, a routine that overwrites the malloc internal state. */ |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
129 extern void malloc_set_state (); |
24405
61704c572291
(main) [DOUG_LEA_MALLOC]: Work around a bug in glibc's
Andreas Schwab <schwab@suse.de>
parents:
24374
diff
changeset
|
130 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while |
61704c572291
(main) [DOUG_LEA_MALLOC]: Work around a bug in glibc's
Andreas Schwab <schwab@suse.de>
parents:
24374
diff
changeset
|
131 dumping. Used to work around a bug in glibc's malloc. */ |
61704c572291
(main) [DOUG_LEA_MALLOC]: Work around a bug in glibc's
Andreas Schwab <schwab@suse.de>
parents:
24374
diff
changeset
|
132 int malloc_using_checking; |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
133 #endif |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
134 |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
135 /* Variable whose value is symbol giving operating system type. */ |
284 | 136 Lisp_Object Vsystem_type; |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
137 |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
138 /* 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
|
139 Lisp_Object Vsystem_configuration; |
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
140 |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
141 /* Variable whose value is string giving configuration options, |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
142 for use when reporting bugs. */ |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
143 Lisp_Object Vsystem_configuration_options; |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
144 |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
145 Lisp_Object Qfile_name_handler_alist; |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
146 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
147 /* Current and previous system locales for messages and time. */ |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
148 Lisp_Object Vsystem_messages_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
149 Lisp_Object Vprevious_system_messages_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
150 Lisp_Object Vsystem_time_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
151 Lisp_Object Vprevious_system_time_locale; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
152 |
284 | 153 /* If non-zero, emacs should not attempt to use an window-specific code, |
154 but instead should use the virtual terminal under which it was started */ | |
155 int inhibit_window_system; | |
156 | |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
157 /* 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
|
158 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
|
159 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
|
160 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
|
161 |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
162 /* If non-zero a filter or a sentinel is running. Tested to save the match |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
163 data on the first attempt to change it inside asynchronous code. */ |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
164 int running_asynch_code; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
165 |
6863
2aab30ba72b4
(inherited_pgroup): Conditionalize on BSD_PGRPS.
Richard M. Stallman <rms@gnu.org>
parents:
6814
diff
changeset
|
166 #ifdef BSD_PGRPS |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
167 /* See sysdep.c. */ |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
168 extern int inherited_pgroup; |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
169 #endif |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
170 |
284 | 171 #ifdef HAVE_X_WINDOWS |
172 /* If non-zero, -d was specified, meaning we're using some window system. */ | |
173 int display_arg; | |
174 #endif | |
175 | |
176 /* An address near the bottom of the stack. | |
177 Tells GC how to save a copy of the stack. */ | |
178 char *stack_bottom; | |
179 | |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
180 #ifdef HAVE_WINDOW_SYSTEM |
284 | 181 extern Lisp_Object Vwindow_system; |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
182 #endif /* HAVE_WINDOW_SYSTEM */ |
284 | 183 |
11720
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
184 extern Lisp_Object Vauto_save_list_file_name; |
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
185 |
284 | 186 #ifdef USG_SHARED_LIBRARIES |
187 /* If nonzero, this is the place to put the end of the writable segment | |
188 at startup. */ | |
189 | |
190 unsigned int bss_end = 0; | |
191 #endif | |
192 | |
193 /* Nonzero means running Emacs without interactive terminal. */ | |
194 | |
195 int noninteractive; | |
196 | |
197 /* Value of Lisp variable `noninteractive'. | |
198 Normally same as C variable `noninteractive' | |
199 but nothing terrible happens if user sets this one. */ | |
200 | |
201 int noninteractive1; | |
7869
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
202 |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
203 /* Save argv and argc. */ |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
204 char **initial_argv; |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
205 int initial_argc; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
206 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
207 static void sort_args (); |
21514 | 208 void syms_of_emacs (); |
27472 | 209 |
27627
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
210 #define USAGE1 "\ |
27472 | 211 Usage: %s [OPTION-OR-FILENAME]...\n\ |
212 \n\ | |
213 Run Emacs, the extensible, customizable, self-documenting real-time\n\ | |
214 display editor. The recommended way to start Emacs for normal editing\n\ | |
215 is with no options at all.\n\ | |
216 \n\ | |
217 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\ | |
218 read the main documentation for these command-line arguments.\n\ | |
219 \n\ | |
220 Initialization options:\n\ | |
221 \n\ | |
222 --batch do not do interactive display; implies -q\n\ | |
223 --debug-init enable Emacs Lisp debugger during init file\n\ | |
224 --help display this help message and exit\n\ | |
225 --multibyte, --no-unibyte run Emacs in multibyte mode\n\ | |
226 --no-init-file, -q load neither ~/.emacs nor default.el\n\ | |
227 --no-shared-memory, -nl do not use shared memory\n\ | |
228 --no-site-file do not load site-start.el\n\ | |
229 --no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\ | |
230 --terminal, -t DEVICE use DEVICE for terminal I/O\n\ | |
231 --unibyte, --no-multibyte run Emacs in unibyte mode\n\ | |
232 --user, -u USER load ~USER/.emacs instead of your own\n\ | |
233 --version display version information and exit\n\ | |
234 \n\ | |
235 Action options:\n\ | |
236 \n\ | |
237 FILE visit FILE using find-file\n\ | |
238 +LINENUM FILE visit FILE using find-file, then go to line LINENUM\n\ | |
239 --directory, -L DIR add DIR to variable load-path\n\ | |
240 --eval EXPR evaluate Emacs Lisp expression EXPR\n\ | |
241 --execute EXPR evaluate Emacs Lisp expression EXPR\n\ | |
242 --find-file FILE visit FILE\n\ | |
243 --funcall, -f FUNC call Emacs function FUNC with no arguments\n\ | |
244 --insert FILE insert contents of FILE into current buffer\n\ | |
245 --kill exit without asking for confirmation\n\ | |
246 --load, -l FILE load FILE of Emacs Lisp code using the load function\n\ | |
247 --visit FILE visit FILE\n\ | |
27627
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
248 \n" |
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
249 |
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
250 #define USAGE2 "\ |
27538
3d62fa3917d1
(USAGE): Use term `display options' instead of `X
Gerd Moellmann <gerd@gnu.org>
parents:
27472
diff
changeset
|
251 Display options:\n\ |
27472 | 252 \n\ |
253 --background-color, -bg COLOR window background color\n\ | |
254 --border-color, -bd COLOR main border color\n\ | |
255 --border-width, -bw WIDTH width of main border\n\ | |
256 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\ | |
257 --display, -d DISPLAY use X server DISPLAY\n\ | |
258 --font, -fn FONT default font; must be fixed-widthp\n\ | |
259 --foreground-color, -fg COLOR window foreground color\n\ | |
260 --geometry, -g GEOMETRY window geometry\n\ | |
261 --iconic start Emacs in iconified state\n\ | |
262 --icon-type, -i use picture of gnu for Emacs icon\n\ | |
263 --internal-border, -ib WIDTH width between text and main border\n\ | |
28689
8bf7396f359d
(USAGE2): Add `--line-spacing' and `-lsp'.
Gerd Moellmann <gerd@gnu.org>
parents:
28407
diff
changeset
|
264 --line-spacing, -lsp PIXELS additional space to put between lines\n\ |
27472 | 265 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\ |
266 --name NAME title of main Emacs window\n\ | |
267 --reverse-video, -r, -rv switch foreground and background\n\ | |
268 --title, -T, -wn, TITLE title for Emacs windows\n\ | |
269 --vertical-scroll-bars, -vb enable vertical scroll bars\n\ | |
270 --xrm XRESOURCES set additional X resources\n\ | |
271 \n\ | |
272 You can generally also specify long option names with a single -; for\n\ | |
273 example, -batch as well as --batch. You can use any unambiguous\n\ | |
274 abbreviation for a --option.\n\ | |
275 \n\ | |
276 Various environment variables and window system resources also affect\n\ | |
277 Emacs' operation. See the main documentation.\n\ | |
278 \n\ | |
279 Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\ | |
280 section of the Emacs manual or the file BUGS.\n" | |
281 | |
284 | 282 |
283 /* Signal code for the fatal signal that was received */ | |
284 int fatal_error_code; | |
285 | |
286 /* Nonzero if handling a fatal error already */ | |
287 int fatal_error_in_progress; | |
288 | |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
289 #ifdef SIGUSR1 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
290 SIGTYPE |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
291 handle_USR1_signal (sig) |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
292 int sig; |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
293 { |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
294 struct input_event buf; |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
295 |
24374
80d0a3294c24
Don't define Qusr1_signal and Qusr2_signal.
Andreas Schwab <schwab@suse.de>
parents:
24364
diff
changeset
|
296 buf.kind = user_signal; |
80d0a3294c24
Don't define Qusr1_signal and Qusr2_signal.
Andreas Schwab <schwab@suse.de>
parents:
24364
diff
changeset
|
297 buf.code = 0; |
25667
7300ea0dd52c
(handle_USR1_signal): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25452
diff
changeset
|
298 buf.frame_or_window = selected_frame; |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
299 buf.modifiers = 0; |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
300 buf.timestamp = 0; |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
301 |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
302 kbd_buffer_store_event (&buf); |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
303 } |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
304 #endif /* SIGUSR1 */ |
20527 | 305 |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
306 #ifdef SIGUSR2 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
307 SIGTYPE |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
308 handle_USR2_signal (sig) |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
309 int sig; |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
310 { |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
311 struct input_event buf; |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
312 |
24374
80d0a3294c24
Don't define Qusr1_signal and Qusr2_signal.
Andreas Schwab <schwab@suse.de>
parents:
24364
diff
changeset
|
313 buf.kind = user_signal; |
80d0a3294c24
Don't define Qusr1_signal and Qusr2_signal.
Andreas Schwab <schwab@suse.de>
parents:
24364
diff
changeset
|
314 buf.code = 1; |
25667
7300ea0dd52c
(handle_USR1_signal): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25452
diff
changeset
|
315 buf.frame_or_window = selected_frame; |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
316 buf.modifiers = 0; |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
317 buf.timestamp = 0; |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
318 |
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
319 kbd_buffer_store_event (&buf); |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
320 } |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
321 #endif /* SIGUSR2 */ |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
322 |
28932
f8b0ac62f238
Use the term `invalid' instead of `illegal'.
Gerd Moellmann <gerd@gnu.org>
parents:
28689
diff
changeset
|
323 /* Handle bus errors, invalid instruction, etc. */ |
505 | 324 SIGTYPE |
284 | 325 fatal_error_signal (sig) |
326 int sig; | |
327 { | |
328 fatal_error_code = sig; | |
329 signal (sig, SIG_DFL); | |
330 | |
14497
002c4d6b3e28
(fatal_error_signal): Do TOTALLY_UNBLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
14399
diff
changeset
|
331 TOTALLY_UNBLOCK_INPUT; |
002c4d6b3e28
(fatal_error_signal): Do TOTALLY_UNBLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
14399
diff
changeset
|
332 |
284 | 333 /* 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
|
334 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
|
335 { |
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
336 fatal_error_in_progress = 1; |
284 | 337 |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
338 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
|
339 } |
284 | 340 |
341 #ifdef VMS | |
342 LIB$STOP (SS$_ABORT); | |
343 #else | |
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
344 /* 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
|
345 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
|
346 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
|
347 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
|
348 #ifndef MSDOS |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
349 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
|
350 #endif |
284 | 351 kill (getpid (), fatal_error_code); |
352 #endif /* not VMS */ | |
353 } | |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
354 |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
355 #ifdef SIGDANGER |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
356 |
6171 | 357 /* Handler for SIGDANGER. */ |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
358 SIGTYPE |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
359 memory_warning_signal (sig) |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
360 int sig; |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
361 { |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
362 signal (sig, memory_warning_signal); |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
363 |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
364 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
|
365 |
38931e897e56
(memory_warning_signal): Call force_auto_save_soon.
Richard M. Stallman <rms@gnu.org>
parents:
7164
diff
changeset
|
366 /* 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
|
367 force_auto_save_soon (); |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
368 } |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
369 #endif |
20527 | 370 |
371 /* We define abort, rather than using it from the library, | |
21418
8e54230531dc
(abort): Don't redefine on MSDOS.
Karl Heuer <kwzh@gnu.org>
parents:
21406
diff
changeset
|
372 so that GDB can return from a breakpoint here. |
8e54230531dc
(abort): Don't redefine on MSDOS.
Karl Heuer <kwzh@gnu.org>
parents:
21406
diff
changeset
|
373 MSDOS has its own definition on msdos.c */ |
20527 | 374 |
21832
daf559874709
(abort): Omit this definition, if NO_ABORT.
Richard M. Stallman <rms@gnu.org>
parents:
21812
diff
changeset
|
375 #if ! defined (DOS_NT) && ! defined (NO_ABORT) |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
376 |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
377 #ifndef ABORT_RETURN_TYPE |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
378 #define ABORT_RETURN_TYPE void |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
379 #endif |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
380 |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
381 ABORT_RETURN_TYPE |
20527 | 382 abort () |
383 { | |
384 kill (getpid (), SIGABRT); | |
21832
daf559874709
(abort): Omit this definition, if NO_ABORT.
Richard M. Stallman <rms@gnu.org>
parents:
21812
diff
changeset
|
385 /* This shouldn't be executed, but it prevents a warning. */ |
daf559874709
(abort): Omit this definition, if NO_ABORT.
Richard M. Stallman <rms@gnu.org>
parents:
21812
diff
changeset
|
386 exit (1); |
20527 | 387 } |
21418
8e54230531dc
(abort): Don't redefine on MSDOS.
Karl Heuer <kwzh@gnu.org>
parents:
21406
diff
changeset
|
388 #endif |
20527 | 389 |
284 | 390 |
391 /* Code for dealing with Lisp access to the Unix command line */ | |
392 | |
21514 | 393 static void |
284 | 394 init_cmdargs (argc, argv, skip_args) |
395 int argc; | |
396 char **argv; | |
397 int skip_args; | |
398 { | |
399 register int i; | |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
400 Lisp_Object name, dir, tem; |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
401 int count = specpdl_ptr - specpdl; |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
402 Lisp_Object raw_name; |
284 | 403 |
7869
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
404 initial_argv = argv; |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
405 initial_argc = argc; |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
406 |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
407 raw_name = build_string (argv[0]); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
408 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
409 /* Add /: to the front of the name |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
410 if it would otherwise be treated as magic. */ |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
411 tem = Ffind_file_name_handler (raw_name, Qt); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
412 if (! NILP (tem)) |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
413 raw_name = concat2 (build_string ("/:"), raw_name); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
414 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
415 Vinvocation_name = Ffile_name_nondirectory (raw_name); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
416 Vinvocation_directory = Ffile_name_directory (raw_name); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
417 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
418 /* 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
|
419 Emacs actually came from. */ |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
420 if (NILP (Vinvocation_directory)) |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
421 { |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
422 Lisp_Object found; |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
423 int yes = openp (Vexec_path, Vinvocation_name, |
4589 | 424 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
|
425 if (yes == 1) |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
426 { |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
427 /* Add /: to the front of the name |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
428 if it would otherwise be treated as magic. */ |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
429 tem = Ffind_file_name_handler (found, Qt); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
430 if (! NILP (tem)) |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
431 found = concat2 (build_string ("/:"), found); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
432 Vinvocation_directory = Ffile_name_directory (found); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
433 } |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
434 } |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
435 |
12383
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
436 if (!NILP (Vinvocation_directory) |
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
437 && NILP (Ffile_name_absolute_p (Vinvocation_directory))) |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
438 /* Emacs was started with relative path, like ./emacs. |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
439 Make it absolute. */ |
12383
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
440 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil); |
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
441 |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
442 Vinstallation_directory = Qnil; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
443 |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
444 if (!NILP (Vinvocation_directory)) |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
445 { |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
446 dir = Vinvocation_directory; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
447 name = Fexpand_file_name (Vinvocation_name, dir); |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
448 while (1) |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
449 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
450 Lisp_Object tem, lib_src_exists; |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
451 Lisp_Object etc_exists, info_exists; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
452 |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
453 /* 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
|
454 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
|
455 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
|
456 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
|
457 lib_src_exists = Ffile_exists_p (tem); |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
458 |
17312
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
459 #ifdef MSDOS |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
460 /* MSDOS installations frequently remove lib-src, but we still |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
461 must set installation-directory, or else info won't find |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
462 its files (it uses the value of installation-directory). */ |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
463 tem = Fexpand_file_name (build_string ("info"), dir); |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
464 info_exists = Ffile_exists_p (tem); |
17312
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
465 #else |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
466 info_exists = Qnil; |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
467 #endif |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
468 |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
469 if (!NILP (lib_src_exists) || !NILP (info_exists)) |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
470 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
471 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
|
472 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
|
473 if (!NILP (etc_exists)) |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
474 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
475 Vinstallation_directory |
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
476 = 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
|
477 break; |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
478 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
479 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
480 |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
481 /* 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
|
482 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
|
483 lib_src_exists = Ffile_exists_p (tem); |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
484 |
17312
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
485 |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
486 #ifdef MSDOS |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
487 /* See the MSDOS commentary above. */ |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
488 tem = Fexpand_file_name (build_string ("../info"), dir); |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
489 info_exists = Ffile_exists_p (tem); |
17312
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
490 #else |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
491 info_exists = Qnil; |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
492 #endif |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
493 |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
494 if (!NILP (lib_src_exists) || !NILP (info_exists)) |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
495 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
496 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
|
497 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
|
498 if (!NILP (etc_exists)) |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
499 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
500 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
|
501 Vinstallation_directory |
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
502 = 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
|
503 break; |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
504 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
505 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
506 |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
507 /* If the Emacs executable is actually a link, |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
508 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
|
509 tem = Ffile_symlink_p (name); |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
510 if (!NILP (tem)) |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
511 { |
8704
ec7ec0e35e5e
(init_cmdargs): After chasing link, use only the expanded name.
Richard M. Stallman <rms@gnu.org>
parents:
7869
diff
changeset
|
512 name = Fexpand_file_name (tem, dir); |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
513 dir = Ffile_name_directory (name); |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
514 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
515 else |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
516 break; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
517 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
518 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
519 |
284 | 520 Vcommand_line_args = Qnil; |
521 | |
522 for (i = argc - 1; i >= 0; i--) | |
523 { | |
524 if (i == 0 || i > skip_args) | |
525 Vcommand_line_args | |
526 = Fcons (build_string (argv[i]), Vcommand_line_args); | |
527 } | |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
528 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
529 unbind_to (count, Qnil); |
284 | 530 } |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
531 |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
532 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
|
533 "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
|
534 Any directory names are omitted.") |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
535 () |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
536 { |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
537 return Fcopy_sequence (Vinvocation_name); |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
538 } |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
539 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
540 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory, |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
541 0, 0, 0, |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
542 "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
|
543 () |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
544 { |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
545 return Fcopy_sequence (Vinvocation_directory); |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
546 } |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
547 |
284 | 548 |
549 #ifdef VMS | |
550 #ifdef LINK_CRTL_SHARE | |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
551 #ifdef SHARABLE_LIB_BUG |
284 | 552 extern noshare char **environ; |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
553 #endif /* SHARABLE_LIB_BUG */ |
284 | 554 #endif /* LINK_CRTL_SHARE */ |
555 #endif /* VMS */ | |
556 | |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
557 #ifdef HAVE_TZSET |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
558 /* A valid but unlikely value for the TZ environment value. |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
559 It is OK (though a bit slower) if the user actually chooses this value. */ |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
560 static char dump_tz[] = "UtC0"; |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
561 #endif |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
562 |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
563 #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
|
564 /* 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
|
565 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
|
566 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
|
567 (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
|
568 #ifdef __GNUC__ |
6467
53c14a4f9307
(__do_global_ctors, __do_global_ctors_aux)
Richard M. Stallman <rms@gnu.org>
parents:
6428
diff
changeset
|
569 #ifndef GCC_CTORS_IN_LIBC |
21514 | 570 void __do_global_ctors () |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
571 {} |
21514 | 572 void __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
|
573 {} |
21514 | 574 void __do_global_dtors () |
1074
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
575 {} |
4619
fdb92f0aa8c7
(__CTOR_LIST__): Don't declare it on Linux.
Richard M. Stallman <rms@gnu.org>
parents:
4589
diff
changeset
|
576 /* 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
|
577 #ifndef LINUX |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
578 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
|
579 #endif |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
580 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
|
581 #endif /* GCC_CTORS_IN_LIBC */ |
21514 | 582 void __main () |
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
583 {} |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
584 #endif /* __GNUC__ */ |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
585 #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
|
586 |
9094 | 587 /* Test whether the next argument in ARGV matches SSTR or a prefix of |
588 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null | |
589 (the argument is supposed to have a value) store in *VALPTR either | |
590 the next argument or the portion of this one after the equal sign. | |
591 ARGV is read starting at position *SKIPPTR; this index is advanced | |
592 by the number of arguments used. | |
593 | |
594 Too bad we can't just use getopt for all of this, but we don't have | |
595 enough information to do it right. */ | |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
596 |
9094 | 597 static int |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
598 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr) |
9094 | 599 char **argv; |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
600 int argc; |
9094 | 601 char *sstr; |
602 char *lstr; | |
603 int minlen; | |
604 char **valptr; | |
605 int *skipptr; | |
606 { | |
607 char *p; | |
608 int arglen; | |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
609 char *arg; |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
610 |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
611 /* Don't access argv[argc]; give up in advance. */ |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
612 if (argc <= *skipptr + 1) |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
613 return 0; |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
614 |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
615 arg = argv[*skipptr+1]; |
9094 | 616 if (arg == NULL) |
617 return 0; | |
618 if (strcmp (arg, sstr) == 0) | |
619 { | |
620 if (valptr != NULL) | |
621 { | |
622 *valptr = argv[*skipptr+2]; | |
623 *skipptr += 2; | |
624 } | |
625 else | |
626 *skipptr += 1; | |
627 return 1; | |
628 } | |
629 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL | |
630 ? p - arg : strlen (arg)); | |
10102
339e129f8874
(argmatch): Handle lstr == 0.
Richard M. Stallman <rms@gnu.org>
parents:
10032
diff
changeset
|
631 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0) |
9094 | 632 return 0; |
633 else if (valptr == NULL) | |
634 { | |
635 *skipptr += 1; | |
636 return 1; | |
637 } | |
638 else if (p != NULL) | |
639 { | |
640 *valptr = p+1; | |
641 *skipptr += 1; | |
642 return 1; | |
643 } | |
644 else if (argv[*skipptr+2] != NULL) | |
645 { | |
646 *valptr = argv[*skipptr+2]; | |
647 *skipptr += 2; | |
648 return 1; | |
649 } | |
650 else | |
651 { | |
652 return 0; | |
653 } | |
654 } | |
655 | |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
656 #ifdef DOUG_LEA_MALLOC |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
657 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
658 /* malloc can be invoked even before main (e.g. by the dynamic |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
659 linker), so the dumped malloc state must be restored as early as |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
660 possible using this special hook. */ |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
661 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
662 static void |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
663 malloc_initialize_hook () |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
664 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
665 extern char **environ; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
666 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
667 if (initialized) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
668 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
669 if (!malloc_using_checking) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
670 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
671 ignored if the heap to be restored was constructed without |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
672 malloc checking. Can't use unsetenv, since that calls malloc. */ |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
673 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
674 char **p; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
675 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
676 for (p = environ; *p; p++) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
677 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
678 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
679 do |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
680 *p = p[1]; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
681 while (*++p); |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
682 break; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
683 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
684 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
685 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
686 malloc_set_state (malloc_state_ptr); |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
687 free (malloc_state_ptr); |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
688 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
689 else |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
690 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
691 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
692 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
693 void (*__malloc_initialize_hook) () = malloc_initialize_hook; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
694 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
695 #endif /* DOUG_LEA_MALLOC */ |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
696 |
284 | 697 /* ARGSUSED */ |
21514 | 698 int |
284 | 699 main (argc, argv, envp) |
700 int argc; | |
701 char **argv; | |
702 char **envp; | |
703 { | |
27748
b980acbcfbfd
(main): Use #if GC_MARK_STACK instead of #ifdef.
Gerd Moellmann <gerd@gnu.org>
parents:
27740
diff
changeset
|
704 #if GC_MARK_STACK |
27740
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
705 Lisp_Object dummy; |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
706 #endif |
284 | 707 char stack_bottom_variable; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
708 int do_initial_setlocale; |
284 | 709 int skip_args = 0; |
710 extern int errno; | |
21514 | 711 extern int sys_nerr; |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
712 #ifdef HAVE_SETRLIMIT |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
713 struct rlimit rlim; |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
714 #endif |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
715 int no_loadup = 0; |
284 | 716 |
27748
b980acbcfbfd
(main): Use #if GC_MARK_STACK instead of #ifdef.
Gerd Moellmann <gerd@gnu.org>
parents:
27740
diff
changeset
|
717 #if GC_MARK_STACK |
27740
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
718 extern Lisp_Object *stack_base; |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
719 stack_base = &dummy; |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
720 #endif |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
721 |
13617
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
722 #ifdef LINUX_SBRK_BUG |
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
723 __sbrk (1); |
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
724 #endif |
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
725 |
19729
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
726 #ifdef RUN_TIME_REMAP |
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
727 if (initialized) |
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
728 run_time_remap (argv[0]); |
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
729 #endif |
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
730 |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
731 sort_args (argc, argv); |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
732 argc = 0; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
733 while (argv[argc]) argc++; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
734 |
22349
cf18f0d82138
(main): Don't implement --version if not initialized.
Karl Heuer <kwzh@gnu.org>
parents:
22323
diff
changeset
|
735 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args) |
cf18f0d82138
(main): Don't implement --version if not initialized.
Karl Heuer <kwzh@gnu.org>
parents:
22323
diff
changeset
|
736 /* We don't know the version number unless this is a dumped Emacs. |
cf18f0d82138
(main): Don't implement --version if not initialized.
Karl Heuer <kwzh@gnu.org>
parents:
22323
diff
changeset
|
737 So ignore --version otherwise. */ |
cf18f0d82138
(main): Don't implement --version if not initialized.
Karl Heuer <kwzh@gnu.org>
parents:
22323
diff
changeset
|
738 && initialized) |
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
739 { |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
740 Lisp_Object tem; |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
741 tem = Fsymbol_value (intern ("emacs-version")); |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
742 if (!STRINGP (tem)) |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
743 { |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
744 fprintf (stderr, "Invalid value of `emacs-version'\n"); |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
745 exit (1); |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
746 } |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
747 else |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
748 { |
15572
ed3d11fbbfbf
(main): Add `GNU Emacs' to the response to --version.
Richard M. Stallman <rms@gnu.org>
parents:
15539
diff
changeset
|
749 printf ("GNU Emacs %s\n", XSTRING (tem)->data); |
24197
604baa356d2a
(main): Up-date copyright.
Richard M. Stallman <rms@gnu.org>
parents:
24168
diff
changeset
|
750 printf ("Copyright (C) 1999 Free Software Foundation, Inc.\n"); |
16278
37408c6b96fd
(main): Add copyright etc. to --version output.
Richard M. Stallman <rms@gnu.org>
parents:
16219
diff
changeset
|
751 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n"); |
37408c6b96fd
(main): Add copyright etc. to --version output.
Richard M. Stallman <rms@gnu.org>
parents:
16219
diff
changeset
|
752 printf ("You may redistribute copies of Emacs\n"); |
37408c6b96fd
(main): Add copyright etc. to --version output.
Richard M. Stallman <rms@gnu.org>
parents:
16219
diff
changeset
|
753 printf ("under the terms of the GNU General Public License.\n"); |
37408c6b96fd
(main): Add copyright etc. to --version output.
Richard M. Stallman <rms@gnu.org>
parents:
16219
diff
changeset
|
754 printf ("For more information about these matters, "); |
22529 | 755 printf ("see the file named COPYING.\n"); |
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
756 exit (0); |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
757 } |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
758 } |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
759 |
284 | 760 /* Map in shared memory, if we are using that. */ |
761 #ifdef HAVE_SHM | |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
762 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args)) |
284 | 763 { |
764 map_in_data (0); | |
765 /* The shared memory was just restored, which clobbered this. */ | |
766 skip_args = 1; | |
767 } | |
768 else | |
769 { | |
770 map_in_data (1); | |
771 /* The shared memory was just restored, which clobbered this. */ | |
772 skip_args = 0; | |
773 } | |
774 #endif | |
775 | |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
776 #ifdef NeXT |
11806
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
777 { |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
778 extern int malloc_cookie; |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
779 /* This helps out unexnext.c. */ |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
780 if (initialized) |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
781 if (malloc_jumpstart (malloc_cookie) != 0) |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
782 printf ("malloc jumpstart failed!\n"); |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
783 } |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
784 #endif /* NeXT */ |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
785 |
284 | 786 #ifdef VMS |
787 /* If -map specified, map the data file in */ | |
9094 | 788 { |
789 char *file; | |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
790 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args)) |
9094 | 791 mapin_data (file); |
792 } | |
284 | 793 |
794 #ifdef LINK_CRTL_SHARE | |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
795 #ifdef SHARABLE_LIB_BUG |
284 | 796 /* Bletcherous shared libraries! */ |
797 if (!stdin) | |
798 stdin = fdopen (0, "r"); | |
799 if (!stdout) | |
800 stdout = fdopen (1, "w"); | |
801 if (!stderr) | |
802 stderr = fdopen (2, "w"); | |
803 if (!environ) | |
804 environ = envp; | |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
805 #endif /* SHARABLE_LIB_BUG */ |
284 | 806 #endif /* LINK_CRTL_SHARE */ |
807 #endif /* VMS */ | |
808 | |
18758
231be0c398fd
(main): Use setrlimit only if RLIMIT_STACK.
Richard M. Stallman <rms@gnu.org>
parents:
18683
diff
changeset
|
809 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK) |
19354
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
810 /* Extend the stack space available. |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
811 Don't do that if dumping, since some systems (e.g. DJGPP) |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
812 might define a smaller stack limit at that time. */ |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
813 if (1 |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
814 #ifndef CANNOT_DUMP |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
815 && (!noninteractive || initialized) |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
816 #endif |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
817 && !getrlimit (RLIMIT_STACK, &rlim)) |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
818 { |
16968
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
819 long newlim; |
19354
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
820 extern int re_max_failures; |
20412
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
821 /* Approximate the amount regex.c needs per unit of re_max_failures. */ |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
822 int ratio = 20 * sizeof (char *); |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
823 /* Then add 33% to cover the size of the smaller stacks that regex.c |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
824 successively allocates and discards, on its way to the maximum. */ |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
825 ratio += ratio / 3; |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
826 /* Add in some extra to cover |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
827 what we're likely to use for other reasons. */ |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
828 newlim = re_max_failures * ratio + 200000; |
18683
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
829 #ifdef __NetBSD__ |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
830 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
831 stack allocation routine for new process that the allocation |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
832 fails if stack limit is not on page boundary. So, round up the |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
833 new limit to page boundary. */ |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
834 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize(); |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
835 #endif |
16968
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
836 if (newlim > rlim.rlim_max) |
19354
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
837 { |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
838 newlim = rlim.rlim_max; |
20412
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
839 /* Don't let regex.c overflow the stack we have. */ |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
840 re_max_failures = (newlim - 200000) / ratio; |
19354
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
841 } |
16968
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
842 if (rlim.rlim_cur < newlim) |
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
843 rlim.rlim_cur = newlim; |
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
844 |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
845 setrlimit (RLIMIT_STACK, &rlim); |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
846 } |
18758
231be0c398fd
(main): Use setrlimit only if RLIMIT_STACK.
Richard M. Stallman <rms@gnu.org>
parents:
18683
diff
changeset
|
847 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */ |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
848 |
284 | 849 /* Record (approximately) where the stack begins. */ |
850 stack_bottom = &stack_bottom_variable; | |
851 | |
852 #ifdef USG_SHARED_LIBRARIES | |
853 if (bss_end) | |
11233
d3b0cf2c3b78
(main): Cast arg to `brk'.
Richard M. Stallman <rms@gnu.org>
parents:
11195
diff
changeset
|
854 brk ((void *)bss_end); |
284 | 855 #endif |
856 | |
857 clearerr (stdin); | |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
858 |
284 | 859 #ifndef SYSTEM_MALLOC |
23954
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
860 /* Arrange to get warning messages as memory fills up. */ |
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
861 memory_warnings (0, malloc_warning); |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2392
diff
changeset
|
862 |
24364
2c148fbec289
(main): [!SYSTEM_MALLOC]: Call realloc and free as well
Andrew Innes <andrewi@gnu.org>
parents:
24348
diff
changeset
|
863 /* Call malloc at least once, to run the initial __malloc_hook. |
2c148fbec289
(main): [!SYSTEM_MALLOC]: Call realloc and free as well
Andrew Innes <andrewi@gnu.org>
parents:
24348
diff
changeset
|
864 Also call realloc and free for consistency. */ |
2c148fbec289
(main): [!SYSTEM_MALLOC]: Call realloc and free as well
Andrew Innes <andrewi@gnu.org>
parents:
24348
diff
changeset
|
865 free (realloc (malloc (4), 4)); |
23954
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
866 |
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
867 /* Arrange to disable interrupt input inside malloc etc. */ |
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
868 uninterrupt_malloc (); |
284 | 869 #endif /* not SYSTEM_MALLOC */ |
870 | |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
871 #ifdef MSDOS |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
872 /* 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
|
873 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
|
874 _fmode = O_BINARY; |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
875 |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
876 #if __DJGPP__ >= 2 |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
877 if (!isatty (fileno (stdin))) |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
878 setmode (fileno (stdin), O_BINARY); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
879 if (!isatty (fileno (stdout))) |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
880 { |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
881 fflush (stdout); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
882 setmode (fileno (stdout), O_BINARY); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
883 } |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
884 #else /* not __DJGPP__ >= 2 */ |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
885 (stdin)->_flag &= ~_IOTEXT; |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
886 (stdout)->_flag &= ~_IOTEXT; |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
887 (stderr)->_flag &= ~_IOTEXT; |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
888 #endif /* not __DJGPP__ >= 2 */ |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
889 #endif /* MSDOS */ |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
890 |
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
891 #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
|
892 if (emacs_priority) |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
893 nice (emacs_priority); |
284 | 894 setuid (getuid ()); |
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
895 #endif /* SET_EMACS_PRIORITY */ |
284 | 896 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
897 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case. |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
898 The build procedure uses this while dumping, to ensure that the |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
899 dumped Emacs does not have its system locale tables initialized, |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
900 as that might cause screwups when the dumped Emacs starts up. */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
901 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
902 char *lc_all = getenv ("LC_ALL"); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
903 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C"); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
904 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
905 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
906 /* Set locale now, so that initial error messages are localized properly. |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
907 fixup_locale must wait until later, since it builds strings. */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
908 if (do_initial_setlocale) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
909 setlocale (LC_ALL, ""); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
910 |
6778
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
911 #ifdef EXTRA_INITIALIZE |
6814
531d6d07096a
(main): Fix typo in prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
6778
diff
changeset
|
912 EXTRA_INITIALIZE; |
6778
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
913 #endif |
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
914 |
284 | 915 inhibit_window_system = 0; |
916 | |
420 | 917 /* Handle the -t switch, which specifies filename to use as terminal */ |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
918 while (1) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
919 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
920 char *term; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
921 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args)) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
922 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
923 int result; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
924 emacs_close (0); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
925 emacs_close (1); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
926 result = emacs_open (term, O_RDWR, 0); |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
927 if (result < 0) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
928 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
929 char *errstring = strerror (errno); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
930 fprintf (stderr, "emacs: %s: %s\n", term, errstring); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
931 exit (1); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
932 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
933 dup (0); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
934 if (! isatty (0)) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
935 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
936 fprintf (stderr, "emacs: %s: not a tty\n", term); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
937 exit (1); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
938 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
939 fprintf (stderr, "Using %s\n", term); |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
940 #ifdef HAVE_WINDOW_SYSTEM |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
941 inhibit_window_system = 1; /* -t => -nw */ |
9094 | 942 #endif |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
943 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
944 else |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
945 break; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
946 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
947 |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
948 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args)) |
9094 | 949 inhibit_window_system = 1; |
950 | |
951 /* Handle the -batch switch, which means don't do interactive display. */ | |
952 noninteractive = 0; | |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
953 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args)) |
9094 | 954 noninteractive = 1; |
955 | |
956 /* Handle the --help option, which gives a usage message.. */ | |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
957 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args)) |
284 | 958 { |
27627
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
959 printf (USAGE1, argv[0]); |
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
960 printf (USAGE2); |
9094 | 961 exit (0); |
284 | 962 } |
963 | |
7788
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
964 if (! noninteractive) |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
965 { |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
966 #ifdef BSD_PGRPS |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
967 if (initialized) |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
968 { |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
969 inherited_pgroup = EMACS_GETPGRP (0); |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
970 setpgrp (0, getpid ()); |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
971 } |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
972 #else |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
973 #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
|
974 setpgrp (); |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
975 #endif |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
976 #endif |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
977 } |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
978 |
348 | 979 init_signals (); |
980 | |
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
981 /* Don't catch SIGHUP if dumping. */ |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
982 if (1 |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
983 #ifndef CANNOT_DUMP |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
984 && initialized |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
985 #endif |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
986 ) |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
987 { |
15423
5b9fe08fa6eb
(main): For SIGHUP, use sigblock and sigunblock,
Richard M. Stallman <rms@gnu.org>
parents:
15202
diff
changeset
|
988 sigblock (sigmask (SIGHUP)); |
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
989 /* In --batch mode, don't catch SIGHUP if already ignored. |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
990 That makes nohup work. */ |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
991 if (! noninteractive |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
992 || signal (SIGHUP, SIG_IGN) != SIG_IGN) |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
993 signal (SIGHUP, fatal_error_signal); |
15423
5b9fe08fa6eb
(main): For SIGHUP, use sigblock and sigunblock,
Richard M. Stallman <rms@gnu.org>
parents:
15202
diff
changeset
|
994 sigunblock (sigmask (SIGHUP)); |
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
995 } |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
996 |
284 | 997 if ( |
998 #ifndef CANNOT_DUMP | |
999 ! noninteractive || initialized | |
1000 #else | |
1001 1 | |
1002 #endif | |
1003 ) | |
1004 { | |
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1005 /* Don't catch these signals in batch mode if dumping. |
284 | 1006 On some machines, this sets static data that would make |
1007 signal fail to work right when the dumped Emacs is run. */ | |
1008 signal (SIGQUIT, fatal_error_signal); | |
1009 signal (SIGILL, fatal_error_signal); | |
1010 signal (SIGTRAP, fatal_error_signal); | |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1011 #ifdef SIGUSR1 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1012 signal (SIGUSR1, handle_USR1_signal); |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1013 #ifdef SIGUSR2 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1014 signal (SIGUSR2, handle_USR2_signal); |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1015 #endif |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1016 #endif |
10388
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1017 #ifdef SIGABRT |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1018 signal (SIGABRT, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1019 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1020 #ifdef SIGHWE |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1021 signal (SIGHWE, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1022 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1023 #ifdef SIGPRE |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1024 signal (SIGPRE, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1025 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1026 #ifdef SIGORE |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1027 signal (SIGORE, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1028 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1029 #ifdef SIGUME |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1030 signal (SIGUME, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1031 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1032 #ifdef SIGDLK |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1033 signal (SIGDLK, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1034 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1035 #ifdef SIGCPULIM |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1036 signal (SIGCPULIM, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1037 #endif |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
1038 #ifdef SIGIOT |
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
1039 /* This is missing on some systems - OS/2, for example. */ |
284 | 1040 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
|
1041 #endif |
284 | 1042 #ifdef SIGEMT |
1043 signal (SIGEMT, fatal_error_signal); | |
1044 #endif | |
1045 signal (SIGFPE, fatal_error_signal); | |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1046 #ifdef SIGBUS |
284 | 1047 signal (SIGBUS, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1048 #endif |
284 | 1049 signal (SIGSEGV, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1050 #ifdef SIGSYS |
284 | 1051 signal (SIGSYS, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1052 #endif |
284 | 1053 signal (SIGTERM, fatal_error_signal); |
1054 #ifdef SIGXCPU | |
1055 signal (SIGXCPU, fatal_error_signal); | |
1056 #endif | |
1057 #ifdef SIGXFSZ | |
1058 signal (SIGXFSZ, fatal_error_signal); | |
1059 #endif /* SIGXFSZ */ | |
1060 | |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1061 #ifdef SIGDANGER |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1062 /* 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
|
1063 signal (SIGDANGER, memory_warning_signal); |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1064 #endif |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1065 |
284 | 1066 #ifdef AIX |
5794
9d324422db4c
(main) [AIX]: Don't handle signal 20, 21 or 22.
Richard M. Stallman <rms@gnu.org>
parents:
5763
diff
changeset
|
1067 /* 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
|
1068 signal (SIGXCPU, fatal_error_signal); |
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
1069 #ifndef _I386 |
284 | 1070 signal (SIGIOINT, fatal_error_signal); |
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
1071 #endif |
284 | 1072 signal (SIGGRANT, fatal_error_signal); |
1073 signal (SIGRETRACT, fatal_error_signal); | |
1074 signal (SIGSOUND, fatal_error_signal); | |
1075 signal (SIGMSG, fatal_error_signal); | |
1076 #endif /* AIX */ | |
1077 } | |
1078 | |
1079 noninteractive1 = noninteractive; | |
1080 | |
1081 /* Perform basic initializations (not merely interning symbols) */ | |
1082 | |
1083 if (!initialized) | |
1084 { | |
1085 init_alloc_once (); | |
1086 init_obarray (); | |
1087 init_eval_once (); | |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1088 init_charset_once (); |
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1089 init_coding_once (); |
284 | 1090 init_syntax_once (); /* Create standard syntax table. */ |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1091 init_category_once (); /* Create standard category table. */ |
284 | 1092 /* Must be done before init_buffer */ |
1093 init_casetab_once (); | |
1094 init_buffer_once (); /* Create buffer table and some buffers */ | |
1095 init_minibuf_once (); /* Create list of minibuffers */ | |
25010 | 1096 /* Must precede init_window_once */ |
1097 | |
1098 /* Call syms_of_xfaces before init_window_once because that | |
1099 function creates Vterminal_frame. Termcap frames now use | |
1100 faces, and the face implementation uses some symbols as | |
1101 face names. */ | |
1102 syms_of_xfaces (); | |
29198
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1103 /* Call syms_of_keyboard before init_window_once because |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1104 keyboard sets up symbols that include some face names that |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1105 the X support will want to use. This can happen when |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1106 CANNOT_DUMP is defined. */ |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1107 syms_of_keyboard (); |
25010 | 1108 |
284 | 1109 init_window_once (); /* Init the window system */ |
23568
dba43a039f3c
emacs.c (main): Invoke init_fileio_once.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23540
diff
changeset
|
1110 init_fileio_once (); /* Must precede any path manipulation. */ |
284 | 1111 } |
1112 | |
1113 init_alloc (); | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1114 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1115 if (do_initial_setlocale) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1116 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1117 fixup_locale (); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
1118 Vsystem_messages_locale = Vprevious_system_messages_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
1119 Vsystem_time_locale = Vprevious_system_time_locale; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1120 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1121 |
284 | 1122 init_eval (); |
22789 | 1123 init_coding (); |
284 | 1124 init_data (); |
24464
930074eb767f
(main) [CLASH_DETECTION]: Call init_filelock.
Karl Heuer <kwzh@gnu.org>
parents:
24418
diff
changeset
|
1125 #ifdef CLASH_DETECTION |
930074eb767f
(main) [CLASH_DETECTION]: Call init_filelock.
Karl Heuer <kwzh@gnu.org>
parents:
24418
diff
changeset
|
1126 init_filelock ();; |
930074eb767f
(main) [CLASH_DETECTION]: Call init_filelock.
Karl Heuer <kwzh@gnu.org>
parents:
24418
diff
changeset
|
1127 #endif |
27429 | 1128 init_atimer (); |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
1129 running_asynch_code = 0; |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1130 |
21722 | 1131 /* Handle --unibyte and the EMACS_UNIBYTE envvar, |
1132 but not while dumping. */ | |
1133 if ( | |
1134 #ifndef CANNOT_DUMP | |
1135 ! noninteractive || initialized | |
1136 #else | |
1137 1 | |
1138 #endif | |
1139 ) | |
1140 { | |
1141 int inhibit_unibyte = 0; | |
1142 | |
1143 /* --multibyte overrides EMACS_UNIBYTE. */ | |
1144 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args) | |
1145 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args)) | |
1146 inhibit_unibyte = 1; | |
1147 | |
1148 /* --unibyte requests that we set up to do everything with single-byte | |
1149 buffers and strings. We need to handle this before calling | |
1150 init_lread, init_editfns and other places that generate Lisp strings | |
1151 from text in the environment. */ | |
24168 | 1152 /* Actually this shouldn't be needed as of 20.4 in a generally |
1153 unibyte environment. As handa says, environment values | |
1154 aren't now decoded; also existing buffers are now made | |
1155 unibyte during startup if .emacs sets unibyte. Tested with | |
1156 8-bit data in environment variables and /etc/passwd, setting | |
1157 unibyte and Latin-1 in .emacs. -- Dave Love */ | |
21722 | 1158 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args) |
1159 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args) | |
1160 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte)) | |
1161 { | |
1162 Lisp_Object old_log_max; | |
1163 Lisp_Object symbol, tail; | |
1164 | |
1165 symbol = intern ("default-enable-multibyte-characters"); | |
1166 Fset (symbol, Qnil); | |
1167 | |
22323
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1168 if (initialized) |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1169 { |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1170 /* Erase pre-dump messages in *Messages* now so no abort. */ |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1171 old_log_max = Vmessage_log_max; |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1172 XSETFASTINT (Vmessage_log_max, 0); |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1173 message_dolog ("", 0, 1, 0); |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1174 Vmessage_log_max = old_log_max; |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1175 } |
21722 | 1176 |
21840
89d03805f45a
(main): Use Vbuffer_alist instead of Fbuffer_list.
Andreas Schwab <schwab@suse.de>
parents:
21832
diff
changeset
|
1177 for (tail = Vbuffer_alist; CONSP (tail); |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26131
diff
changeset
|
1178 tail = XCDR (tail)) |
21722 | 1179 { |
1180 Lisp_Object buffer; | |
1181 | |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26131
diff
changeset
|
1182 buffer = Fcdr (XCAR (tail)); |
21722 | 1183 /* Verify that all buffers are empty now, as they |
1184 ought to be. */ | |
1185 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer))) | |
1186 abort (); | |
1187 /* It is safe to do this crudely in an empty buffer. */ | |
1188 XBUFFER (buffer)->enable_multibyte_characters = Qnil; | |
1189 } | |
1190 } | |
1191 } | |
1192 | |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1193 no_loadup |
28407
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
27981
diff
changeset
|
1194 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args); |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1195 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1196 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1197 #ifdef HAVE_X_WINDOWS |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1198 /* Stupid kludge to catch command-line display spec. We can't |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1199 handle this argument entirely in window system dependent code |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1200 because we don't even know which window system dependent code |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1201 to run until we've recognized this argument. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1202 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1203 char *displayname = 0; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1204 int count_before = skip_args; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1205 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1206 /* Skip any number of -d options, but only use the last one. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1207 while (1) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1208 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1209 int count_before_this = skip_args; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1210 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1211 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args)) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1212 display_arg = 1; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1213 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args)) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1214 display_arg = 1; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1215 else |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1216 break; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1217 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1218 count_before = count_before_this; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1219 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1220 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1221 /* If we have the form --display=NAME, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1222 convert it into -d name. |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1223 This requires inserting a new element into argv. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1224 if (displayname != 0 && skip_args - count_before == 1) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1225 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1226 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2)); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1227 int j; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1228 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1229 for (j = 0; j < count_before + 1; j++) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1230 new[j] = argv[j]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1231 new[count_before + 1] = "-d"; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1232 new[count_before + 2] = displayname; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1233 for (j = count_before + 2; j <argc; j++) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1234 new[j + 1] = argv[j]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1235 argv = new; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1236 argc++; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1237 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1238 /* Change --display to -d, when its arg is separate. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1239 else if (displayname != 0 && skip_args > count_before |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1240 && argv[count_before + 1][1] == '-') |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1241 argv[count_before + 1] = "-d"; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1242 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1243 /* Don't actually discard this arg. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1244 skip_args = count_before; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1245 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1246 #endif |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1247 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1248 /* argmatch must not be used after here, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1249 except when bulding temacs |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1250 because the -d argument has not been skipped in skip_args. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1251 |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1252 #ifdef MSDOS |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1253 /* 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
|
1254 init_dosfns (); |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1255 /* Set defaults for several environment variables. */ |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1256 if (initialized) |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1257 init_environment (argc, argv, skip_args); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1258 else |
15012
2dabff0bce33
(main) [MSDOS]: Always call tzset, not init__gettimeofday.
Richard M. Stallman <rms@gnu.org>
parents:
14993
diff
changeset
|
1259 tzset (); |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1260 #endif /* MSDOS */ |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1261 |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1262 #ifdef WINDOWSNT |
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1263 /* Initialize environment from registry settings. */ |
24228
6ed588e4dd94
(main): Pass argv to init_environment.
Andrew Innes <andrewi@gnu.org>
parents:
24197
diff
changeset
|
1264 init_environment (argv); |
15089
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
1265 init_ntproc (); /* must precede init_editfns */ |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1266 #endif |
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1267 |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1268 /* 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
|
1269 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
|
1270 until calling init_callproc. */ |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1271 set_process_environment (); |
5364
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
1272 /* 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
|
1273 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
|
1274 don't pollute Vprocess_environment. */ |
26669
862ea38e59f1
(main): Set LANG=C iff AX3_2 defined.
Dave Love <fx@gnu.org>
parents:
26631
diff
changeset
|
1275 /* Setting LANG here will defeat the startup locale processing... */ |
862ea38e59f1
(main): Set LANG=C iff AX3_2 defined.
Dave Love <fx@gnu.org>
parents:
26631
diff
changeset
|
1276 #ifdef AIX3_2 |
5364
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
1277 putenv ("LANG=C"); |
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
1278 #endif |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1279 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
1280 init_buffer (); /* Init default directory of main buffer */ |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
1281 |
5155
3fcc21b4f083
(main): Call init_callproc and init_callproc_1.
Richard M. Stallman <rms@gnu.org>
parents:
4957
diff
changeset
|
1282 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
|
1283 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */ |
16488
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1284 |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1285 if (initialized) |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1286 { |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1287 /* Erase any pre-dump messages in the message log, to avoid confusion */ |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1288 Lisp_Object old_log_max; |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1289 old_log_max = Vmessage_log_max; |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1290 XSETFASTINT (Vmessage_log_max, 0); |
20620
a3cb242e8349
(main): Pass new arg to message_dolog.
Richard M. Stallman <rms@gnu.org>
parents:
20527
diff
changeset
|
1291 message_dolog ("", 0, 1, 0); |
16488
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1292 Vmessage_log_max = old_log_max; |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1293 } |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1294 |
5155
3fcc21b4f083
(main): Call init_callproc and init_callproc_1.
Richard M. Stallman <rms@gnu.org>
parents:
4957
diff
changeset
|
1295 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */ |
348 | 1296 init_lread (); |
284 | 1297 |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1298 /* Intern the names of all standard functions and variables; |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1299 define standard keys. */ |
284 | 1300 |
1301 if (!initialized) | |
1302 { | |
1303 /* The basic levels of Lisp must come first */ | |
1304 /* And data must come first of all | |
1305 for the sake of symbols like error-message */ | |
1306 syms_of_data (); | |
1307 syms_of_alloc (); | |
348 | 1308 syms_of_lread (); |
284 | 1309 syms_of_print (); |
1310 syms_of_eval (); | |
1311 syms_of_fns (); | |
1312 syms_of_floatfns (); | |
1313 | |
1314 syms_of_abbrev (); | |
1315 syms_of_buffer (); | |
1316 syms_of_bytecode (); | |
1317 syms_of_callint (); | |
1318 syms_of_casefiddle (); | |
1319 syms_of_casetab (); | |
1320 syms_of_callproc (); | |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1321 syms_of_category (); |
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1322 syms_of_ccl (); |
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1323 syms_of_charset (); |
284 | 1324 syms_of_cmds (); |
1325 #ifndef NO_DIR_LIBRARY | |
1326 syms_of_dired (); | |
1327 #endif /* not NO_DIR_LIBRARY */ | |
1328 syms_of_display (); | |
1329 syms_of_doc (); | |
1330 syms_of_editfns (); | |
1331 syms_of_emacs (); | |
1332 syms_of_fileio (); | |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1333 syms_of_coding (); /* This should be after syms_of_fileio. */ |
284 | 1334 #ifdef CLASH_DETECTION |
1335 syms_of_filelock (); | |
1336 #endif /* CLASH_DETECTION */ | |
1337 syms_of_indent (); | |
16548
12915fed5a02
(main): Call syms_of_insdel.
Richard M. Stallman <rms@gnu.org>
parents:
16488
diff
changeset
|
1338 syms_of_insdel (); |
284 | 1339 syms_of_keymap (); |
1340 syms_of_macros (); | |
1341 syms_of_marker (); | |
1342 syms_of_minibuf (); | |
1343 syms_of_mocklisp (); | |
1344 syms_of_process (); | |
1345 syms_of_search (); | |
763 | 1346 syms_of_frame (); |
284 | 1347 syms_of_syntax (); |
6751 | 1348 syms_of_term (); |
284 | 1349 syms_of_undo (); |
25010 | 1350 #ifdef HAVE_SOUND |
1351 syms_of_sound (); | |
1352 #endif | |
1284 | 1353 |
1354 syms_of_textprop (); | |
26854
c8f8089c339b
(main): Call syms_of_composite.
Kenichi Handa <handa@m17n.org>
parents:
26669
diff
changeset
|
1355 syms_of_composite (); |
284 | 1356 #ifdef VMS |
1357 syms_of_vmsproc (); | |
1358 #endif /* VMS */ | |
15202
0a9e62f4f10b
(main) [WINDOWSNT]: Call syms_of_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15089
diff
changeset
|
1359 #ifdef WINDOWSNT |
0a9e62f4f10b
(main) [WINDOWSNT]: Call syms_of_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15089
diff
changeset
|
1360 syms_of_ntproc (); |
0a9e62f4f10b
(main) [WINDOWSNT]: Call syms_of_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15089
diff
changeset
|
1361 #endif /* WINDOWSNT */ |
284 | 1362 syms_of_window (); |
1363 syms_of_xdisp (); | |
1364 #ifdef HAVE_X_WINDOWS | |
375 | 1365 syms_of_xterm (); |
284 | 1366 syms_of_xfns (); |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1367 syms_of_fontset (); |
375 | 1368 #ifdef HAVE_X11 |
1369 syms_of_xselect (); | |
1370 #endif | |
284 | 1371 #endif /* HAVE_X_WINDOWS */ |
1372 | |
18062
b0aa97f95c05
(main): Call syms_of_xfaces whenever ! HAVE_NTGUI.
Richard M. Stallman <rms@gnu.org>
parents:
17563
diff
changeset
|
1373 #ifndef HAVE_NTGUI |
9572 | 1374 syms_of_xmenu (); |
14788
a3b8405017f4
(main) [! HAVE_NTGUI]: Don't call syms_of_xmenu.
Richard M. Stallman <rms@gnu.org>
parents:
14740
diff
changeset
|
1375 #endif |
9572 | 1376 |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1377 #ifdef HAVE_NTGUI |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1378 syms_of_w32term (); |
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1379 syms_of_w32fns (); |
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1380 syms_of_w32select (); |
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1381 syms_of_w32menu (); |
23540
025ff5515ec9
(main) [HAVE_NTGUI]: Invoke syms_of_fontset().
Geoff Voelker <voelker@cs.washington.edu>
parents:
23327
diff
changeset
|
1382 syms_of_fontset (); |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1383 #endif /* HAVE_NTGUI */ |
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1384 |
284 | 1385 #ifdef SYMS_SYSTEM |
1386 SYMS_SYSTEM; | |
1387 #endif | |
1388 | |
1389 #ifdef SYMS_MACHINE | |
1390 SYMS_MACHINE; | |
1391 #endif | |
1392 | |
1393 keys_of_casefiddle (); | |
1394 keys_of_cmds (); | |
1395 keys_of_buffer (); | |
1396 keys_of_keyboard (); | |
1397 keys_of_keymap (); | |
1398 keys_of_macros (); | |
1399 keys_of_minibuf (); | |
1400 keys_of_window (); | |
1384
416f7f33fe95
* emacs.c (main): Call keys_of_frame.
Jim Blandy <jimb@redhat.com>
parents:
1350
diff
changeset
|
1401 keys_of_frame (); |
284 | 1402 } |
1403 | |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1404 if (!noninteractive) |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1405 { |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1406 #ifdef VMS |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1407 init_vms_input ();/* init_display calls get_frame_size, that needs this */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1408 #endif /* VMS */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1409 init_display (); /* Determine terminal type. init_sys_modes uses results */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1410 } |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1411 init_keyboard (); /* This too must precede init_sys_modes */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1412 #ifdef VMS |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1413 init_vmsproc (); /* And this too. */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1414 #endif /* VMS */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1415 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */ |
25010 | 1416 #ifdef HAVE_X_WINDOWS |
1417 init_xfns (); | |
1418 #endif /* HAVE_X_WINDOWS */ | |
1419 init_fns (); | |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1420 init_xdisp (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1421 init_macros (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1422 init_editfns (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1423 init_floatfns (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1424 #ifdef VMS |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1425 init_vmsfns (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1426 #endif /* VMS */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1427 init_process (); |
25010 | 1428 #ifdef HAVE_SOUND |
1429 init_sound (); | |
1430 #endif | |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1431 |
284 | 1432 if (!initialized) |
1433 { | |
9094 | 1434 char *file; |
22359 | 1435 /* Handle -l loadup, args passed by Makefile. */ |
10111
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
1436 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args)) |
284 | 1437 Vtop_level = Fcons (intern ("load"), |
9094 | 1438 Fcons (build_string (file), Qnil)); |
284 | 1439 #ifdef CANNOT_DUMP |
1440 /* Unless next switch is -nl, load "loadup.el" first thing. */ | |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1441 if (! no_loadup) |
284 | 1442 Vtop_level = Fcons (intern ("load"), |
1443 Fcons (build_string ("loadup.el"), Qnil)); | |
1444 #endif /* CANNOT_DUMP */ | |
1445 } | |
1446 | |
11195
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1447 if (initialized) |
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1448 { |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1449 #ifdef HAVE_TZSET |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1450 { |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1451 /* If the execution TZ happens to be the same as the dump TZ, |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1452 change it to some other value and then change it back, |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1453 to force the underlying implementation to reload the TZ info. |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1454 This is needed on implementations that load TZ info from files, |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1455 since the TZ file contents may differ between dump and execution. */ |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1456 char *tz = getenv ("TZ"); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1457 if (tz && !strcmp (tz, dump_tz)) |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1458 { |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1459 ++*tz; |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1460 tzset (); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1461 --*tz; |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1462 } |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1463 } |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1464 #endif |
11195
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1465 } |
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1466 |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1467 /* Gerd Moellmann <gerd@acm.org> says this makes profiling work on |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1468 FreeBSD. It might work on some other systems too. |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1469 Give it a try and tell me if it works on your system. */ |
26131
d82f40019d74
(main): Enable profiling conditional on __linux also.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
1470 #if defined (__FreeBSD__) || defined (__linux) |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1471 #ifdef PROFILING |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1472 if (initialized) |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1473 { |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1474 extern void _mcleanup (); |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1475 extern char etext; |
25010 | 1476 extern void safe_bcopy (); |
26193
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1477 extern void dump_opcode_frequencies (); |
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1478 |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1479 atexit (_mcleanup); |
25010 | 1480 /* This uses safe_bcopy because that function comes first in the |
1481 Emacs executable. It might be better to use something that | |
1482 gives the start of the text segment, but start_of_text is not | |
1483 defined on all systems now. */ | |
1484 monstartup (safe_bcopy, &etext); | |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1485 } |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1486 else |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1487 moncontrol (0); |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1488 #endif |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1489 #endif |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1490 |
284 | 1491 initialized = 1; |
1492 | |
13016
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
1493 #ifdef LOCALTIME_CACHE |
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
1494 /* Some versions of localtime have a bug. They cache the value of the time |
815 | 1495 zone rather than looking it up every time. Since localtime() is |
1496 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
|
1497 results in localtime ignoring the TZ environment variable. |
fd9865b5a41e
(main): Test LOCALTIME_CACHE.
Richard M. Stallman <rms@gnu.org>
parents:
3932
diff
changeset
|
1498 This flushes the new TZ value into localtime. */ |
fd9865b5a41e
(main): Test LOCALTIME_CACHE.
Richard M. Stallman <rms@gnu.org>
parents:
3932
diff
changeset
|
1499 tzset (); |
13016
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
1500 #endif /* defined (LOCALTIME_CACHE) */ |
815 | 1501 |
284 | 1502 /* Enter editor command loop. This never returns. */ |
1503 Frecursive_edit (); | |
1504 /* NOTREACHED */ | |
1505 } | |
1506 | |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1507 /* Sort the args so we can find the most important ones |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1508 at the beginning of argv. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1509 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1510 /* First, here's a table of all the standard options. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1511 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1512 struct standard_args |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1513 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1514 char *name; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1515 char *longname; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1516 int priority; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1517 int nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1518 }; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1519 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1520 struct standard_args standard_args[] = |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1521 { |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1522 { "-version", "--version", 150, 0 }, |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1523 #ifdef HAVE_SHM |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1524 { "-nl", "--no-shared-memory", 140, 0 }, |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1525 #endif |
11629
bae8a831397f
(standard_args): Add #ifdef VMS for -map.
Richard M. Stallman <rms@gnu.org>
parents:
11623
diff
changeset
|
1526 #ifdef VMS |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1527 { "-map", "--map-data", 130, 0 }, |
11629
bae8a831397f
(standard_args): Add #ifdef VMS for -map.
Richard M. Stallman <rms@gnu.org>
parents:
11623
diff
changeset
|
1528 #endif |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1529 { "-t", "--terminal", 120, 1 }, |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1530 { "-nw", "--no-windows", 110, 0 }, |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1531 { "-batch", "--batch", 100, 0 }, |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1532 { "-help", "--help", 90, 0 }, |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1533 { "-no-unibyte", "--no-unibyte", 83, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1534 { "-multibyte", "--multibyte", 82, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1535 { "-unibyte", "--unibyte", 81, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1536 { "-no-multibyte", "--no-multibyte", 80, 0 }, |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1537 #ifdef CANNOT_DUMP |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1538 { "-nl", "--no-loadup", 70, 0 }, |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1539 #endif |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1540 /* -d must come last before the options handled in startup.el. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1541 { "-d", "--display", 60, 1 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1542 { "-display", 0, 60, 1 }, |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1543 /* Now for the options handled in startup.el. */ |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1544 { "-q", "--no-init-file", 50, 0 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1545 { "-no-init-file", 0, 50, 0 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1546 { "-no-site-file", "--no-site-file", 40, 0 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1547 { "-u", "--user", 30, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1548 { "-user", 0, 30, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1549 { "-debug-init", "--debug-init", 20, 0 }, |
11931
3a2442baa290
(standard_args): -i, -itype, --icon-type take 0, not 1, args
Karl Heuer <kwzh@gnu.org>
parents:
11846
diff
changeset
|
1550 { "-i", "--icon-type", 15, 0 }, |
3a2442baa290
(standard_args): -i, -itype, --icon-type take 0, not 1, args
Karl Heuer <kwzh@gnu.org>
parents:
11846
diff
changeset
|
1551 { "-itype", 0, 15, 0 }, |
11596
b59f90606227
(standard_args): Move -iconic and --icon-type (etc.)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
1552 { "-iconic", "--iconic", 15, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1553 { "-bg", "--background-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1554 { "-background", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1555 { "-fg", "--foreground-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1556 { "-foreground", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1557 { "-bd", "--border-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1558 { "-bw", "--border-width", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1559 { "-ib", "--internal-border", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1560 { "-ms", "--mouse-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1561 { "-cr", "--cursor-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1562 { "-fn", "--font", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1563 { "-font", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1564 { "-g", "--geometry", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1565 { "-geometry", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1566 { "-T", "--title", 10, 1 }, |
14993
a29d378dc9cd
(standard_args): Synchronize with startup.el.
Richard M. Stallman <rms@gnu.org>
parents:
14968
diff
changeset
|
1567 { "-title", 0, 10, 1 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1568 { "-name", "--name", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1569 { "-xrm", "--xrm", 10, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1570 { "-r", "--reverse-video", 5, 0 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1571 { "-rv", 0, 5, 0 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1572 { "-reverse", 0, 5, 0 }, |
14993
a29d378dc9cd
(standard_args): Synchronize with startup.el.
Richard M. Stallman <rms@gnu.org>
parents:
14968
diff
changeset
|
1573 { "-hb", "--horizontal-scroll-bars", 5, 0 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1574 { "-vb", "--vertical-scroll-bars", 5, 0 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1575 /* These have the same priority as ordinary file name args, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1576 so they are not reordered with respect to those. */ |
11623
584362605c5e
(standard_args): Add -L/--directory/-directory.
Richard M. Stallman <rms@gnu.org>
parents:
11596
diff
changeset
|
1577 { "-L", "--directory", 0, 1 }, |
584362605c5e
(standard_args): Add -L/--directory/-directory.
Richard M. Stallman <rms@gnu.org>
parents:
11596
diff
changeset
|
1578 { "-directory", 0, 0, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1579 { "-l", "--load", 0, 1 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1580 { "-load", 0, 0, 1 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1581 { "-f", "--funcall", 0, 1 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1582 { "-funcall", 0, 0, 1 }, |
12851
89d5e3a554de
(standard_args): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12848
diff
changeset
|
1583 { "-eval", "--eval", 0, 1 }, |
26193
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1584 { "-execute", "--execute", 0, 1 }, |
16749
c85f62b1b749
(standard_args): Add -find-file and -visit.
Richard M. Stallman <rms@gnu.org>
parents:
16588
diff
changeset
|
1585 { "-find-file", "--find-file", 0, 1 }, |
c85f62b1b749
(standard_args): Add -find-file and -visit.
Richard M. Stallman <rms@gnu.org>
parents:
16588
diff
changeset
|
1586 { "-visit", "--visit", 0, 1 }, |
26193
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1587 { "-file", "--file", 0, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1588 { "-insert", "--insert", 0, 1 }, |
11596
b59f90606227
(standard_args): Move -iconic and --icon-type (etc.)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
1589 /* This should be processed after ordinary file name args and the like. */ |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1590 { "-kill", "--kill", -10, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1591 }; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1592 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1593 /* Reorder the elements of ARGV (assumed to have ARGC elements) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1594 so that the highest priority ones come first. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1595 Do not change the order of elements of equal priority. |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1596 If an option takes an argument, keep it and its argument together. |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1597 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1598 If an option that takes no argument appears more |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1599 than once, eliminate all but one copy of it. */ |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1600 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1601 static void |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1602 sort_args (argc, argv) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1603 int argc; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1604 char **argv; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1605 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1606 char **new = (char **) xmalloc (sizeof (char *) * argc); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1607 /* For each element of argv, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1608 the corresponding element of options is: |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1609 0 for an option that takes no arguments, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1610 1 for an option that takes one argument, etc. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1611 -1 for an ordinary non-option argument. */ |
10150
d8fb9db90d8e
(sort_args): Make `options' a vector of ints.
Richard M. Stallman <rms@gnu.org>
parents:
10111
diff
changeset
|
1612 int *options = (int *) xmalloc (sizeof (int) * argc); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1613 int *priority = (int *) xmalloc (sizeof (int) * argc); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1614 int to = 1; |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1615 int incoming_used = 1; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1616 int from; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1617 int i; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1618 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1619 /* Categorize all the options, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1620 and figure out which argv elts are option arguments. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1621 for (from = 1; from < argc; from++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1622 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1623 options[from] = -1; |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1624 priority[from] = 0; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1625 if (argv[from][0] == '-') |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1626 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1627 int match, thislen; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1628 char *equals; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1629 |
16091
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1630 /* If we have found "--", don't consider |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1631 any more arguments as options. */ |
19030
469abf255dcb
(sort_args): Check properly for `--'.
Richard M. Stallman <rms@gnu.org>
parents:
18950
diff
changeset
|
1632 if (argv[from][1] == '-' && argv[from][2] == 0) |
16091
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1633 { |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1634 /* Leave the "--", and everything following it, at the end. */ |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1635 for (; from < argc; from++) |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1636 { |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1637 priority[from] = -100; |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1638 options[from] = -1; |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1639 } |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1640 break; |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1641 } |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1642 |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1643 /* Look for a match with a known old-fashioned option. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1644 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1645 if (!strcmp (argv[from], standard_args[i].name)) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1646 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1647 options[from] = standard_args[i].nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1648 priority[from] = standard_args[i].priority; |
14399
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1649 if (from + standard_args[i].nargs >= argc) |
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1650 fatal ("Option `%s' requires an argument\n", argv[from]); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1651 from += standard_args[i].nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1652 goto done; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1653 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1654 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1655 /* Look for a match with a known long option. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1656 MATCH is -1 if no match so far, -2 if two or more matches so far, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1657 >= 0 (the table index of the match) if just one match so far. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1658 if (argv[from][1] == '-') |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1659 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1660 match = -1; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1661 thislen = strlen (argv[from]); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1662 equals = index (argv[from], '='); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1663 if (equals != 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1664 thislen = equals - argv[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1665 |
11157
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1666 for (i = 0; |
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1667 i < sizeof (standard_args) / sizeof (standard_args[0]); i++) |
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1668 if (standard_args[i].longname |
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1669 && !strncmp (argv[from], standard_args[i].longname, |
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1670 thislen)) |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1671 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1672 if (match == -1) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1673 match = i; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1674 else |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1675 match = -2; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1676 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1677 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1678 /* If we found exactly one match, use that. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1679 if (match >= 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1680 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1681 options[from] = standard_args[match].nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1682 priority[from] = standard_args[match].priority; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1683 /* If --OPTION=VALUE syntax is used, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1684 this option uses just one argv element. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1685 if (equals != 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1686 options[from] = 0; |
14399
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1687 if (from + options[from] >= argc) |
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1688 fatal ("Option `%s' requires an argument\n", argv[from]); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1689 from += options[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1690 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1691 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1692 done: ; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1693 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1694 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1695 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1696 /* Copy the arguments, in order of decreasing priority, to NEW. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1697 new[0] = argv[0]; |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1698 while (incoming_used < argc) |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1699 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1700 int best = -1; |
12861
c67a46e4fcef
(sort_args): Initialize best_priority smaller than any
Karl Heuer <kwzh@gnu.org>
parents:
12851
diff
changeset
|
1701 int best_priority = -9999; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1702 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1703 /* Find the highest priority remaining option. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1704 If several have equal priority, take the first of them. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1705 for (from = 1; from < argc; from++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1706 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1707 if (argv[from] != 0 && priority[from] > best_priority) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1708 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1709 best_priority = priority[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1710 best = from; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1711 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1712 /* Skip option arguments--they are tied to the options. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1713 if (options[from] > 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1714 from += options[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1715 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1716 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1717 if (best < 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1718 abort (); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1719 |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1720 /* Copy the highest priority remaining option, with its args, to NEW. |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1721 Unless it is a duplicate of the previous one. */ |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1722 if (! (options[best] == 0 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1723 && ! strcmp (new[to - 1], argv[best]))) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1724 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1725 new[to++] = argv[best]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1726 for (i = 0; i < options[best]; i++) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1727 new[to++] = argv[best + i + 1]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1728 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1729 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1730 incoming_used += 1 + (options[best] > 0 ? options[best] : 0); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1731 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1732 /* Clear out this option in ARGV. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1733 argv[best] = 0; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1734 for (i = 0; i < options[best]; i++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1735 argv[best + i + 1] = 0; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1736 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1737 |
23327
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
1738 /* If duplicate options were deleted, fill up extra space with null ptrs. */ |
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
1739 while (to < argc) |
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
1740 new[to++] = 0; |
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
1741 |
10150
d8fb9db90d8e
(sort_args): Make `options' a vector of ints.
Richard M. Stallman <rms@gnu.org>
parents:
10111
diff
changeset
|
1742 bcopy (new, argv, sizeof (char *) * argc); |
17563
b696f990c544
(sort_args): Free the malloc'd memory.
Richard M. Stallman <rms@gnu.org>
parents:
17346
diff
changeset
|
1743 |
b696f990c544
(sort_args): Free the malloc'd memory.
Richard M. Stallman <rms@gnu.org>
parents:
17346
diff
changeset
|
1744 free (options); |
b696f990c544
(sort_args): Free the malloc'd memory.
Richard M. Stallman <rms@gnu.org>
parents:
17346
diff
changeset
|
1745 free (new); |
b696f990c544
(sort_args): Free the malloc'd memory.
Richard M. Stallman <rms@gnu.org>
parents:
17346
diff
changeset
|
1746 free (priority); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1747 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1748 |
284 | 1749 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
|
1750 "Exit the Emacs job and kill it.\n\ |
284 | 1751 If ARG is an integer, return ARG as the exit program code.\n\ |
1752 If ARG is a string, stuff it as keyboard input.\n\n\ | |
1753 The value of `kill-emacs-hook', if not void,\n\ | |
1754 is a list of functions (of no args),\n\ | |
1755 all of which are called before Emacs is actually killed.") | |
1756 (arg) | |
1757 Lisp_Object arg; | |
1758 { | |
1759 struct gcpro gcpro1; | |
1760 | |
1761 GCPRO1 (arg); | |
1762 | |
1763 if (feof (stdin)) | |
1764 arg = Qt; | |
1765 | |
505 | 1766 if (!NILP (Vrun_hooks) && !noninteractive) |
284 | 1767 call1 (Vrun_hooks, intern ("kill-emacs-hook")); |
1768 | |
1769 UNGCPRO; | |
1770 | |
1771 /* Is it really necessary to do this deassign | |
1772 when we are going to exit anyway? */ | |
1773 /* #ifdef VMS | |
1774 stop_vms_input (); | |
1775 #endif */ | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1776 |
3837
85652925d5b8
* emacs.c (Fkill_emacs): Pass third argument to shut_down_emacs.
Jim Blandy <jimb@redhat.com>
parents:
3826
diff
changeset
|
1777 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
|
1778 |
11846
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1779 /* If we have an auto-save list file, |
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1780 kill it because we are exiting Emacs deliberately (not crashing). |
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1781 Do it after shut_down_emacs, which does an auto-save. */ |
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1782 if (STRINGP (Vauto_save_list_file_name)) |
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1783 unlink (XSTRING (Vauto_save_list_file_name)->data); |
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
1784 |
9132
b2ca75d3a5cb
(Fkill_emacs): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9094
diff
changeset
|
1785 exit (INTEGERP (arg) ? XINT (arg) |
284 | 1786 #ifdef VMS |
1787 : 1 | |
1788 #else | |
1789 : 0 | |
1790 #endif | |
1791 ); | |
1792 /* NOTREACHED */ | |
1793 } | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1794 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1795 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1796 /* 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
|
1797 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
|
1798 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
|
1799 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
|
1800 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
|
1801 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1802 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
|
1803 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1804 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
|
1805 and Fkill_emacs. */ |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1806 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1807 void |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1808 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
|
1809 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
|
1810 Lisp_Object stuff; |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1811 { |
6210
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
1812 /* 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
|
1813 Vrun_hooks = Qnil; |
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
1814 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1815 /* 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
|
1816 #ifdef EMACS_HAVE_TTY_PGRP |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1817 { |
4957
dccce35b1173
(main): Use EMACS_GETPGRP macro.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1818 int pgrp = EMACS_GETPGRP (0); |
dccce35b1173
(main): Use EMACS_GETPGRP macro.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1819 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1820 int tpgrp; |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1821 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
|
1822 && tpgrp == pgrp) |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1823 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1824 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1825 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1826 if (sig && sig != SIGTERM) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1827 fprintf (stderr, "Fatal error (%d).", sig); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1828 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1829 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1830 #else |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1831 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1832 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1833 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1834 |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1835 stuff_buffered_input (stuff); |
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
1836 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1837 kill_buffer_processes (Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1838 Fdo_auto_save (Qt, Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1839 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1840 #ifdef CLASH_DETECTION |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1841 unlock_all_files (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1842 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1843 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1844 #ifdef VMS |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1845 kill_vms_processes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1846 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1847 |
8815
b1766995a504
(shut_down_emacs): Don't call Fx_close_current_connection.
Richard M. Stallman <rms@gnu.org>
parents:
8704
diff
changeset
|
1848 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */ |
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1849 #ifdef HAVE_X_WINDOWS |
7538
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1850 /* 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
|
1851 if (!noninteractive && SYMBOLP (Vwindow_system) |
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
1852 && 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
|
1853 && 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
|
1854 && ! 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
|
1855 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
|
1856 #endif /* HAVE_X_WINDOWS */ |
8815
b1766995a504
(shut_down_emacs): Don't call Fx_close_current_connection.
Richard M. Stallman <rms@gnu.org>
parents:
8704
diff
changeset
|
1857 #endif |
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
1858 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1859 #ifdef SIGIO |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1860 /* 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
|
1861 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
|
1862 unrequest_sigio (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1863 signal (SIGIO, SIG_IGN); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1864 #endif |
15089
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
1865 |
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
1866 #ifdef WINDOWSNT |
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
1867 term_ntproc (); |
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
1868 #endif |
20037
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
1869 |
25010 | 1870 check_glyph_memory (); |
25347
0025288c5825
(shut_down_emacs): Call check_message_stack.
Gerd Moellmann <gerd@gnu.org>
parents:
25010
diff
changeset
|
1871 check_message_stack (); |
25010 | 1872 |
20037
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
1873 #ifdef MSDOS |
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
1874 dos_cleanup (); |
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
1875 #endif |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1876 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1877 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
1878 |
284 | 1879 |
1880 #ifndef CANNOT_DUMP | |
1881 | |
1882 #ifdef HAVE_SHM | |
1883 | |
1884 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0, | |
1885 "Dump current state of Emacs into data file FILENAME.\n\ | |
1886 This function exists on systems that use HAVE_SHM.") | |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1887 (filename) |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1888 Lisp_Object filename; |
284 | 1889 { |
11076
9d2cb049844b
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10902
diff
changeset
|
1890 extern char my_edata[]; |
284 | 1891 Lisp_Object tem; |
1892 | |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1893 CHECK_STRING (filename, 0); |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1894 filename = Fexpand_file_name (filename, Qnil); |
284 | 1895 |
1896 tem = Vpurify_flag; | |
1897 Vpurify_flag = Qnil; | |
1898 | |
1899 fflush (stdout); | |
1900 /* Tell malloc where start of impure now is */ | |
1901 /* Also arrange for warnings when nearly out of space. */ | |
1902 #ifndef SYSTEM_MALLOC | |
11720
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
1903 memory_warnings (my_edata, malloc_warning); |
284 | 1904 #endif |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1905 map_out_data (XSTRING (filename)->data); |
284 | 1906 |
1907 Vpurify_flag = tem; | |
1908 | |
1909 return Qnil; | |
1910 } | |
1911 | |
1912 #else /* not HAVE_SHM */ | |
1913 | |
1914 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0, | |
1915 "Dump current state of Emacs into executable file FILENAME.\n\ | |
1916 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\ | |
1917 This is used in the file `loadup.el' when building Emacs.\n\ | |
1918 \n\ | |
18394
d249b1ae0a02
(Fdump_emacs): Error if not run in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
18062
diff
changeset
|
1919 You must run Emacs in batch mode in order to dump it.") |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1920 (filename, symfile) |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1921 Lisp_Object filename, symfile; |
284 | 1922 { |
11076
9d2cb049844b
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10902
diff
changeset
|
1923 extern char my_edata[]; |
284 | 1924 Lisp_Object tem; |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1925 Lisp_Object symbol; |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1926 int count = specpdl_ptr - specpdl; |
284 | 1927 |
18394
d249b1ae0a02
(Fdump_emacs): Error if not run in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
18062
diff
changeset
|
1928 if (! noninteractive) |
d249b1ae0a02
(Fdump_emacs): Error if not run in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
18062
diff
changeset
|
1929 error ("Dumping Emacs works only in batch mode"); |
d249b1ae0a02
(Fdump_emacs): Error if not run in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
18062
diff
changeset
|
1930 |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1931 /* Bind `command-line-processed' to nil before dumping, |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1932 so that the dumped Emacs will process its command line |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1933 and set up to work with X windows if appropriate. */ |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1934 symbol = intern ("command-line-process"); |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1935 specbind (symbol, Qnil); |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1936 |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1937 CHECK_STRING (filename, 0); |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1938 filename = Fexpand_file_name (filename, Qnil); |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1939 if (!NILP (symfile)) |
284 | 1940 { |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1941 CHECK_STRING (symfile, 0); |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1942 if (XSTRING (symfile)->size) |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1943 symfile = Fexpand_file_name (symfile, Qnil); |
284 | 1944 } |
1945 | |
1946 tem = Vpurify_flag; | |
1947 Vpurify_flag = Qnil; | |
1948 | |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1949 #ifdef HAVE_TZSET |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1950 set_time_zone_rule (dump_tz); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1951 #ifndef LOCALTIME_CACHE |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1952 /* Force a tz reload, since set_time_zone_rule doesn't. */ |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1953 tzset (); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1954 #endif |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1955 #endif |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1956 |
284 | 1957 fflush (stdout); |
1958 #ifdef VMS | |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1959 mapout_data (XSTRING (filename)->data); |
284 | 1960 #else |
1961 /* Tell malloc where start of impure now is */ | |
1962 /* Also arrange for warnings when nearly out of space. */ | |
1963 #ifndef SYSTEM_MALLOC | |
9788
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1964 #ifndef WINDOWSNT |
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1965 /* On Windows, this was done before dumping, and that once suffices. |
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1966 Meanwhile, my_edata is not valid on Windows. */ |
11756
7d21f64d2c0e
(Fdump_emacs): Don't use & before my_edata.
Richard M. Stallman <rms@gnu.org>
parents:
11720
diff
changeset
|
1967 memory_warnings (my_edata, malloc_warning); |
9788
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1968 #endif /* not WINDOWSNT */ |
284 | 1969 #endif |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
1970 #ifdef DOUG_LEA_MALLOC |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
1971 malloc_state_ptr = malloc_get_state (); |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
1972 #endif |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1973 unexec (XSTRING (filename)->data, |
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
1974 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0); |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
1975 #ifdef DOUG_LEA_MALLOC |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
1976 free (malloc_state_ptr); |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
1977 #endif |
284 | 1978 #endif /* not VMS */ |
1979 | |
1980 Vpurify_flag = tem; | |
1981 | |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
1982 return unbind_to (count, Qnil); |
284 | 1983 } |
1984 | |
1985 #endif /* not HAVE_SHM */ | |
1986 | |
1987 #endif /* not CANNOT_DUMP */ | |
1988 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1989 #if HAVE_SETLOCALE |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1990 /* Recover from setlocale (LC_ALL, ""). */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1991 void |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1992 fixup_locale () |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1993 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1994 /* The Emacs Lisp reader needs LC_NUMERIC to be "C", |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1995 so that numbers are read and printed properly for Emacs Lisp. */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1996 setlocale (LC_NUMERIC, "C"); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1997 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1998 |
26590
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
1999 /* Set system locale CATEGORY, with previous locale *PLOCALE, to |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2000 DESIRED_LOCALE. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2001 static void |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2002 synchronize_locale (category, plocale, desired_locale) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2003 int category; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2004 Lisp_Object *plocale; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2005 Lisp_Object desired_locale; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2006 { |
26590
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2007 if (! EQ (*plocale, desired_locale)) |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2008 { |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2009 *plocale = desired_locale; |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2010 setlocale (category, (STRINGP (desired_locale) |
26631
8122fc2dd490
(synchronize_locale): Avoid compiler warnings about
Eli Zaretskii <eliz@gnu.org>
parents:
26590
diff
changeset
|
2011 ? (char *)(XSTRING (desired_locale)->data) |
26590
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2012 : "")); |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2013 } |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2014 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2015 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2016 /* Set system time locale to match Vsystem_time_locale, if possible. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2017 void |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2018 synchronize_system_time_locale () |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2019 { |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2020 synchronize_locale (LC_TIME, &Vprevious_system_time_locale, |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2021 Vsystem_time_locale); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2022 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2023 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2024 /* Set system messages locale to match Vsystem_messages_locale, if |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2025 possible. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2026 void |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2027 synchronize_system_messages_locale () |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2028 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2029 #ifdef LC_MESSAGES |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2030 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale, |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2031 Vsystem_messages_locale); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2032 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2033 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2034 #endif /* HAVE_SETLOCALE */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2035 |
2649
3a9fb5d6d259
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
2036 #ifndef SEPCHAR |
284 | 2037 #define SEPCHAR ':' |
2038 #endif | |
2039 | |
2040 Lisp_Object | |
2041 decode_env_path (evarname, defalt) | |
2042 char *evarname, *defalt; | |
2043 { | |
2044 register char *path, *p; | |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2045 Lisp_Object lpath, element, tem; |
284 | 2046 |
505 | 2047 /* It's okay to use getenv here, because this function is only used |
2048 to initialize variables when Emacs starts up, and isn't called | |
2049 after that. */ | |
638 | 2050 if (evarname != 0) |
2051 path = (char *) getenv (evarname); | |
2052 else | |
2053 path = 0; | |
284 | 2054 if (!path) |
2055 path = defalt; | |
18514
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2056 #ifdef DOS_NT |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2057 /* Ensure values from the environment use the proper directory separator. */ |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2058 if (path) |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2059 { |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2060 p = alloca (strlen (path) + 1); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2061 strcpy (p, path); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2062 path = p; |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2063 |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2064 if ('/' == DIRECTORY_SEP) |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2065 dostounix_filename (path); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2066 else |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2067 unixtodos_filename (path); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2068 } |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2069 #endif |
284 | 2070 lpath = Qnil; |
2071 while (1) | |
2072 { | |
2073 p = index (path, SEPCHAR); | |
2074 if (!p) p = path + strlen (path); | |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2075 element = (p - path ? make_string (path, p - path) |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2076 : build_string (".")); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2077 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2078 /* Add /: to the front of the name |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2079 if it would otherwise be treated as magic. */ |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2080 tem = Ffind_file_name_handler (element, Qt); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2081 if (! NILP (tem)) |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2082 element = concat2 (build_string ("/:"), element); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2083 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2084 lpath = Fcons (element, lpath); |
284 | 2085 if (*p) |
2086 path = p + 1; | |
2087 else | |
2088 break; | |
2089 } | |
2090 return Fnreverse (lpath); | |
2091 } | |
2092 | |
21514 | 2093 void |
284 | 2094 syms_of_emacs () |
2095 { | |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2096 Qfile_name_handler_alist = intern ("file-name-handler-alist"); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2097 staticpro (&Qfile_name_handler_alist); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2098 |
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
2099 #ifndef CANNOT_DUMP |
284 | 2100 #ifdef HAVE_SHM |
2101 defsubr (&Sdump_emacs_data); | |
2102 #else | |
2103 defsubr (&Sdump_emacs); | |
2104 #endif | |
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
2105 #endif |
284 | 2106 |
2107 defsubr (&Skill_emacs); | |
2108 | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
2109 defsubr (&Sinvocation_name); |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
2110 defsubr (&Sinvocation_directory); |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
2111 |
284 | 2112 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, |
2113 "Args passed by shell to Emacs, as a list of strings."); | |
2114 | |
2115 DEFVAR_LISP ("system-type", &Vsystem_type, | |
2116 "Value is symbol indicating type of operating system you are using."); | |
2117 Vsystem_type = intern (SYSTEM_TYPE); | |
2118 | |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
2119 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
|
2120 "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
|
2121 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
|
2122 |
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2123 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options, |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2124 "String containing the configuration options Emacs was built with."); |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2125 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS); |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2126 |
284 | 2127 DEFVAR_BOOL ("noninteractive", &noninteractive1, |
2128 "Non-nil means Emacs is running without interactive terminal."); | |
732 | 2129 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
2130 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
|
2131 "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
|
2132 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
|
2133 in other similar situations), functions placed on this hook should not\n\ |
10902
a8ec3a55a1d9
(syms_of_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10664
diff
changeset
|
2134 expect to be able to interact with the user. To ask for confirmation,\n\ |
a8ec3a55a1d9
(syms_of_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10664
diff
changeset
|
2135 see `kill-emacs-query-functions' instead."); |
732 | 2136 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
|
2137 |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2138 #ifdef SIGUSR1 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2139 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook, |
21840
89d03805f45a
(main): Use Vbuffer_alist instead of Fbuffer_list.
Andreas Schwab <schwab@suse.de>
parents:
21832
diff
changeset
|
2140 "Hook to be run whenever emacs receives a USR1 signal"); |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2141 Vsignal_USR1_hook = Qnil; |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2142 #ifdef SIGUSR2 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2143 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook, |
21840
89d03805f45a
(main): Use Vbuffer_alist instead of Fbuffer_list.
Andreas Schwab <schwab@suse.de>
parents:
21832
diff
changeset
|
2144 "Hook to be run whenever emacs receives a USR2 signal"); |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2145 Vsignal_USR2_hook = Qnil; |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2146 #endif |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2147 #endif |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2148 |
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
2149 |
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
|
2150 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
|
2151 "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
|
2152 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
|
2153 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
|
2154 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
|
2155 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\ |
21637
0bd76a1c9172
(syms_of_emacs): Fix patching error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
21622
diff
changeset
|
2156 before you compile Emacs, to enable the code for this feature."); |
0bd76a1c9172
(syms_of_emacs): Fix patching error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
21622
diff
changeset
|
2157 emacs_priority = 0; |
21622
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2158 |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2159 DEFVAR_LISP ("path-separator", &Vpath_separator, |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2160 "The directory separator in search paths, as a string."); |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2161 { |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2162 char c = SEPCHAR; |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2163 Vpath_separator = make_string (&c, 1); |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2164 } |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
2165 |
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2166 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
|
2167 "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
|
2168 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
|
2169 |
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2170 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
|
2171 "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
|
2172 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
|
2173 |
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2174 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
|
2175 "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
|
2176 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
|
2177 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
|
2178 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
|
2179 Vinstallation_directory = Qnil; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2180 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2181 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale, |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2182 "System locale for messages."); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2183 Vsystem_messages_locale = Qnil; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2184 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2185 DEFVAR_LISP ("previous-system-messages-locale", |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2186 &Vprevious_system_messages_locale, |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2187 "Most recently used system locale for messages."); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2188 Vprevious_system_messages_locale = Qnil; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2189 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2190 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale, |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2191 "System locale for time."); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2192 Vsystem_time_locale = Qnil; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2193 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2194 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale, |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2195 "Most recently used system locale for time."); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2196 Vprevious_system_time_locale = Qnil; |
284 | 2197 } |