Mercurial > emacs
annotate src/emacs.c @ 82595:d4f16cdedfe4
Move tree-widget/ from etc/ to etc/images/
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 22 Aug 2007 05:01:22 +0000 |
parents | a550f33e0e04 |
children | 2a69b973fae2 aaccdab0ee26 |
rev | line source |
---|---|
284 | 1 /* Fully extensible Emacs, running on Unix, intended for GNU. |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, |
75348 | 3 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
284 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
78260
922696f363b0
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
9 the Free Software Foundation; either version 3, or (at your option) |
284 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. */ | |
284 | 21 |
22 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
23 #include <config.h> |
284 | 24 #include <signal.h> |
25 #include <errno.h> | |
26 #include <stdio.h> | |
27 | |
28 #include <sys/types.h> | |
29 #include <sys/file.h> | |
30 | |
31 #ifdef VMS | |
32 #include <ssdef.h> | |
33 #endif | |
34 | |
25746
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
35 #ifdef HAVE_UNISTD_H |
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
36 #include <unistd.h> |
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
37 #endif |
8690532ba294
(main): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25667
diff
changeset
|
38 |
16219
7f3f182f20a3
Replace symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16091
diff
changeset
|
39 #ifdef BSD_SYSTEM |
284 | 40 #include <sys/ioctl.h> |
41 #endif | |
42 | |
51125
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
43 #ifdef WINDOWSNT |
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
44 #include <fcntl.h> |
60092
04686828d0da
2004-11-08 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
Jason Rumney <jasonr@gnu.org>
parents:
59624
diff
changeset
|
45 #include <windows.h> /* just for w32.h */ |
04686828d0da
2004-11-08 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
Jason Rumney <jasonr@gnu.org>
parents:
59624
diff
changeset
|
46 #include "w32.h" |
63015
f2898fcf745b
Include w32heap.h, to avoid compiler warning about sbrk.
Eli Zaretskii <eliz@gnu.org>
parents:
62304
diff
changeset
|
47 #include "w32heap.h" /* for prototype of sbrk */ |
51125
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
48 #endif |
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
49 |
284 | 50 #include "lisp.h" |
51 #include "commands.h" | |
1284 | 52 #include "intervals.h" |
21722 | 53 #include "buffer.h" |
50995
c955fcb7a64a
Include window.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48888
diff
changeset
|
54 #include "window.h" |
284 | 55 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
56 #include "systty.h" |
14502 | 57 #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
|
58 #include "syssignal.h" |
4589 | 59 #include "process.h" |
24348
9365b6b93858
(Qusr1_signal, Qusr2_signal): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
24228
diff
changeset
|
60 #include "termhooks.h" |
21514 | 61 #include "keyboard.h" |
39748
42b7a798ff79
Include keymap.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39673
diff
changeset
|
62 #include "keymap.h" |
554 | 63 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
64 #ifdef HAVE_SETLOCALE |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
65 #include <locale.h> |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
66 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
67 |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
68 #ifdef HAVE_SETRLIMIT |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
69 #include <sys/time.h> |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
70 #include <sys/resource.h> |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
71 #endif |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
72 |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
73 #ifdef HAVE_PERSONALITY_LINUX32 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
74 #include <sys/personality.h> |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
75 #endif |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
76 |
284 | 77 #ifndef O_RDWR |
78 #define O_RDWR 2 | |
79 #endif | |
80 | |
29125
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
81 #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
|
82 #if !defined (USG) || defined (BSD_PGRPS) |
29915
f93f1d35850a
(setgrp): Undefine before defining.
Dave Love <fx@gnu.org>
parents:
29198
diff
changeset
|
83 #undef setpgrp |
29125
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
84 #define setpgrp setpgid |
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
85 #endif |
29150
0398ec3316c5
(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
Gerd Moellmann <gerd@gnu.org>
parents:
29125
diff
changeset
|
86 #endif |
29125
63520d6017fb
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
Gerd Moellmann <gerd@gnu.org>
parents:
28932
diff
changeset
|
87 |
29915
f93f1d35850a
(setgrp): Undefine before defining.
Dave Love <fx@gnu.org>
parents:
29198
diff
changeset
|
88 extern void malloc_warning P_ ((char *)); |
f93f1d35850a
(setgrp): Undefine before defining.
Dave Love <fx@gnu.org>
parents:
29198
diff
changeset
|
89 extern void set_time_zone_rule P_ ((char *)); |
31336 | 90 #ifdef HAVE_INDEX |
91 extern char *index P_ ((const char *, int)); | |
92 #endif | |
6027
f25b21c384a1
Move extern declarations to top of file.
Karl Heuer <kwzh@gnu.org>
parents:
5965
diff
changeset
|
93 |
26532
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
94 /* 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
|
95 |
54689
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
96 #ifdef USE_LSB_TAG |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
97 int gdb_use_lsb = 1; |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
98 #else |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
99 int gdb_use_lsb = 0; |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
100 #endif |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
101 #ifdef NO_UNION_TYPE |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
102 int gdb_use_union = 0; |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
103 #else |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
104 int gdb_use_union = 1; |
d57cf5187262
(gdb_use_union, gdb_use_lsb): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54383
diff
changeset
|
105 #endif |
26532
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
106 EMACS_INT gdb_valbits = VALBITS; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
107 EMACS_INT gdb_gctypebits = GCTYPEBITS; |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
108 #ifdef DATA_SEG_BITS |
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
109 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
|
110 #else |
47848
20348451bd8a
Minor white space fix, just to supplement the log for previous change:
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47839
diff
changeset
|
111 EMACS_INT gdb_data_seg_bits = 0; |
26532
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
112 #endif |
26567 | 113 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG; |
55608
1d21085d1d46
(gdb_array_mark_flag): Define.
Andreas Schwab <schwab@suse.de>
parents:
55395
diff
changeset
|
114 EMACS_INT gdb_array_mark_flag = ARRAY_MARK_FLAG; |
67958
ebf8e8b846e6
(gdb_pvec_type): A dummy variable for GDB's sake.
Eli Zaretskii <eliz@gnu.org>
parents:
67488
diff
changeset
|
115 /* GDB might say "No enum type named pvec_type" if we don't have at |
ebf8e8b846e6
(gdb_pvec_type): A dummy variable for GDB's sake.
Eli Zaretskii <eliz@gnu.org>
parents:
67488
diff
changeset
|
116 least one symbol with that type, and then xbacktrace could fail. */ |
ebf8e8b846e6
(gdb_pvec_type): A dummy variable for GDB's sake.
Eli Zaretskii <eliz@gnu.org>
parents:
67488
diff
changeset
|
117 enum pvec_type gdb_pvec_type = PVEC_TYPE_MASK; |
26532
9692309251b8
(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
Gerd Moellmann <gerd@gnu.org>
parents:
26526
diff
changeset
|
118 |
40372 | 119 /* Command line args from shell, as list of strings. */ |
284 | 120 Lisp_Object Vcommand_line_args; |
121 | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
122 /* 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
|
123 names discarded. */ |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
124 Lisp_Object Vinvocation_name; |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
125 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
126 /* The directory name from which Emacs was invoked. */ |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
127 Lisp_Object Vinvocation_directory; |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
128 |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
129 /* 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
|
130 nil means get them only from PATH_LOADSEARCH. */ |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
131 Lisp_Object Vinstallation_directory; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
132 |
732 | 133 /* Hook run by `kill-emacs' before it does really anything. */ |
134 Lisp_Object Vkill_emacs_hook; | |
135 | |
81271
0aafd69cb508
(empty_unibyte_string): Rename from empty_string.
Juanma Barranquero <lekktu@gmail.com>
parents:
81221
diff
changeset
|
136 /* Empty lisp strings. To avoid having to build any others. */ |
0aafd69cb508
(empty_unibyte_string): Rename from empty_string.
Juanma Barranquero <lekktu@gmail.com>
parents:
81221
diff
changeset
|
137 Lisp_Object empty_unibyte_string, empty_multibyte_string; |
39803
3be833ec55f7
(empty_string): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39748
diff
changeset
|
138 |
21622
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
139 /* Search path separator. */ |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
140 Lisp_Object Vpath_separator; |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
141 |
284 | 142 /* Set nonzero after Emacs has started up the first time. |
143 Prevents reinitialization of the Lisp world and keymaps | |
144 on subsequent starts. */ | |
145 int initialized; | |
146 | |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
147 #ifdef DOUG_LEA_MALLOC |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
148 /* 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
|
149 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
|
150 void *malloc_state_ptr; |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
151 /* 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
|
152 extern void *malloc_get_state (); |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
153 /* From glibc, a routine that overwrites the malloc internal state. */ |
65764
375ab086d366
* image.c (slurp_file, xbm_read_bitmap_data): Cast to the correct
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65540
diff
changeset
|
154 extern int 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
|
155 /* 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
|
156 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
|
157 int malloc_using_checking; |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
158 #endif |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
159 |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
160 /* Variable whose value is symbol giving operating system type. */ |
284 | 161 Lisp_Object Vsystem_type; |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
162 |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
163 /* 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
|
164 Lisp_Object Vsystem_configuration; |
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
165 |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
166 /* Variable whose value is string giving configuration options, |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
167 for use when reporting bugs. */ |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
168 Lisp_Object Vsystem_configuration_options; |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
169 |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
170 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
|
171 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
172 /* 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
|
173 Lisp_Object Vsystem_messages_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
174 Lisp_Object Vprevious_system_messages_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
175 Lisp_Object Vsystem_time_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
176 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
|
177 |
47942
080b4586492b
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
47848
diff
changeset
|
178 /* If non-zero, emacs should not attempt to use a window-specific code, |
40372 | 179 but instead should use the virtual terminal under which it was started. */ |
284 | 180 int inhibit_window_system; |
181 | |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
182 /* 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
|
183 in child_setup and sys_suspend to make sure subshells run at normal |
40372 | 184 priority; those functions have their own extern declaration. */ |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42744
diff
changeset
|
185 EMACS_INT 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
|
186 |
40372 | 187 /* If non-zero, a filter or a sentinel is running. Tested to save the match |
188 data on the first attempt to change it inside asynchronous code. */ | |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
189 int running_asynch_code; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
190 |
6863
2aab30ba72b4
(inherited_pgroup): Conditionalize on BSD_PGRPS.
Richard M. Stallman <rms@gnu.org>
parents:
6814
diff
changeset
|
191 #ifdef BSD_PGRPS |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
192 /* See sysdep.c. */ |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
193 extern int inherited_pgroup; |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
194 #endif |
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
195 |
284 | 196 #ifdef HAVE_X_WINDOWS |
40372 | 197 /* If non-zero, -d was specified, meaning we're using some window system. */ |
284 | 198 int display_arg; |
199 #endif | |
200 | |
201 /* An address near the bottom of the stack. | |
202 Tells GC how to save a copy of the stack. */ | |
203 char *stack_bottom; | |
204 | |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
205 /* The address where the heap starts (from the first sbrk (0) call). */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
206 static void *my_heap_start; |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
207 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
208 /* The gap between BSS end and heap start as far as we can tell. */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
209 static unsigned long heap_bss_diff; |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
210 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
211 /* If the gap between BSS end and heap start is larger than this we try to |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
212 work around it, and if that fails, output a warning in dump-emacs. */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
213 #define MAX_HEAP_BSS_DIFF (1024*1024) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
214 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
215 |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
216 #ifdef HAVE_WINDOW_SYSTEM |
284 | 217 extern Lisp_Object Vwindow_system; |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
218 #endif /* HAVE_WINDOW_SYSTEM */ |
284 | 219 |
11720
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
220 extern Lisp_Object Vauto_save_list_file_name; |
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
221 |
56034
161424b0c2f5
(shut_down_emacs): Inhibit redisplay during shutdown.
Kim F. Storm <storm@cua.dk>
parents:
55742
diff
changeset
|
222 extern Lisp_Object Vinhibit_redisplay; |
161424b0c2f5
(shut_down_emacs): Inhibit redisplay during shutdown.
Kim F. Storm <storm@cua.dk>
parents:
55742
diff
changeset
|
223 |
284 | 224 #ifdef USG_SHARED_LIBRARIES |
225 /* If nonzero, this is the place to put the end of the writable segment | |
226 at startup. */ | |
227 | |
228 unsigned int bss_end = 0; | |
229 #endif | |
230 | |
231 /* Nonzero means running Emacs without interactive terminal. */ | |
232 | |
233 int noninteractive; | |
234 | |
235 /* Value of Lisp variable `noninteractive'. | |
236 Normally same as C variable `noninteractive' | |
237 but nothing terrible happens if user sets this one. */ | |
238 | |
239 int noninteractive1; | |
7869
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
240 |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
241 /* Save argv and argc. */ |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
242 char **initial_argv; |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
243 int initial_argc; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
244 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
245 static void sort_args (); |
21514 | 246 void syms_of_emacs (); |
27472 | 247 |
54116
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
248 /* MSVC needs each string be shorter than 2048 bytes, so the usage |
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
249 strings below are split to not overflow this limit. */ |
27627
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
250 #define USAGE1 "\ |
27472 | 251 Usage: %s [OPTION-OR-FILENAME]...\n\ |
252 \n\ | |
253 Run Emacs, the extensible, customizable, self-documenting real-time\n\ | |
254 display editor. The recommended way to start Emacs for normal editing\n\ | |
255 is with no options at all.\n\ | |
256 \n\ | |
60399
e8bfc9ca45c2
(USAGE1): Replace Info node name "command arguments"
Juri Linkov <juri@jurta.org>
parents:
60358
diff
changeset
|
257 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\ |
27472 | 258 read the main documentation for these command-line arguments.\n\ |
259 \n\ | |
260 Initialization options:\n\ | |
261 \n\ | |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
262 --batch do not do interactive display; implies -q\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
263 --debug-init enable Emacs Lisp debugger for init file\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
264 --display, -d DISPLAY use X server DISPLAY\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
265 --multibyte, --no-unibyte inhibit the effect of EMACS_UNIBYTE\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
266 --no-desktop do not load a saved desktop\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
267 --no-init-file, -q load neither ~/.emacs nor default.el\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
268 --no-shared-memory, -nl do not use shared memory\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
269 --no-site-file do not load site-start.el\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
270 --no-splash do not display a splash screen on startup\n\ |
61898
3d014b038c1a
(USAGE1): Add --basic-display and --quick options.
Nick Roberts <nickrob@snap.net.nz>
parents:
61783
diff
changeset
|
271 --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\ |
65172
0e4df13dd5ba
(USAGE1): Fix the description of the -Q option.
Eli Zaretskii <eliz@gnu.org>
parents:
64775
diff
changeset
|
272 --quick, -Q equivalent to -q --no-site-file --no-splash\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
273 --script FILE run FILE as an Emacs Lisp script\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
274 --terminal, -t DEVICE use DEVICE for terminal I/O\n\ |
27472 | 275 --unibyte, --no-multibyte run Emacs in unibyte mode\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
276 --user, -u USER load ~USER/.emacs instead of your own\n\ |
54116
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
277 \n%s" |
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
278 |
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
279 #define USAGE2 "\ |
27472 | 280 Action options:\n\ |
281 \n\ | |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
282 FILE visit FILE using find-file\n\ |
82402
a550f33e0e04
(USAGE2): Improve text.
Richard M. Stallman <rms@gnu.org>
parents:
82307
diff
changeset
|
283 +LINE go to line LINE in next FILE\n\ |
a550f33e0e04
(USAGE2): Improve text.
Richard M. Stallman <rms@gnu.org>
parents:
82307
diff
changeset
|
284 +LINE:COLUMN go to line LINE, column COLUMN, in next FILE\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
285 --directory, -L DIR add DIR to variable load-path\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
286 --eval EXPR evaluate Emacs Lisp expression EXPR\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
287 --execute EXPR evaluate Emacs Lisp expression EXPR\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
288 --file FILE visit FILE using find-file\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
289 --find-file FILE visit FILE using find-file\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
290 --funcall, -f FUNC call Emacs Lisp function FUNC with no arguments\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
291 --insert FILE insert contents of FILE into current buffer\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
292 --kill exit without asking for confirmation\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
293 --load, -l FILE load Emacs Lisp FILE using the load function\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
294 --visit FILE visit FILE using find-file\n\ |
27627
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
295 \n" |
9de718d5635c
(USAGE): Split into USAGE1 and USAGE2, to work-around
Andrew Innes <andrewi@gnu.org>
parents:
27538
diff
changeset
|
296 |
54116
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
297 #define USAGE3 "\ |
27538
3d62fa3917d1
(USAGE): Use term `display options' instead of `X
Gerd Moellmann <gerd@gnu.org>
parents:
27472
diff
changeset
|
298 Display options:\n\ |
27472 | 299 \n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
300 --background-color, -bg COLOR window background color\n\ |
61898
3d014b038c1a
(USAGE1): Add --basic-display and --quick options.
Nick Roberts <nickrob@snap.net.nz>
parents:
61783
diff
changeset
|
301 --basic-display, -D disable many display features;\n\ |
3d014b038c1a
(USAGE1): Add --basic-display and --quick options.
Nick Roberts <nickrob@snap.net.nz>
parents:
61783
diff
changeset
|
302 used for debugging Emacs\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
303 --border-color, -bd COLOR main border color\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
304 --border-width, -bw WIDTH width of main border\n\ |
74642
ee3e5cf45b69
(USAGE3): Clarify documentation of --color.
Eli Zaretskii <eliz@gnu.org>
parents:
74610
diff
changeset
|
305 --color, --color=MODE override color mode for character terminals;\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
306 MODE defaults to `auto', and can also\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
307 be `never', `auto', `always',\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
308 or a mode name like `ansi8'\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
309 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
310 --font, -fn FONT default font; must be fixed-width\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
311 --foreground-color, -fg COLOR window foreground color\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
312 --fullheight, -fh make the first frame high as the screen\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
313 --fullscreen, -fs make first frame fullscreen\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
314 --fullwidth, -fw make the first frame wide as the screen\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
315 --geometry, -g GEOMETRY window geometry\n\ |
65979 | 316 --no-bitmap-icon, -nbi do not use picture of gnu for Emacs icon\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
317 --iconic start Emacs in iconified state\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
318 --internal-border, -ib WIDTH width between text and main border\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
319 --line-spacing, -lsp PIXELS additional space to put between lines\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
320 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
321 --name NAME title for initial Emacs frame\n\ |
60399
e8bfc9ca45c2
(USAGE1): Replace Info node name "command arguments"
Juri Linkov <juri@jurta.org>
parents:
60358
diff
changeset
|
322 --no-blinking-cursor, -nbc disable blinking cursor\n\ |
54101
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
323 --reverse-video, -r, -rv switch foreground and background\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
324 --title, -T TITLE title for initial Emacs frame\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
325 --vertical-scroll-bars, -vb enable vertical scroll bars\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
326 --xrm XRESOURCES set additional X resources\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
327 --help display this help and exit\n\ |
e1a843eba96a
(USAGE1): Add --no-desktop. Move --display from USAGE2.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53882
diff
changeset
|
328 --version output version information and exit\n\ |
62006
e3167e9f22d0
(USAGE3, USAGE4): Keep strings below 2048 bytes.
Jason Rumney <jasonr@gnu.org>
parents:
61898
diff
changeset
|
329 \n" |
e3167e9f22d0
(USAGE3, USAGE4): Keep strings below 2048 bytes.
Jason Rumney <jasonr@gnu.org>
parents:
61898
diff
changeset
|
330 |
e3167e9f22d0
(USAGE3, USAGE4): Keep strings below 2048 bytes.
Jason Rumney <jasonr@gnu.org>
parents:
61898
diff
changeset
|
331 #define USAGE4 "\ |
27472 | 332 You can generally also specify long option names with a single -; for\n\ |
333 example, -batch as well as --batch. You can use any unambiguous\n\ | |
334 abbreviation for a --option.\n\ | |
335 \n\ | |
336 Various environment variables and window system resources also affect\n\ | |
337 Emacs' operation. See the main documentation.\n\ | |
62006
e3167e9f22d0
(USAGE3, USAGE4): Keep strings below 2048 bytes.
Jason Rumney <jasonr@gnu.org>
parents:
61898
diff
changeset
|
338 \n\ |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
339 Report bugs to %s. First, please see the Bugs\n\ |
27472 | 340 section of the Emacs manual or the file BUGS.\n" |
341 | |
284 | 342 |
40372 | 343 /* Signal code for the fatal signal that was received. */ |
284 | 344 int fatal_error_code; |
345 | |
40372 | 346 /* Nonzero if handling a fatal error already. */ |
284 | 347 int fatal_error_in_progress; |
348 | |
40372 | 349 /* If non-null, call this function from fatal_error_signal before |
39576
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
350 committing suicide. */ |
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
351 |
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
352 void (*fatal_error_signal_hook) P_ ((void)); |
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
353 |
58986
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
354 #ifdef HAVE_GTK_AND_PTHREAD |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
355 /* When compiled with GTK and running under Gnome, multiple threads meay be |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
356 created. Keep track of our main thread to make sure signals are delivered |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
357 to it (see syssignal.h). */ |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
358 |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
359 pthread_t main_thread; |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
360 #endif |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
361 |
39576
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
362 |
40372 | 363 /* Handle bus errors, invalid instruction, etc. */ |
505 | 364 SIGTYPE |
284 | 365 fatal_error_signal (sig) |
366 int sig; | |
367 { | |
58986
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
368 SIGNAL_THREAD_CHECK (sig); |
284 | 369 fatal_error_code = sig; |
370 signal (sig, SIG_DFL); | |
371 | |
14497
002c4d6b3e28
(fatal_error_signal): Do TOTALLY_UNBLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
14399
diff
changeset
|
372 TOTALLY_UNBLOCK_INPUT; |
002c4d6b3e28
(fatal_error_signal): Do TOTALLY_UNBLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
14399
diff
changeset
|
373 |
284 | 374 /* 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
|
375 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
|
376 { |
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
377 fatal_error_in_progress = 1; |
284 | 378 |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
379 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
|
380 } |
284 | 381 |
382 #ifdef VMS | |
383 LIB$STOP (SS$_ABORT); | |
384 #else | |
1945
b07c27b4dca7
* emacs.c (fatal_error_signal): Unblock the signal before we try
Jim Blandy <jimb@redhat.com>
parents:
1917
diff
changeset
|
385 /* 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
|
386 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
|
387 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
|
388 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
|
389 #ifndef MSDOS |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
390 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
|
391 #endif |
39576
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
392 |
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
393 if (fatal_error_signal_hook) |
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
394 fatal_error_signal_hook (); |
40372 | 395 |
284 | 396 kill (getpid (), fatal_error_code); |
397 #endif /* not VMS */ | |
398 } | |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
399 |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
400 #ifdef SIGDANGER |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
401 |
6171 | 402 /* Handler for SIGDANGER. */ |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
403 SIGTYPE |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
404 memory_warning_signal (sig) |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
405 int sig; |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
406 { |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
407 signal (sig, memory_warning_signal); |
58986
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
408 SIGNAL_THREAD_CHECK (sig); |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
409 |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
410 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
|
411 |
38931e897e56
(memory_warning_signal): Call force_auto_save_soon.
Richard M. Stallman <rms@gnu.org>
parents:
7164
diff
changeset
|
412 /* 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
|
413 force_auto_save_soon (); |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
414 } |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
415 #endif |
20527 | 416 |
417 /* 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
|
418 so that GDB can return from a breakpoint here. |
40372 | 419 MSDOS has its own definition in msdos.c. */ |
20527 | 420 |
21832
daf559874709
(abort): Omit this definition, if NO_ABORT.
Richard M. Stallman <rms@gnu.org>
parents:
21812
diff
changeset
|
421 #if ! defined (DOS_NT) && ! defined (NO_ABORT) |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
422 |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
423 #ifndef ABORT_RETURN_TYPE |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
424 #define ABORT_RETURN_TYPE void |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
425 #endif |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
426 |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
427 ABORT_RETURN_TYPE |
20527 | 428 abort () |
429 { | |
430 kill (getpid (), SIGABRT); | |
21832
daf559874709
(abort): Omit this definition, if NO_ABORT.
Richard M. Stallman <rms@gnu.org>
parents:
21812
diff
changeset
|
431 /* 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
|
432 exit (1); |
20527 | 433 } |
21418
8e54230531dc
(abort): Don't redefine on MSDOS.
Karl Heuer <kwzh@gnu.org>
parents:
21406
diff
changeset
|
434 #endif |
20527 | 435 |
284 | 436 |
40372 | 437 /* Code for dealing with Lisp access to the Unix command line. */ |
284 | 438 |
21514 | 439 static void |
284 | 440 init_cmdargs (argc, argv, skip_args) |
441 int argc; | |
442 char **argv; | |
443 int skip_args; | |
444 { | |
445 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
|
446 Lisp_Object name, dir, tem; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
447 int count = SPECPDL_INDEX (); |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
448 Lisp_Object raw_name; |
284 | 449 |
7869
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
450 initial_argv = argv; |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
451 initial_argc = argc; |
3b27d2451f83
(init_cmdargs): Set up initial_argv, initial_argc.
Richard M. Stallman <rms@gnu.org>
parents:
7788
diff
changeset
|
452 |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
453 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
|
454 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
455 /* 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
|
456 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
|
457 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
|
458 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
|
459 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
|
460 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
461 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
|
462 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
|
463 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
464 /* 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
|
465 Emacs actually came from. */ |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
466 if (NILP (Vinvocation_directory)) |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
467 { |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
468 Lisp_Object found; |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
469 int yes = openp (Vexec_path, Vinvocation_name, |
45003
4209fda9d03f
(init_cmdargs): Update call to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44890
diff
changeset
|
470 Vexec_suffixes, &found, make_number (X_OK)); |
4632
48634fa190aa
(init_cmdargs): Check openp result for 1, not != 0.
Richard M. Stallman <rms@gnu.org>
parents:
4619
diff
changeset
|
471 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
|
472 { |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
473 /* 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
|
474 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
|
475 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
|
476 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
|
477 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
|
478 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
|
479 } |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
480 } |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
481 |
12383
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
482 if (!NILP (Vinvocation_directory) |
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
483 && 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
|
484 /* 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
|
485 Make it absolute. */ |
12383
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
486 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil); |
e53c62fff24e
(init_cmdargs): Make Vinvocation_directory
Richard M. Stallman <rms@gnu.org>
parents:
12376
diff
changeset
|
487 |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
488 Vinstallation_directory = Qnil; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
489 |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
490 if (!NILP (Vinvocation_directory)) |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
491 { |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
492 dir = Vinvocation_directory; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
493 name = Fexpand_file_name (Vinvocation_name, dir); |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
494 while (1) |
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 Lisp_Object tem, lib_src_exists; |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
497 Lisp_Object etc_exists, info_exists; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
498 |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
499 /* 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
|
500 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
|
501 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
|
502 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
|
503 lib_src_exists = Ffile_exists_p (tem); |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
504 |
17312
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
505 #ifdef MSDOS |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
506 /* 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
|
507 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
|
508 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
|
509 tem = Fexpand_file_name (build_string ("info"), dir); |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
510 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
|
511 #else |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
512 info_exists = Qnil; |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
513 #endif |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
514 |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
515 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
|
516 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
517 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
|
518 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
|
519 if (!NILP (etc_exists)) |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
520 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
521 Vinstallation_directory |
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
522 = 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
|
523 break; |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
524 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
525 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
526 |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
527 /* 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
|
528 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
|
529 lib_src_exists = Ffile_exists_p (tem); |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
530 |
17312
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
531 |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
532 #ifdef MSDOS |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
533 /* See the MSDOS commentary above. */ |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
534 tem = Fexpand_file_name (build_string ("../info"), dir); |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
535 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
|
536 #else |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
537 info_exists = Qnil; |
647d2774c99e
(init_cmdargs) [MSDOS]: Make the change that sets
Eli Zaretskii <eliz@gnu.org>
parents:
17060
diff
changeset
|
538 #endif |
16865
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
539 |
0e79ed2e445b
(init_cmdargs): Allow `installation-directory'
Richard M. Stallman <rms@gnu.org>
parents:
16749
diff
changeset
|
540 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
|
541 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
542 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
|
543 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
|
544 if (!NILP (etc_exists)) |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
545 { |
7002
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
546 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
|
547 Vinstallation_directory |
e9667f7a0cbc
(init_cmdargs): Just check for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
6863
diff
changeset
|
548 = 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
|
549 break; |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
550 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
551 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
552 |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
553 /* If the Emacs executable is actually a link, |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
554 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
|
555 tem = Ffile_symlink_p (name); |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
556 if (!NILP (tem)) |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
557 { |
8704
ec7ec0e35e5e
(init_cmdargs): After chasing link, use only the expanded name.
Richard M. Stallman <rms@gnu.org>
parents:
7869
diff
changeset
|
558 name = Fexpand_file_name (tem, dir); |
5763
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
559 dir = Ffile_name_directory (name); |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
560 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
561 else |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
562 break; |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
563 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
564 } |
ec298224882d
(init_cmdargs): Set Vinstallation_directory.
Richard M. Stallman <rms@gnu.org>
parents:
5583
diff
changeset
|
565 |
284 | 566 Vcommand_line_args = Qnil; |
567 | |
568 for (i = argc - 1; i >= 0; i--) | |
569 { | |
570 if (i == 0 || i > skip_args) | |
58617
48bd22b33f65
(init_cmdargs): Set unibyte strings in Vcommand_line_args.
Kenichi Handa <handa@m17n.org>
parents:
58088
diff
changeset
|
571 /* For the moment, we keep arguments as is in unibyte strings. |
48bd22b33f65
(init_cmdargs): Set unibyte strings in Vcommand_line_args.
Kenichi Handa <handa@m17n.org>
parents:
58088
diff
changeset
|
572 They are decoded in the function command-line after we know |
48bd22b33f65
(init_cmdargs): Set unibyte strings in Vcommand_line_args.
Kenichi Handa <handa@m17n.org>
parents:
58088
diff
changeset
|
573 locale-coding-system. */ |
284 | 574 Vcommand_line_args |
58632
c0b9a69b829b
(malloc_initialize_hook): Don't free malloc_state_ptr if
Kim F. Storm <storm@cua.dk>
parents:
58617
diff
changeset
|
575 = Fcons (make_unibyte_string (argv[i], strlen (argv[i])), |
58617
48bd22b33f65
(init_cmdargs): Set unibyte strings in Vcommand_line_args.
Kenichi Handa <handa@m17n.org>
parents:
58088
diff
changeset
|
576 Vcommand_line_args); |
284 | 577 } |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
578 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
579 unbind_to (count, Qnil); |
284 | 580 } |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
581 |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
582 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0, |
40372 | 583 doc: /* Return the program name that was used to run Emacs. |
584 Any directory names are omitted. */) | |
585 () | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
586 { |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
587 return Fcopy_sequence (Vinvocation_name); |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
588 } |
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
589 |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
590 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory, |
40372 | 591 0, 0, 0, |
592 doc: /* Return the directory name in which the Emacs executable was located. */) | |
593 () | |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
594 { |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
595 return Fcopy_sequence (Vinvocation_directory); |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
596 } |
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
597 |
284 | 598 |
599 #ifdef VMS | |
600 #ifdef LINK_CRTL_SHARE | |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
601 #ifdef SHARABLE_LIB_BUG |
284 | 602 extern noshare char **environ; |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
603 #endif /* SHARABLE_LIB_BUG */ |
284 | 604 #endif /* LINK_CRTL_SHARE */ |
605 #endif /* VMS */ | |
606 | |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
607 #ifdef HAVE_TZSET |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
608 /* 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
|
609 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
|
610 static char dump_tz[] = "UtC0"; |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
611 #endif |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
612 |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
613 #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
|
614 /* 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
|
615 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
|
616 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
|
617 (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
|
618 #ifdef __GNUC__ |
6467
53c14a4f9307
(__do_global_ctors, __do_global_ctors_aux)
Richard M. Stallman <rms@gnu.org>
parents:
6428
diff
changeset
|
619 #ifndef GCC_CTORS_IN_LIBC |
21514 | 620 void __do_global_ctors () |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
621 {} |
21514 | 622 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
|
623 {} |
21514 | 624 void __do_global_dtors () |
1074
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
625 {} |
51093 | 626 /* GNU/Linux has a bug in its library; avoid an error. */ |
41969
e669966d496e
Test GNU_LINUX, not LINUX.
Richard M. Stallman <rms@gnu.org>
parents:
41261
diff
changeset
|
627 #ifndef GNU_LINUX |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
628 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
|
629 #endif |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
630 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
|
631 #endif /* GCC_CTORS_IN_LIBC */ |
21514 | 632 void __main () |
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
633 {} |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
634 #endif /* __GNUC__ */ |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
635 #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
|
636 |
9094 | 637 /* Test whether the next argument in ARGV matches SSTR or a prefix of |
638 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null | |
639 (the argument is supposed to have a value) store in *VALPTR either | |
640 the next argument or the portion of this one after the equal sign. | |
641 ARGV is read starting at position *SKIPPTR; this index is advanced | |
642 by the number of arguments used. | |
643 | |
644 Too bad we can't just use getopt for all of this, but we don't have | |
645 enough information to do it right. */ | |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
646 |
9094 | 647 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
|
648 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr) |
9094 | 649 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
|
650 int argc; |
9094 | 651 char *sstr; |
652 char *lstr; | |
653 int minlen; | |
654 char **valptr; | |
655 int *skipptr; | |
656 { | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31602
diff
changeset
|
657 char *p = NULL; |
9094 | 658 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
|
659 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
|
660 |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
661 /* 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
|
662 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
|
663 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
|
664 |
add3c6d21876
(argmatch): Take argc as arg; don't go past end of argv.
Richard M. Stallman <rms@gnu.org>
parents:
10102
diff
changeset
|
665 arg = argv[*skipptr+1]; |
9094 | 666 if (arg == NULL) |
667 return 0; | |
668 if (strcmp (arg, sstr) == 0) | |
669 { | |
670 if (valptr != NULL) | |
671 { | |
672 *valptr = argv[*skipptr+2]; | |
673 *skipptr += 2; | |
674 } | |
675 else | |
676 *skipptr += 1; | |
677 return 1; | |
678 } | |
679 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL | |
680 ? p - arg : strlen (arg)); | |
10102
339e129f8874
(argmatch): Handle lstr == 0.
Richard M. Stallman <rms@gnu.org>
parents:
10032
diff
changeset
|
681 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0) |
9094 | 682 return 0; |
683 else if (valptr == NULL) | |
684 { | |
685 *skipptr += 1; | |
686 return 1; | |
687 } | |
688 else if (p != NULL) | |
689 { | |
690 *valptr = p+1; | |
691 *skipptr += 1; | |
692 return 1; | |
693 } | |
694 else if (argv[*skipptr+2] != NULL) | |
695 { | |
696 *valptr = argv[*skipptr+2]; | |
697 *skipptr += 2; | |
698 return 1; | |
699 } | |
700 else | |
701 { | |
702 return 0; | |
703 } | |
704 } | |
705 | |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
706 #ifdef DOUG_LEA_MALLOC |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
707 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
708 /* 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
|
709 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
|
710 possible using this special hook. */ |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
711 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
712 static void |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
713 malloc_initialize_hook () |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
714 { |
31094
7949e7792b02
(malloc_initialize_hook) [USE_CRT_DLL]: Remove
Andrew Innes <andrewi@gnu.org>
parents:
30834
diff
changeset
|
715 #ifndef USE_CRT_DLL |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
716 extern char **environ; |
31094
7949e7792b02
(malloc_initialize_hook) [USE_CRT_DLL]: Remove
Andrew Innes <andrewi@gnu.org>
parents:
30834
diff
changeset
|
717 #endif |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
718 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
719 if (initialized) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
720 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
721 if (!malloc_using_checking) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
722 /* 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
|
723 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
|
724 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
|
725 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
726 char **p; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
727 |
36189
3873da2fd8b1
(malloc_initialize_hook): Handle case thet `environ'
Gerd Moellmann <gerd@gnu.org>
parents:
33886
diff
changeset
|
728 for (p = environ; p && *p; p++) |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
729 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0) |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
730 { |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
731 do |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
732 *p = p[1]; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
733 while (*++p); |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
734 break; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
735 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
736 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
737 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
738 malloc_set_state (malloc_state_ptr); |
58632
c0b9a69b829b
(malloc_initialize_hook): Don't free malloc_state_ptr if
Kim F. Storm <storm@cua.dk>
parents:
58617
diff
changeset
|
739 #ifndef XMALLOC_OVERRUN_CHECK |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
740 free (malloc_state_ptr); |
58632
c0b9a69b829b
(malloc_initialize_hook): Don't free malloc_state_ptr if
Kim F. Storm <storm@cua.dk>
parents:
58617
diff
changeset
|
741 #endif |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
742 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
743 else |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
744 { |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
745 if (my_heap_start == 0) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
746 my_heap_start = sbrk (0); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
747 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL; |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
748 } |
24900
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
749 } |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
750 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
751 void (*__malloc_initialize_hook) () = malloc_initialize_hook; |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
752 |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
753 #endif /* DOUG_LEA_MALLOC */ |
b57b0a4e4230
[DOUG_LEA_MALLOC] (malloc_initialize_hook):
Karl Heuer <kwzh@gnu.org>
parents:
24464
diff
changeset
|
754 |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
755 |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
756 #define REPORT_EMACS_BUG_ADDRESS "bug-gnu-emacs@gnu.org" |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
757 #define REPORT_EMACS_BUG_PRETEST_ADDRESS "emacs-pretest-bug@gnu.org" |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
758 |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
759 /* This function is used to determine an address to which bug report should |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
760 be sent. */ |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
761 |
40572
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
762 char * |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
763 bug_reporting_address () |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
764 { |
40572
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
765 int count = 0; |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
766 Lisp_Object temp; |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
767 char *string; |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
768 |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
769 temp = Fsymbol_value (intern ("emacs-version")); |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
770 |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
771 /* When `emacs-version' is invalid, use normal address. */ |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
772 if (!STRINGP(temp)) |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
773 return REPORT_EMACS_BUG_ADDRESS; |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
774 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
775 string = SDATA (temp); |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
776 |
40572
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
777 /* Count dots in `emacs-version'. */ |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
778 while (*string) |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
779 { |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
780 if (*string == '.') |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
781 count++; |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
782 string++; |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
783 } |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
784 |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
785 /* When `emacs-version' has at least three dots, it is development or |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
786 pretest version of Emacs. */ |
40572
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
787 return count >= 3 ? REPORT_EMACS_BUG_PRETEST_ADDRESS : REPORT_EMACS_BUG_ADDRESS; |
40405
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
788 } |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
789 |
ea36983f19d3
(bug_reporting_address): New function.
Pavel Janík <Pavel@Janik.cz>
parents:
40372
diff
changeset
|
790 |
284 | 791 /* ARGSUSED */ |
21514 | 792 int |
48319 | 793 main (argc, argv |
794 #ifdef VMS | |
795 , envp | |
796 #endif | |
797 ) | |
284 | 798 int argc; |
799 char **argv; | |
48319 | 800 #ifdef VMS |
284 | 801 char **envp; |
48319 | 802 #endif |
284 | 803 { |
27748
b980acbcfbfd
(main): Use #if GC_MARK_STACK instead of #ifdef.
Gerd Moellmann <gerd@gnu.org>
parents:
27740
diff
changeset
|
804 #if GC_MARK_STACK |
27740
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
805 Lisp_Object dummy; |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
806 #endif |
284 | 807 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
|
808 int do_initial_setlocale; |
284 | 809 int skip_args = 0; |
31094
7949e7792b02
(malloc_initialize_hook) [USE_CRT_DLL]: Remove
Andrew Innes <andrewi@gnu.org>
parents:
30834
diff
changeset
|
810 #ifndef USE_CRT_DLL |
284 | 811 extern int errno; |
31094
7949e7792b02
(malloc_initialize_hook) [USE_CRT_DLL]: Remove
Andrew Innes <andrewi@gnu.org>
parents:
30834
diff
changeset
|
812 #endif |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
813 #ifdef HAVE_SETRLIMIT |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
814 struct rlimit rlim; |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
815 #endif |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
816 int no_loadup = 0; |
47059
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
817 char *junk = 0; |
284 | 818 |
27748
b980acbcfbfd
(main): Use #if GC_MARK_STACK instead of #ifdef.
Gerd Moellmann <gerd@gnu.org>
parents:
27740
diff
changeset
|
819 #if GC_MARK_STACK |
27740
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
820 extern Lisp_Object *stack_base; |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
821 stack_base = &dummy; |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
822 #endif |
048c82411361
(main) [GC_MARK_STACK]: Initialize stack_base.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
823 |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
824 if (!initialized) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
825 { |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
826 extern char my_endbss[]; |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
827 extern char *my_endbss_static; |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
828 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
829 if (my_heap_start == 0) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
830 my_heap_start = sbrk (0); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
831 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
832 heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
833 } |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
834 |
13617
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
835 #ifdef LINUX_SBRK_BUG |
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
836 __sbrk (1); |
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
837 #endif |
655d3464a49b
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Richard M. Stallman <rms@gnu.org>
parents:
13409
diff
changeset
|
838 |
19729
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
839 #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
|
840 if (initialized) |
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
841 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
|
842 #endif |
fce71d3f95b1
(main): Call run_time_remap earlier, before any use of stdio.
Richard M. Stallman <rms@gnu.org>
parents:
19354
diff
changeset
|
843 |
47047
808507a40399
Correct yesterday's mistake of changing test for MAC_OSX to
Andrew Choi <akochoi@shaw.ca>
parents:
47044
diff
changeset
|
844 #ifdef MAC_OSX |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
845 if (!initialized) |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
846 unexec_init_emacs_zone (); |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
847 #endif |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
848 |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
849 sort_args (argc, argv); |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
850 argc = 0; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
851 while (argv[argc]) argc++; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
852 |
22349
cf18f0d82138
(main): Don't implement --version if not initialized.
Karl Heuer <kwzh@gnu.org>
parents:
22323
diff
changeset
|
853 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
|
854 /* 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
|
855 So ignore --version otherwise. */ |
cf18f0d82138
(main): Don't implement --version if not initialized.
Karl Heuer <kwzh@gnu.org>
parents:
22323
diff
changeset
|
856 && initialized) |
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
857 { |
81221
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
858 Lisp_Object tem, tem2; |
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
859 tem = Fsymbol_value (intern ("emacs-version")); |
81221
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
860 tem2 = Fsymbol_value (intern ("emacs-copyright")); |
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
861 if (!STRINGP (tem)) |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
862 { |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
863 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
|
864 exit (1); |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
865 } |
81221
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
866 if (!STRINGP (tem2)) |
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
867 { |
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
868 fprintf (stderr, "Invalid value of `emacs-copyright'\n"); |
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
869 exit (1); |
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
870 } |
10172
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
871 else |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
872 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
873 printf ("GNU Emacs %s\n", SDATA (tem)); |
81221
eee526e38781
(main): Use `emacs-copyright' in --version output.
Glenn Morris <rgm@gnu.org>
parents:
76921
diff
changeset
|
874 printf ("%s\n", SDATA(tem2)); |
16278
37408c6b96fd
(main): Add copyright etc. to --version output.
Richard M. Stallman <rms@gnu.org>
parents:
16219
diff
changeset
|
875 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
|
876 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
|
877 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
|
878 printf ("For more information about these matters, "); |
22529 | 879 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
|
880 exit (0); |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
881 } |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
882 } |
9a91efe65b85
(main): Fix conversion of --display to -d.
Richard M. Stallman <rms@gnu.org>
parents:
10150
diff
changeset
|
883 |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
884 #ifdef HAVE_PERSONALITY_LINUX32 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
885 /* See if there is a gap between the end of BSS and the heap. |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
886 In that case, set personality and exec ourself again. */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
887 if (!initialized |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
888 && (strcmp (argv[argc-1], "dump") == 0 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
889 || strcmp (argv[argc-1], "bootstrap") == 0) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
890 && heap_bss_diff > MAX_HEAP_BSS_DIFF) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
891 { |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
892 if (! getenv ("EMACS_HEAP_EXEC")) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
893 { |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
894 /* Set this so we only do this once. */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
895 putenv("EMACS_HEAP_EXEC=true"); |
63883
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
896 |
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
897 /* A flag to turn off address randomization which is introduced |
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
898 in linux kernel shipped with fedora core 4 */ |
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
899 #define ADD_NO_RANDOMIZE 0x0040000 |
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
900 personality (PER_LINUX32 | ADD_NO_RANDOMIZE); |
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
901 #undef ADD_NO_RANDOMIZE |
53559de8d502
2005-07-01 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
63015
diff
changeset
|
902 |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
903 execvp (argv[0], argv); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
904 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
905 /* If the exec fails, try to dump anyway. */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
906 perror ("execvp"); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
907 } |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
908 } |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
909 #endif /* HAVE_PERSONALITY_LINUX32 */ |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
910 |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
911 |
284 | 912 /* Map in shared memory, if we are using that. */ |
913 #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
|
914 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args)) |
284 | 915 { |
916 map_in_data (0); | |
917 /* The shared memory was just restored, which clobbered this. */ | |
918 skip_args = 1; | |
919 } | |
920 else | |
921 { | |
922 map_in_data (1); | |
923 /* The shared memory was just restored, which clobbered this. */ | |
924 skip_args = 0; | |
925 } | |
926 #endif | |
927 | |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
928 #ifdef NeXT |
11806
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
929 { |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
930 extern int malloc_cookie; |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
931 /* This helps out unexnext.c. */ |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
932 if (initialized) |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
933 if (malloc_jumpstart (malloc_cookie) != 0) |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
934 printf ("malloc jumpstart failed!\n"); |
78258a1b902b
(main) [NeXT]: Add missing braces.
Karl Heuer <kwzh@gnu.org>
parents:
11756
diff
changeset
|
935 } |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
936 #endif /* NeXT */ |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
937 |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
938 #ifdef MAC_OSX |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
939 /* Skip process serial number passed in the form -psn_x_y as |
67087
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
940 command-line argument. The WindowServer adds this option when |
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
941 Emacs is invoked from the Finder or by the `open' command. In |
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
942 these cases, the working directory becomes `/', so we change it |
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
943 to the user's home directory. */ |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
944 if (argc > skip_args + 1 && strncmp (argv[skip_args+1], "-psn_", 5) == 0) |
67087
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
945 { |
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
946 chdir (getenv ("HOME")); |
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
947 skip_args++; |
1fd0f45a7a2b
(main) [MAC_OSX]: Change working directory to home
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
66203
diff
changeset
|
948 } |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
949 #endif /* MAC_OSX */ |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
950 |
284 | 951 #ifdef VMS |
40372 | 952 /* If -map specified, map the data file in. */ |
9094 | 953 { |
954 char *file; | |
55395
8640357a1aa5
(main) [VMS]: Fix var ref.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
54689
diff
changeset
|
955 if (argmatch (argv, argc, "-map", "--map-data", 3, &file, &skip_args)) |
9094 | 956 mapin_data (file); |
957 } | |
284 | 958 |
959 #ifdef LINK_CRTL_SHARE | |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
960 #ifdef SHARABLE_LIB_BUG |
40372 | 961 /* Bletcherous shared libraries! */ |
284 | 962 if (!stdin) |
963 stdin = fdopen (0, "r"); | |
964 if (!stdout) | |
965 stdout = fdopen (1, "w"); | |
966 if (!stderr) | |
967 stderr = fdopen (2, "w"); | |
968 if (!environ) | |
969 environ = envp; | |
14035
09cb73d0ec41
Test SHARABLE_LIB_BUG, not SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
13881
diff
changeset
|
970 #endif /* SHARABLE_LIB_BUG */ |
284 | 971 #endif /* LINK_CRTL_SHARE */ |
972 #endif /* VMS */ | |
973 | |
18758
231be0c398fd
(main): Use setrlimit only if RLIMIT_STACK.
Richard M. Stallman <rms@gnu.org>
parents:
18683
diff
changeset
|
974 #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
|
975 /* 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
|
976 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
|
977 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
|
978 if (1 |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
979 #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
|
980 && (!noninteractive || initialized) |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
981 #endif |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
982 && !getrlimit (RLIMIT_STACK, &rlim)) |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
983 { |
16968
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
984 long newlim; |
65764
375ab086d366
* image.c (slurp_file, xbm_read_bitmap_data): Cast to the correct
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65540
diff
changeset
|
985 extern size_t re_max_failures; |
20412
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
986 /* 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
|
987 int ratio = 20 * sizeof (char *); |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
988 /* 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
|
989 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
|
990 ratio += ratio / 3; |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
991 /* Add in some extra to cover |
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
992 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
|
993 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
|
994 #ifdef __NetBSD__ |
ec9c20bede0c
(main) [__NetBSD__]: Round up new stack limit to page bdry.
Richard M. Stallman <rms@gnu.org>
parents:
18514
diff
changeset
|
995 /* 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
|
996 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
|
997 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
|
998 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
|
999 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
|
1000 #endif |
16968
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
1001 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
|
1002 { |
85ac99b8b5c8
(main): Update re_max_failures so regex.c won't overflow
Richard M. Stallman <rms@gnu.org>
parents:
19310
diff
changeset
|
1003 newlim = rlim.rlim_max; |
20412
31468445f518
(main): Fix the stack-limit code to calculate
Karl Heuer <kwzh@gnu.org>
parents:
20037
diff
changeset
|
1004 /* 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
|
1005 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
|
1006 } |
16968
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
1007 if (rlim.rlim_cur < newlim) |
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
1008 rlim.rlim_cur = newlim; |
7c030111c6bb
(main): Don't extend stack limit too far.
Richard M. Stallman <rms@gnu.org>
parents:
16865
diff
changeset
|
1009 |
16046
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
1010 setrlimit (RLIMIT_STACK, &rlim); |
53cf5adf7fd1
[HAVE_SETRLIMIT]: Include time.h and resource.h.
Richard M. Stallman <rms@gnu.org>
parents:
15952
diff
changeset
|
1011 } |
18758
231be0c398fd
(main): Use setrlimit only if RLIMIT_STACK.
Richard M. Stallman <rms@gnu.org>
parents:
18683
diff
changeset
|
1012 #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
|
1013 |
284 | 1014 /* Record (approximately) where the stack begins. */ |
1015 stack_bottom = &stack_bottom_variable; | |
1016 | |
1017 #ifdef USG_SHARED_LIBRARIES | |
1018 if (bss_end) | |
11233
d3b0cf2c3b78
(main): Cast arg to `brk'.
Richard M. Stallman <rms@gnu.org>
parents:
11195
diff
changeset
|
1019 brk ((void *)bss_end); |
284 | 1020 #endif |
1021 | |
1022 clearerr (stdin); | |
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3454
diff
changeset
|
1023 |
284 | 1024 #ifndef SYSTEM_MALLOC |
23954
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
1025 /* 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
|
1026 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
|
1027 |
24364
2c148fbec289
(main): [!SYSTEM_MALLOC]: Call realloc and free as well
Andrew Innes <andrewi@gnu.org>
parents:
24348
diff
changeset
|
1028 /* 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
|
1029 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
|
1030 free (realloc (malloc (4), 4)); |
23954
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
1031 |
58895
4406d551c5c6
(main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58832
diff
changeset
|
1032 # ifndef SYNC_INPUT |
23954
7a8677cdf2bd
(main): Call memory_warnings and uninterrupt_malloc
Richard M. Stallman <rms@gnu.org>
parents:
23568
diff
changeset
|
1033 /* 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
|
1034 uninterrupt_malloc (); |
58895
4406d551c5c6
(main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58832
diff
changeset
|
1035 # endif /* not SYNC_INPUT */ |
284 | 1036 #endif /* not SYSTEM_MALLOC */ |
1037 | |
58986
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
1038 #ifdef HAVE_GTK_AND_PTHREAD |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
1039 main_thread = pthread_self (); |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
1040 #endif /* HAVE_GTK_AND_PTHREAD */ |
59945307b86b
* syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58895
diff
changeset
|
1041 |
51125
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
1042 #if defined (MSDOS) || defined (WINDOWSNT) |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1043 /* 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
|
1044 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
|
1045 _fmode = O_BINARY; |
51125
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
1046 #endif /* MSDOS || WINDOWSNT */ |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1047 |
51125
9f5266505a66
(main) [WINDOWSNT]: Move it here.
Jason Rumney <jasonr@gnu.org>
parents:
51093
diff
changeset
|
1048 #ifdef MSDOS |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1049 #if __DJGPP__ >= 2 |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1050 if (!isatty (fileno (stdin))) |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1051 setmode (fileno (stdin), O_BINARY); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1052 if (!isatty (fileno (stdout))) |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1053 { |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1054 fflush (stdout); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1055 setmode (fileno (stdout), O_BINARY); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1056 } |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1057 #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
|
1058 (stdin)->_flag &= ~_IOTEXT; |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1059 (stdout)->_flag &= ~_IOTEXT; |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1060 (stderr)->_flag &= ~_IOTEXT; |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1061 #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
|
1062 #endif /* MSDOS */ |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1063 |
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
1064 #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
|
1065 if (emacs_priority) |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
1066 nice (emacs_priority); |
284 | 1067 setuid (getuid ()); |
7480
e96f67e55921
(main): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Richard M. Stallman <rms@gnu.org>
parents:
7223
diff
changeset
|
1068 #endif /* SET_EMACS_PRIORITY */ |
284 | 1069 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1070 /* 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
|
1071 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
|
1072 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
|
1073 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
|
1074 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1075 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
|
1076 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
|
1077 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1078 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1079 /* 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
|
1080 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
|
1081 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
|
1082 setlocale (LC_ALL, ""); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1083 |
6778
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
1084 #ifdef EXTRA_INITIALIZE |
6814
531d6d07096a
(main): Fix typo in prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
6778
diff
changeset
|
1085 EXTRA_INITIALIZE; |
6778
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
1086 #endif |
a4a33206aee4
(main): Handle EXTRA_INITIALIZE.
Richard M. Stallman <rms@gnu.org>
parents:
6751
diff
changeset
|
1087 |
284 | 1088 inhibit_window_system = 0; |
1089 | |
40372 | 1090 /* 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
|
1091 while (1) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1092 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1093 char *term; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1094 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
|
1095 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1096 int result; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1097 emacs_close (0); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1098 emacs_close (1); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1099 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
|
1100 if (result < 0) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1101 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1102 char *errstring = strerror (errno); |
40418
625565cae9c9
Use argv[0] instead of emacs when -t was specified.
Pavel Janík <Pavel@Janik.cz>
parents:
40405
diff
changeset
|
1103 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring); |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1104 exit (1); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1105 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1106 dup (0); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1107 if (! isatty (0)) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1108 { |
40418
625565cae9c9
Use argv[0] instead of emacs when -t was specified.
Pavel Janík <Pavel@Janik.cz>
parents:
40405
diff
changeset
|
1109 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term); |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1110 exit (1); |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1111 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1112 fprintf (stderr, "Using %s\n", term); |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1113 #ifdef HAVE_WINDOW_SYSTEM |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1114 inhibit_window_system = 1; /* -t => -nw */ |
9094 | 1115 #endif |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1116 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1117 else |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1118 break; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1119 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1120 |
40572
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
1121 /* Command line option --no-windows is deprecated and thus not mentioned |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
1122 in the manual and usage informations. */ |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
1123 if (argmatch (argv, argc, "-nw", "--no-window-system", 6, NULL, &skip_args) |
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
1124 || argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args)) |
9094 | 1125 inhibit_window_system = 1; |
1126 | |
1127 /* Handle the -batch switch, which means don't do interactive display. */ | |
1128 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
|
1129 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args)) |
59071
51027cf26edc
(main): If batch mode, set Vundo_outer_limit to nil.
Richard M. Stallman <rms@gnu.org>
parents:
58986
diff
changeset
|
1130 { |
51027cf26edc
(main): If batch mode, set Vundo_outer_limit to nil.
Richard M. Stallman <rms@gnu.org>
parents:
58986
diff
changeset
|
1131 noninteractive = 1; |
51027cf26edc
(main): If batch mode, set Vundo_outer_limit to nil.
Richard M. Stallman <rms@gnu.org>
parents:
58986
diff
changeset
|
1132 Vundo_outer_limit = Qnil; |
51027cf26edc
(main): If batch mode, set Vundo_outer_limit to nil.
Richard M. Stallman <rms@gnu.org>
parents:
58986
diff
changeset
|
1133 } |
47059
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1134 if (argmatch (argv, argc, "-script", "--script", 3, &junk, &skip_args)) |
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1135 { |
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1136 noninteractive = 1; /* Set batch mode. */ |
64775
17ea5769514d
(endif): Convert -script into -scriptload.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1137 /* Convert --script to --scriptload, un-skip it, and sort again |
17ea5769514d
(endif): Convert -script into -scriptload.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1138 so that it will be handled in proper sequence. */ |
17ea5769514d
(endif): Convert -script into -scriptload.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1139 argv[skip_args - 1] = "-scriptload"; |
47059
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1140 skip_args -= 2; |
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1141 sort_args (argc, argv); |
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1142 } |
9094 | 1143 |
40372 | 1144 /* 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
|
1145 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args)) |
284 | 1146 { |
54116
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
1147 printf (USAGE1, argv[0], USAGE2); |
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
1148 printf (USAGE3); |
c7d9113f8f82
(USAGE1): Split into two halves.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
54101
diff
changeset
|
1149 printf (USAGE4, bug_reporting_address ()); |
9094 | 1150 exit (0); |
284 | 1151 } |
1152 | |
7788
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1153 if (! noninteractive) |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1154 { |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1155 #ifdef BSD_PGRPS |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1156 if (initialized) |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1157 { |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1158 inherited_pgroup = EMACS_GETPGRP (0); |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1159 setpgrp (0, getpid ()); |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1160 } |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1161 #else |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1162 #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
|
1163 setpgrp (); |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1164 #endif |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1165 #endif |
82307
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1166 #if defined (HAVE_GTK_AND_PTHREAD) && !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC) |
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1167 { |
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1168 extern void malloc_enable_thread P_ ((void)); |
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1169 |
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1170 malloc_enable_thread (); |
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1171 } |
3a38f5a481f0
(main) [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82140
diff
changeset
|
1172 #endif |
7788
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1173 } |
ddcb81020fa1
(main): Do the setpgrp after checking for -batch.
Richard M. Stallman <rms@gnu.org>
parents:
7716
diff
changeset
|
1174 |
348 | 1175 init_signals (); |
1176 | |
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1177 /* 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
|
1178 if (1 |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1179 #ifndef CANNOT_DUMP |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1180 && initialized |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1181 #endif |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1182 ) |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1183 { |
15423
5b9fe08fa6eb
(main): For SIGHUP, use sigblock and sigunblock,
Richard M. Stallman <rms@gnu.org>
parents:
15202
diff
changeset
|
1184 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
|
1185 /* 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
|
1186 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
|
1187 if (! noninteractive |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1188 || 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
|
1189 signal (SIGHUP, fatal_error_signal); |
15423
5b9fe08fa6eb
(main): For SIGHUP, use sigblock and sigunblock,
Richard M. Stallman <rms@gnu.org>
parents:
15202
diff
changeset
|
1190 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
|
1191 } |
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1192 |
284 | 1193 if ( |
1194 #ifndef CANNOT_DUMP | |
1195 ! noninteractive || initialized | |
1196 #else | |
1197 1 | |
1198 #endif | |
1199 ) | |
1200 { | |
14127
ebaba7107594
(main): In batch mode, don't handle SIGHUP if was ignored.
Karl Heuer <kwzh@gnu.org>
parents:
14072
diff
changeset
|
1201 /* Don't catch these signals in batch mode if dumping. |
284 | 1202 On some machines, this sets static data that would make |
1203 signal fail to work right when the dumped Emacs is run. */ | |
1204 signal (SIGQUIT, fatal_error_signal); | |
1205 signal (SIGILL, fatal_error_signal); | |
1206 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
|
1207 #ifdef SIGUSR1 |
74747
53804f26b67e
(main): Rename user signals to sigusr1 and sigusr2.
Kim F. Storm <storm@cua.dk>
parents:
74642
diff
changeset
|
1208 add_user_signal (SIGUSR1, "sigusr1"); |
74408
4c44b86a628e
(handle_USR1_signal, handle_USR2_signal): Replace by...
Kim F. Storm <storm@cua.dk>
parents:
73623
diff
changeset
|
1209 #endif |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1210 #ifdef SIGUSR2 |
74747
53804f26b67e
(main): Rename user signals to sigusr1 and sigusr2.
Kim F. Storm <storm@cua.dk>
parents:
74642
diff
changeset
|
1211 add_user_signal (SIGUSR2, "sigusr2"); |
20489
35972a1f8f1b
(Vsignal_USR1_hook, Vsignal_USR2_hook): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20412
diff
changeset
|
1212 #endif |
10388
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1213 #ifdef SIGABRT |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1214 signal (SIGABRT, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1215 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1216 #ifdef SIGHWE |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1217 signal (SIGHWE, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1218 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1219 #ifdef SIGPRE |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1220 signal (SIGPRE, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1221 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1222 #ifdef SIGORE |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1223 signal (SIGORE, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1224 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1225 #ifdef SIGUME |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1226 signal (SIGUME, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1227 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1228 #ifdef SIGDLK |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1229 signal (SIGDLK, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1230 #endif |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1231 #ifdef SIGCPULIM |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1232 signal (SIGCPULIM, fatal_error_signal); |
0ae5926bdee7
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
Richard M. Stallman <rms@gnu.org>
parents:
10172
diff
changeset
|
1233 #endif |
2118
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
1234 #ifdef SIGIOT |
454228f1c526
* emacs.c (__do_global_ctors, __do_global_ctors_aux,
Jim Blandy <jimb@redhat.com>
parents:
1945
diff
changeset
|
1235 /* This is missing on some systems - OS/2, for example. */ |
284 | 1236 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
|
1237 #endif |
284 | 1238 #ifdef SIGEMT |
1239 signal (SIGEMT, fatal_error_signal); | |
1240 #endif | |
1241 signal (SIGFPE, fatal_error_signal); | |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1242 #ifdef SIGBUS |
284 | 1243 signal (SIGBUS, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1244 #endif |
284 | 1245 signal (SIGSEGV, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1246 #ifdef SIGSYS |
284 | 1247 signal (SIGSYS, fatal_error_signal); |
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2674
diff
changeset
|
1248 #endif |
284 | 1249 signal (SIGTERM, fatal_error_signal); |
1250 #ifdef SIGXCPU | |
1251 signal (SIGXCPU, fatal_error_signal); | |
1252 #endif | |
1253 #ifdef SIGXFSZ | |
1254 signal (SIGXFSZ, fatal_error_signal); | |
1255 #endif /* SIGXFSZ */ | |
1256 | |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1257 #ifdef SIGDANGER |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1258 /* 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
|
1259 signal (SIGDANGER, memory_warning_signal); |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1260 #endif |
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
1261 |
284 | 1262 #ifdef AIX |
5794
9d324422db4c
(main) [AIX]: Don't handle signal 20, 21 or 22.
Richard M. Stallman <rms@gnu.org>
parents:
5763
diff
changeset
|
1263 /* 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
|
1264 signal (SIGXCPU, fatal_error_signal); |
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
1265 #ifndef _I386 |
284 | 1266 signal (SIGIOINT, fatal_error_signal); |
3320
8995a815f92f
(main) [AIX _I386]: Don't handle SIGIOINT.
Richard M. Stallman <rms@gnu.org>
parents:
3273
diff
changeset
|
1267 #endif |
284 | 1268 signal (SIGGRANT, fatal_error_signal); |
1269 signal (SIGRETRACT, fatal_error_signal); | |
1270 signal (SIGSOUND, fatal_error_signal); | |
1271 signal (SIGMSG, fatal_error_signal); | |
1272 #endif /* AIX */ | |
1273 } | |
1274 | |
1275 noninteractive1 = noninteractive; | |
1276 | |
40372 | 1277 /* Perform basic initializations (not merely interning symbols). */ |
284 | 1278 |
1279 if (!initialized) | |
1280 { | |
1281 init_alloc_once (); | |
1282 init_obarray (); | |
1283 init_eval_once (); | |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1284 init_charset_once (); |
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1285 init_coding_once (); |
284 | 1286 init_syntax_once (); /* Create standard syntax table. */ |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1287 init_category_once (); /* Create standard category table. */ |
40372 | 1288 /* Must be done before init_buffer. */ |
284 | 1289 init_casetab_once (); |
40372 | 1290 init_buffer_once (); /* Create buffer table and some buffers. */ |
1291 init_minibuf_once (); /* Create list of minibuffers. */ | |
1292 /* Must precede init_window_once. */ | |
1293 | |
25010 | 1294 /* Call syms_of_xfaces before init_window_once because that |
1295 function creates Vterminal_frame. Termcap frames now use | |
1296 faces, and the face implementation uses some symbols as | |
1297 face names. */ | |
1298 syms_of_xfaces (); | |
29198
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1299 /* 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
|
1300 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
|
1301 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
|
1302 CANNOT_DUMP is defined. */ |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29150
diff
changeset
|
1303 syms_of_keyboard (); |
25010 | 1304 |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1305 #ifdef MAC_OS8 |
33886
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1306 /* init_window_once calls make_terminal_frame which on Mac OS |
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1307 creates a full-fledge output_mac type frame. This does not |
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1308 work correctly before syms_of_textprop, syms_of_macfns, |
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1309 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search, |
59146
9bde7721ad0f
* dispextern.h: Change HAVE_CARBON to MAC_OS.
Steven Tamm <steventamm@mac.com>
parents:
59071
diff
changeset
|
1310 syms_of_frame, mac_term_init, and init_keyboard have already |
33886
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1311 been called. */ |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1312 syms_of_textprop (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1313 syms_of_macfns (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1314 syms_of_ccl (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1315 syms_of_fontset (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1316 syms_of_macterm (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1317 syms_of_macmenu (); |
61783
00d5bc6555e5
(main) [MAC_OS8 || MAC_OSX && HAVE_CARBON]: Call syms_of_macselect.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
61446
diff
changeset
|
1318 syms_of_macselect (); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1319 syms_of_data (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1320 syms_of_search (); |
33886
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1321 syms_of_frame (); |
40372 | 1322 |
62285
296a69e064b3
(main) [MAC_OS8]: Call init_atimer before mac_term_init.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62006
diff
changeset
|
1323 init_atimer (); |
59146
9bde7721ad0f
* dispextern.h: Change HAVE_CARBON to MAC_OS.
Steven Tamm <steventamm@mac.com>
parents:
59071
diff
changeset
|
1324 mac_term_init (build_string ("Mac"), NULL, NULL); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1325 init_keyboard (); |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1326 #endif |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1327 |
40372 | 1328 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
|
1329 init_fileio_once (); /* Must precede any path manipulation. */ |
53882
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1330 #ifdef HAVE_WINDOW_SYSTEM |
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1331 init_fringe_once (); /* Swap bitmaps if necessary. */ |
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1332 #endif /* HAVE_WINDOW_SYSTEM */ |
284 | 1333 } |
1334 | |
1335 init_alloc (); | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1336 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1337 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
|
1338 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1339 fixup_locale (); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
1340 Vsystem_messages_locale = Vprevious_system_messages_locale; |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
1341 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
|
1342 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
1343 |
284 | 1344 init_eval (); |
1345 init_data (); | |
24464
930074eb767f
(main) [CLASH_DETECTION]: Call init_filelock.
Karl Heuer <kwzh@gnu.org>
parents:
24418
diff
changeset
|
1346 #ifdef CLASH_DETECTION |
39673 | 1347 init_filelock (); |
24464
930074eb767f
(main) [CLASH_DETECTION]: Call init_filelock.
Karl Heuer <kwzh@gnu.org>
parents:
24418
diff
changeset
|
1348 #endif |
62285
296a69e064b3
(main) [MAC_OS8]: Call init_atimer before mac_term_init.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62006
diff
changeset
|
1349 #ifndef MAC_OS8 |
27429 | 1350 init_atimer (); |
62285
296a69e064b3
(main) [MAC_OS8]: Call init_atimer before mac_term_init.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62006
diff
changeset
|
1351 #endif |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10029
diff
changeset
|
1352 running_asynch_code = 0; |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1353 |
21722 | 1354 /* Handle --unibyte and the EMACS_UNIBYTE envvar, |
1355 but not while dumping. */ | |
44101
d2a818b7c9ca
(main): Handle --unibyte, --multibyte, and --no-loadup
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44092
diff
changeset
|
1356 if (1) |
21722 | 1357 { |
1358 int inhibit_unibyte = 0; | |
1359 | |
1360 /* --multibyte overrides EMACS_UNIBYTE. */ | |
1361 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args) | |
44101
d2a818b7c9ca
(main): Handle --unibyte, --multibyte, and --no-loadup
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44092
diff
changeset
|
1362 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args) |
d2a818b7c9ca
(main): Handle --unibyte, --multibyte, and --no-loadup
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44092
diff
changeset
|
1363 /* Ignore EMACS_UNIBYTE before dumping. */ |
d2a818b7c9ca
(main): Handle --unibyte, --multibyte, and --no-loadup
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44092
diff
changeset
|
1364 || (!initialized && noninteractive)) |
21722 | 1365 inhibit_unibyte = 1; |
1366 | |
1367 /* --unibyte requests that we set up to do everything with single-byte | |
1368 buffers and strings. We need to handle this before calling | |
1369 init_lread, init_editfns and other places that generate Lisp strings | |
1370 from text in the environment. */ | |
24168 | 1371 /* Actually this shouldn't be needed as of 20.4 in a generally |
1372 unibyte environment. As handa says, environment values | |
1373 aren't now decoded; also existing buffers are now made | |
1374 unibyte during startup if .emacs sets unibyte. Tested with | |
1375 8-bit data in environment variables and /etc/passwd, setting | |
40372 | 1376 unibyte and Latin-1 in .emacs. -- Dave Love */ |
21722 | 1377 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args) |
1378 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args) | |
1379 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte)) | |
1380 { | |
1381 Lisp_Object old_log_max; | |
1382 Lisp_Object symbol, tail; | |
1383 | |
1384 symbol = intern ("default-enable-multibyte-characters"); | |
1385 Fset (symbol, Qnil); | |
1386 | |
22323
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1387 if (initialized) |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1388 { |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1389 /* 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
|
1390 old_log_max = Vmessage_log_max; |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1391 XSETFASTINT (Vmessage_log_max, 0); |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1392 message_dolog ("", 0, 1, 0); |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1393 Vmessage_log_max = old_log_max; |
4c3c4ae02b77
(main): Test `initialized' before clearing *Messages*.
Karl Heuer <kwzh@gnu.org>
parents:
21962
diff
changeset
|
1394 } |
21722 | 1395 |
21840
89d03805f45a
(main): Use Vbuffer_alist instead of Fbuffer_list.
Andreas Schwab <schwab@suse.de>
parents:
21832
diff
changeset
|
1396 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
|
1397 tail = XCDR (tail)) |
21722 | 1398 { |
1399 Lisp_Object buffer; | |
1400 | |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26131
diff
changeset
|
1401 buffer = Fcdr (XCAR (tail)); |
21722 | 1402 /* Verify that all buffers are empty now, as they |
1403 ought to be. */ | |
1404 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer))) | |
1405 abort (); | |
1406 /* It is safe to do this crudely in an empty buffer. */ | |
1407 XBUFFER (buffer)->enable_multibyte_characters = Qnil; | |
1408 } | |
1409 } | |
1410 } | |
1411 | |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1412 no_loadup |
28407
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
27981
diff
changeset
|
1413 = 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
|
1414 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1415 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1416 #ifdef HAVE_X_WINDOWS |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1417 /* 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
|
1418 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
|
1419 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
|
1420 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
|
1421 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1422 char *displayname = 0; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1423 int count_before = skip_args; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1424 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1425 /* 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
|
1426 while (1) |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1427 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1428 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
|
1429 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1430 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
|
1431 display_arg = 1; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1432 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
|
1433 display_arg = 1; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1434 else |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1435 break; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1436 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1437 count_before = count_before_this; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1438 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1439 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1440 /* 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
|
1441 convert it into -d name. |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1442 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
|
1443 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
|
1444 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1445 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
|
1446 int j; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1447 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1448 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
|
1449 new[j] = argv[j]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1450 new[count_before + 1] = "-d"; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1451 new[count_before + 2] = displayname; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1452 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
|
1453 new[j + 1] = argv[j]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1454 argv = new; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1455 argc++; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1456 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1457 /* 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
|
1458 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
|
1459 && argv[count_before + 1][1] == '-') |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1460 argv[count_before + 1] = "-d"; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1461 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1462 /* 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
|
1463 skip_args = count_before; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1464 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1465 #endif |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1466 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1467 /* 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
|
1468 except when bulding temacs |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1469 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
|
1470 |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1471 #ifdef MSDOS |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1472 /* 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
|
1473 init_dosfns (); |
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1474 /* Set defaults for several environment variables. */ |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1475 if (initialized) |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1476 init_environment (argc, argv, skip_args); |
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1477 else |
15012
2dabff0bce33
(main) [MSDOS]: Always call tzset, not init__gettimeofday.
Richard M. Stallman <rms@gnu.org>
parents:
14993
diff
changeset
|
1478 tzset (); |
14968
1351c75bc3d6
(main) [MSDOS]: Handle DJGPP version 2.
Richard M. Stallman <rms@gnu.org>
parents:
14922
diff
changeset
|
1479 #endif /* MSDOS */ |
5493
2a0ba54aefb5
(main) [MSDOS]: Call init_environment. Set file types to
Richard M. Stallman <rms@gnu.org>
parents:
5364
diff
changeset
|
1480 |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1481 #ifdef WINDOWSNT |
48888
f0df5f687c15
Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
Ben Key <bkey1@tampabay.rr.com>
parents:
48319
diff
changeset
|
1482 globals_of_w32 (); |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1483 /* Initialize environment from registry settings. */ |
24228
6ed588e4dd94
(main): Pass argv to init_environment.
Andrew Innes <andrewi@gnu.org>
parents:
24197
diff
changeset
|
1484 init_environment (argv); |
40372 | 1485 init_ntproc (); /* must precede init_editfns. */ |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1486 #endif |
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1487 |
60358
ceeef4169240
(main): Change `#ifdef HAVE_CARBON' to `#if defined (MAC_OSX) &&
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
60348
diff
changeset
|
1488 #if defined (MAC_OSX) && defined (HAVE_CARBON) |
46916
aff9c7fcedb0
2002-08-15 Andrew Choi <akochoi@shaw.ca>
Andrew Choi <akochoi@shaw.ca>
parents:
46370
diff
changeset
|
1489 if (initialized) |
aff9c7fcedb0
2002-08-15 Andrew Choi <akochoi@shaw.ca>
Andrew Choi <akochoi@shaw.ca>
parents:
46370
diff
changeset
|
1490 init_mac_osx_environment (); |
aff9c7fcedb0
2002-08-15 Andrew Choi <akochoi@shaw.ca>
Andrew Choi <akochoi@shaw.ca>
parents:
46370
diff
changeset
|
1491 #endif |
aff9c7fcedb0
2002-08-15 Andrew Choi <akochoi@shaw.ca>
Andrew Choi <akochoi@shaw.ca>
parents:
46370
diff
changeset
|
1492 |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1493 /* 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
|
1494 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
|
1495 until calling init_callproc. */ |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1496 set_process_environment (); |
5364
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
1497 /* 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
|
1498 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
|
1499 don't pollute Vprocess_environment. */ |
26669
862ea38e59f1
(main): Set LANG=C iff AX3_2 defined.
Dave Love <fx@gnu.org>
parents:
26631
diff
changeset
|
1500 /* 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
|
1501 #ifdef AIX3_2 |
5364
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
1502 putenv ("LANG=C"); |
99b5ca69dea7
(main) [AIX]: Call putenv.
Richard M. Stallman <rms@gnu.org>
parents:
5236
diff
changeset
|
1503 #endif |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1504 |
40372 | 1505 init_buffer (); /* Init default directory of main buffer. */ |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
1506 |
5155
3fcc21b4f083
(main): Call init_callproc and init_callproc_1.
Richard M. Stallman <rms@gnu.org>
parents:
4957
diff
changeset
|
1507 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
|
1508 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
|
1509 |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1510 if (initialized) |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1511 { |
40372 | 1512 /* Erase any pre-dump messages in the message log, to avoid confusion. */ |
16488
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1513 Lisp_Object old_log_max; |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1514 old_log_max = Vmessage_log_max; |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1515 XSETFASTINT (Vmessage_log_max, 0); |
20620
a3cb242e8349
(main): Pass new arg to message_dolog.
Richard M. Stallman <rms@gnu.org>
parents:
20527
diff
changeset
|
1516 message_dolog ("", 0, 1, 0); |
16488
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1517 Vmessage_log_max = old_log_max; |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1518 } |
65c729d461c3
(main): Clear out *Messages* before init_callproc.
Richard M. Stallman <rms@gnu.org>
parents:
16386
diff
changeset
|
1519 |
5155
3fcc21b4f083
(main): Call init_callproc and init_callproc_1.
Richard M. Stallman <rms@gnu.org>
parents:
4957
diff
changeset
|
1520 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */ |
348 | 1521 init_lread (); |
284 | 1522 |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1523 /* 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
|
1524 define standard keys. */ |
284 | 1525 |
1526 if (!initialized) | |
1527 { | |
40372 | 1528 /* The basic levels of Lisp must come first. */ |
284 | 1529 /* And data must come first of all |
40372 | 1530 for the sake of symbols like error-message. */ |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1531 #ifndef MAC_OS8 |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1532 /* Called before init_window_once for Mac OS Classic. */ |
284 | 1533 syms_of_data (); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1534 #endif |
284 | 1535 syms_of_alloc (); |
348 | 1536 syms_of_lread (); |
284 | 1537 syms_of_print (); |
1538 syms_of_eval (); | |
1539 syms_of_fns (); | |
1540 syms_of_floatfns (); | |
1541 | |
1542 syms_of_abbrev (); | |
1543 syms_of_buffer (); | |
1544 syms_of_bytecode (); | |
1545 syms_of_callint (); | |
1546 syms_of_casefiddle (); | |
1547 syms_of_casetab (); | |
1548 syms_of_callproc (); | |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1549 syms_of_category (); |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1550 #ifndef MAC_OS8 |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1551 /* Called before init_window_once for Mac OS Classic. */ |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1552 syms_of_ccl (); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1553 #endif |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1554 syms_of_charset (); |
284 | 1555 syms_of_cmds (); |
1556 #ifndef NO_DIR_LIBRARY | |
1557 syms_of_dired (); | |
1558 #endif /* not NO_DIR_LIBRARY */ | |
1559 syms_of_display (); | |
1560 syms_of_doc (); | |
1561 syms_of_editfns (); | |
1562 syms_of_emacs (); | |
1563 syms_of_fileio (); | |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1564 syms_of_coding (); /* This should be after syms_of_fileio. */ |
284 | 1565 #ifdef CLASH_DETECTION |
1566 syms_of_filelock (); | |
1567 #endif /* CLASH_DETECTION */ | |
1568 syms_of_indent (); | |
16548
12915fed5a02
(main): Call syms_of_insdel.
Richard M. Stallman <rms@gnu.org>
parents:
16488
diff
changeset
|
1569 syms_of_insdel (); |
284 | 1570 syms_of_keymap (); |
1571 syms_of_macros (); | |
1572 syms_of_marker (); | |
1573 syms_of_minibuf (); | |
1574 syms_of_process (); | |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1575 #ifndef MAC_OS8 |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1576 /* Called before init_window_once for Mac OS Classic. */ |
284 | 1577 syms_of_search (); |
33886
ff4ddf873081
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
Andrew Choi <akochoi@shaw.ca>
parents:
33213
diff
changeset
|
1578 syms_of_frame (); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1579 #endif |
284 | 1580 syms_of_syntax (); |
6751 | 1581 syms_of_term (); |
284 | 1582 syms_of_undo (); |
25010 | 1583 #ifdef HAVE_SOUND |
1584 syms_of_sound (); | |
1585 #endif | |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1586 #ifndef MAC_OS8 |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1587 /* Called before init_window_once for Mac OS Classic. */ |
1284 | 1588 syms_of_textprop (); |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1589 #endif |
26854
c8f8089c339b
(main): Call syms_of_composite.
Kenichi Handa <handa@m17n.org>
parents:
26669
diff
changeset
|
1590 syms_of_composite (); |
284 | 1591 #ifdef VMS |
1592 syms_of_vmsproc (); | |
1593 #endif /* VMS */ | |
15202
0a9e62f4f10b
(main) [WINDOWSNT]: Call syms_of_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15089
diff
changeset
|
1594 #ifdef WINDOWSNT |
0a9e62f4f10b
(main) [WINDOWSNT]: Call syms_of_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15089
diff
changeset
|
1595 syms_of_ntproc (); |
0a9e62f4f10b
(main) [WINDOWSNT]: Call syms_of_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15089
diff
changeset
|
1596 #endif /* WINDOWSNT */ |
284 | 1597 syms_of_window (); |
1598 syms_of_xdisp (); | |
53882
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1599 #ifdef HAVE_WINDOW_SYSTEM |
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1600 syms_of_fringe (); |
54342 | 1601 syms_of_image (); |
53882
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1602 #endif /* HAVE_WINDOW_SYSTEM */ |
284 | 1603 #ifdef HAVE_X_WINDOWS |
375 | 1604 syms_of_xterm (); |
284 | 1605 syms_of_xfns (); |
17060
8c069ef6e1c4
(main): Call several initialization function introduced
Karl Heuer <kwzh@gnu.org>
parents:
16968
diff
changeset
|
1606 syms_of_fontset (); |
43815
1a121be11dab
(main): Added call to syms_of_xsmfns ().
Jan Djärv <jan.h.d@swipnet.se>
parents:
43713
diff
changeset
|
1607 #ifdef HAVE_X_SM |
1a121be11dab
(main): Added call to syms_of_xsmfns ().
Jan Djärv <jan.h.d@swipnet.se>
parents:
43713
diff
changeset
|
1608 syms_of_xsmfns (); |
1a121be11dab
(main): Added call to syms_of_xsmfns ().
Jan Djärv <jan.h.d@swipnet.se>
parents:
43713
diff
changeset
|
1609 #endif |
375 | 1610 #ifdef HAVE_X11 |
1611 syms_of_xselect (); | |
1612 #endif | |
284 | 1613 #endif /* HAVE_X_WINDOWS */ |
1614 | |
18062
b0aa97f95c05
(main): Call syms_of_xfaces whenever ! HAVE_NTGUI.
Richard M. Stallman <rms@gnu.org>
parents:
17563
diff
changeset
|
1615 #ifndef HAVE_NTGUI |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1616 #ifndef MAC_OS |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1617 /* Called before init_window_once for Mac OS Classic. */ |
9572 | 1618 syms_of_xmenu (); |
14788
a3b8405017f4
(main) [! HAVE_NTGUI]: Don't call syms_of_xmenu.
Richard M. Stallman <rms@gnu.org>
parents:
14740
diff
changeset
|
1619 #endif |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1620 #endif |
9572 | 1621 |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1622 #ifdef HAVE_NTGUI |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1623 syms_of_w32term (); |
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1624 syms_of_w32fns (); |
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1625 syms_of_w32select (); |
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16548
diff
changeset
|
1626 syms_of_w32menu (); |
23540
025ff5515ec9
(main) [HAVE_NTGUI]: Invoke syms_of_fontset().
Geoff Voelker <voelker@cs.washington.edu>
parents:
23327
diff
changeset
|
1627 syms_of_fontset (); |
13409
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1628 #endif /* HAVE_NTGUI */ |
280f00071040
[HAVE_NTGUI]: Declare Vwindow_system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13393
diff
changeset
|
1629 |
60358
ceeef4169240
(main): Change `#ifdef HAVE_CARBON' to `#if defined (MAC_OSX) &&
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
60348
diff
changeset
|
1630 #if defined (MAC_OSX) && defined (HAVE_CARBON) |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1631 syms_of_macterm (); |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1632 syms_of_macfns (); |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1633 syms_of_macmenu (); |
61783
00d5bc6555e5
(main) [MAC_OS8 || MAC_OSX && HAVE_CARBON]: Call syms_of_macselect.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
61446
diff
changeset
|
1634 syms_of_macselect (); |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1635 syms_of_fontset (); |
60358
ceeef4169240
(main): Change `#ifdef HAVE_CARBON' to `#if defined (MAC_OSX) &&
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
60348
diff
changeset
|
1636 #endif /* MAC_OSX && HAVE_CARBON */ |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1637 |
284 | 1638 #ifdef SYMS_SYSTEM |
1639 SYMS_SYSTEM; | |
1640 #endif | |
1641 | |
1642 #ifdef SYMS_MACHINE | |
1643 SYMS_MACHINE; | |
1644 #endif | |
1645 | |
1646 keys_of_casefiddle (); | |
1647 keys_of_cmds (); | |
1648 keys_of_buffer (); | |
1649 keys_of_keyboard (); | |
1650 keys_of_keymap (); | |
1651 keys_of_minibuf (); | |
1652 keys_of_window (); | |
1653 } | |
57996 | 1654 else |
48888
f0df5f687c15
Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
Ben Key <bkey1@tampabay.rr.com>
parents:
48319
diff
changeset
|
1655 { |
57996 | 1656 /* Initialization that must be done even if the global variable |
1657 initialized is non zero. */ | |
48888
f0df5f687c15
Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
Ben Key <bkey1@tampabay.rr.com>
parents:
48319
diff
changeset
|
1658 #ifdef HAVE_NTGUI |
f0df5f687c15
Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
Ben Key <bkey1@tampabay.rr.com>
parents:
48319
diff
changeset
|
1659 globals_of_w32fns (); |
f0df5f687c15
Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
Ben Key <bkey1@tampabay.rr.com>
parents:
48319
diff
changeset
|
1660 globals_of_w32menu (); |
60092
04686828d0da
2004-11-08 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
Jason Rumney <jasonr@gnu.org>
parents:
59624
diff
changeset
|
1661 globals_of_w32select (); |
57996 | 1662 #endif /* HAVE_NTGUI */ |
48888
f0df5f687c15
Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
Ben Key <bkey1@tampabay.rr.com>
parents:
48319
diff
changeset
|
1663 } |
284 | 1664 |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1665 if (!noninteractive) |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1666 { |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1667 #ifdef VMS |
40372 | 1668 init_vms_input ();/* init_display calls get_frame_size, that needs this. */ |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1669 #endif /* VMS */ |
40372 | 1670 init_display (); /* Determine terminal type. init_sys_modes uses results. */ |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1671 } |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1672 #ifndef MAC_OS8 |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44163
diff
changeset
|
1673 /* Called before init_window_once for Mac OS Classic. */ |
40372 | 1674 init_keyboard (); /* This too must precede init_sys_modes. */ |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31829
diff
changeset
|
1675 #endif |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1676 #ifdef VMS |
40372 | 1677 init_vmsproc (); /* And this too. */ |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1678 #endif /* VMS */ |
40372 | 1679 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.). */ |
25010 | 1680 init_fns (); |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1681 init_xdisp (); |
53882
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1682 #ifdef HAVE_WINDOW_SYSTEM |
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1683 init_fringe (); |
54342 | 1684 init_image (); |
53882
94e08e9831b0
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm <storm@cua.dk>
parents:
53072
diff
changeset
|
1685 #endif /* HAVE_WINDOW_SYSTEM */ |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1686 init_macros (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1687 init_editfns (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1688 init_floatfns (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1689 #ifdef VMS |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1690 init_vmsfns (); |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1691 #endif /* VMS */ |
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1692 init_process (); |
25010 | 1693 #ifdef HAVE_SOUND |
1694 init_sound (); | |
1695 #endif | |
30036
22cde023296d
(handle_USR1_signal, handle_USR2_signal) Clear
Gerd Moellmann <gerd@gnu.org>
parents:
29915
diff
changeset
|
1696 init_window (); |
21962
c452f82d8d45
(main): Call the syms_of_... and keys_of_... functions
Richard M. Stallman <rms@gnu.org>
parents:
21840
diff
changeset
|
1697 |
284 | 1698 if (!initialized) |
1699 { | |
9094 | 1700 char *file; |
40372 | 1701 /* 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
|
1702 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args)) |
284 | 1703 Vtop_level = Fcons (intern ("load"), |
9094 | 1704 Fcons (build_string (file), Qnil)); |
284 | 1705 /* 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
|
1706 if (! no_loadup) |
284 | 1707 Vtop_level = Fcons (intern ("load"), |
1708 Fcons (build_string ("loadup.el"), Qnil)); | |
1709 } | |
1710 | |
11195
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1711 if (initialized) |
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1712 { |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1713 #ifdef HAVE_TZSET |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1714 { |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1715 /* 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
|
1716 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
|
1717 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
|
1718 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
|
1719 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
|
1720 char *tz = getenv ("TZ"); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1721 if (tz && !strcmp (tz, dump_tz)) |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1722 { |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1723 ++*tz; |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1724 tzset (); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1725 --*tz; |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1726 } |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1727 } |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
1728 #endif |
11195
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1729 } |
0833fb6a29bb
(main): Start with an empty message log.
Karl Heuer <kwzh@gnu.org>
parents:
11157
diff
changeset
|
1730 |
70965
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1731 /* Set up for profiling. This is known to work on FreeBSD, |
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1732 GNU/Linux and MinGW. It might work on some other systems too. |
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1733 Give it a try and tell us if it works on your system. To compile |
76914
a6c0b2621f7a
(main): Fix instructions for building Emacs for profiling.
Eli Zaretskii <eliz@gnu.org>
parents:
75348
diff
changeset
|
1734 for profiling, add -pg to the switches your platform uses in |
a6c0b2621f7a
(main): Fix instructions for building Emacs for profiling.
Eli Zaretskii <eliz@gnu.org>
parents:
75348
diff
changeset
|
1735 CFLAGS and LDFLAGS. For example: |
76921 | 1736 `make CFLAGS="-pg -g -O -DPROFILING=1" LDFLAGS="-pg -g"'. */ |
70965
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1737 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__) |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1738 #ifdef PROFILING |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1739 if (initialized) |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1740 { |
40372 | 1741 extern void _mcleanup (); |
70965
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1742 #ifdef __MINGW32__ |
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1743 extern unsigned char etext asm ("etext"); |
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1744 #else |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1745 extern char etext; |
70965
80022e83a5c2
(main) [PROFILING]: Enable also for __MINGW32__.
Eli Zaretskii <eliz@gnu.org>
parents:
70921
diff
changeset
|
1746 #endif |
25010 | 1747 extern void safe_bcopy (); |
26193
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1748 extern void dump_opcode_frequencies (); |
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1749 |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1750 atexit (_mcleanup); |
25010 | 1751 /* This uses safe_bcopy because that function comes first in the |
1752 Emacs executable. It might be better to use something that | |
1753 gives the start of the text segment, but start_of_text is not | |
1754 defined on all systems now. */ | |
1755 monstartup (safe_bcopy, &etext); | |
19291
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1756 } |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1757 else |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1758 moncontrol (0); |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1759 #endif |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1760 #endif |
27c3012475b2
(main) [__FreeBSD__ && PROFILING]: Add code for profiling.
Richard M. Stallman <rms@gnu.org>
parents:
19215
diff
changeset
|
1761 |
284 | 1762 initialized = 1; |
1763 | |
13016
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
1764 #ifdef LOCALTIME_CACHE |
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
1765 /* Some versions of localtime have a bug. They cache the value of the time |
815 | 1766 zone rather than looking it up every time. Since localtime() is |
1767 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
|
1768 results in localtime ignoring the TZ environment variable. |
40372 | 1769 This flushes the new TZ value into localtime. */ |
4303
fd9865b5a41e
(main): Test LOCALTIME_CACHE.
Richard M. Stallman <rms@gnu.org>
parents:
3932
diff
changeset
|
1770 tzset (); |
13016
6ad7dc19b526
(main): Call tzset only if LOCALTIME_CACHE is defined;
Richard M. Stallman <rms@gnu.org>
parents:
12971
diff
changeset
|
1771 #endif /* defined (LOCALTIME_CACHE) */ |
815 | 1772 |
284 | 1773 /* Enter editor command loop. This never returns. */ |
1774 Frecursive_edit (); | |
1775 /* NOTREACHED */ | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31602
diff
changeset
|
1776 return 0; |
284 | 1777 } |
1778 | |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1779 /* 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
|
1780 at the beginning of argv. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1781 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1782 /* 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
|
1783 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1784 struct standard_args |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1785 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1786 char *name; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1787 char *longname; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1788 int priority; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1789 int nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1790 }; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1791 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1792 struct standard_args standard_args[] = |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1793 { |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1794 { "-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
|
1795 #ifdef HAVE_SHM |
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1796 { "-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
|
1797 #endif |
11629
bae8a831397f
(standard_args): Add #ifdef VMS for -map.
Richard M. Stallman <rms@gnu.org>
parents:
11623
diff
changeset
|
1798 #ifdef VMS |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1799 { "-map", "--map-data", 130, 0 }, |
11629
bae8a831397f
(standard_args): Add #ifdef VMS for -map.
Richard M. Stallman <rms@gnu.org>
parents:
11623
diff
changeset
|
1800 #endif |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1801 { "-t", "--terminal", 120, 1 }, |
40572
6ae61fbe6134
(USAGE1): Show command line option --no-window-system instead of
Pavel Janík <Pavel@Janik.cz>
parents:
40535
diff
changeset
|
1802 { "-nw", "--no-window-system", 110, 0 }, |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1803 { "-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
|
1804 { "-batch", "--batch", 100, 0 }, |
47059
83efa005a987
(main): Handle --script.
Richard M. Stallman <rms@gnu.org>
parents:
47047
diff
changeset
|
1805 { "-script", "--script", 100, 1 }, |
22455
393df8deb0b9
(standard_args): Fix arg order to match code in `main'.
Richard M. Stallman <rms@gnu.org>
parents:
22359
diff
changeset
|
1806 { "-help", "--help", 90, 0 }, |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1807 { "-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
|
1808 { "-multibyte", "--multibyte", 82, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1809 { "-unibyte", "--unibyte", 81, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1810 { "-no-multibyte", "--no-multibyte", 80, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1811 { "-nl", "--no-loadup", 70, 0 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1812 /* -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
|
1813 { "-d", "--display", 60, 1 }, |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1814 { "-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
|
1815 /* Now for the options handled in startup.el. */ |
61446
397fed153f02
(standard_args): Rename --bare-bones to --quick.
Richard M. Stallman <rms@gnu.org>
parents:
61346
diff
changeset
|
1816 { "-Q", "--quick", 55, 0 }, |
397fed153f02
(standard_args): Rename --bare-bones to --quick.
Richard M. Stallman <rms@gnu.org>
parents:
61346
diff
changeset
|
1817 { "-quick", 0, 55, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1818 { "-q", "--no-init-file", 50, 0 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1819 { "-no-init-file", 0, 50, 0 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1820 { "-no-site-file", "--no-site-file", 40, 0 }, |
45555
7ed1d3a98c77
(USAGE1): Add --no-splash.
Colin Walters <walters@gnu.org>
parents:
45399
diff
changeset
|
1821 { "-no-splash", "--no-splash", 40, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1822 { "-u", "--user", 30, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1823 { "-user", 0, 30, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1824 { "-debug-init", "--debug-init", 20, 0 }, |
65979 | 1825 { "-nbi", "--no-bitmap-icon", 15, 0 }, |
11596
b59f90606227
(standard_args): Move -iconic and --icon-type (etc.)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
1826 { "-iconic", "--iconic", 15, 0 }, |
61446
397fed153f02
(standard_args): Rename --bare-bones to --quick.
Richard M. Stallman <rms@gnu.org>
parents:
61346
diff
changeset
|
1827 { "-D", "--basic-display", 12, 0}, |
64775
17ea5769514d
(endif): Convert -script into -scriptload.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1828 { "-basic-display", 0, 12, 0}, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1829 { "-bg", "--background-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1830 { "-background", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1831 { "-fg", "--foreground-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1832 { "-foreground", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1833 { "-bd", "--border-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1834 { "-bw", "--border-width", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1835 { "-ib", "--internal-border", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1836 { "-ms", "--mouse-color", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1837 { "-cr", "--cursor-color", 10, 1 }, |
60399
e8bfc9ca45c2
(USAGE1): Replace Info node name "command arguments"
Juri Linkov <juri@jurta.org>
parents:
60358
diff
changeset
|
1838 { "-nbc", "--no-blinking-cursor", 10, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1839 { "-fn", "--font", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1840 { "-font", 0, 10, 1 }, |
42723
112393bdb5f9
(USAGE2): Add the new full-screen arguments.
Eli Zaretskii <eliz@gnu.org>
parents:
42276
diff
changeset
|
1841 { "-fs", "--fullscreen", 10, 0 }, |
112393bdb5f9
(USAGE2): Add the new full-screen arguments.
Eli Zaretskii <eliz@gnu.org>
parents:
42276
diff
changeset
|
1842 { "-fw", "--fullwidth", 10, 0 }, |
112393bdb5f9
(USAGE2): Add the new full-screen arguments.
Eli Zaretskii <eliz@gnu.org>
parents:
42276
diff
changeset
|
1843 { "-fh", "--fullheight", 10, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1844 { "-g", "--geometry", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1845 { "-geometry", 0, 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1846 { "-T", "--title", 10, 1 }, |
14993
a29d378dc9cd
(standard_args): Synchronize with startup.el.
Richard M. Stallman <rms@gnu.org>
parents:
14968
diff
changeset
|
1847 { "-title", 0, 10, 1 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1848 { "-name", "--name", 10, 1 }, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1849 { "-xrm", "--xrm", 10, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1850 { "-r", "--reverse-video", 5, 0 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1851 { "-rv", 0, 5, 0 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1852 { "-reverse", 0, 5, 0 }, |
14993
a29d378dc9cd
(standard_args): Synchronize with startup.el.
Richard M. Stallman <rms@gnu.org>
parents:
14968
diff
changeset
|
1853 { "-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
|
1854 { "-vb", "--vertical-scroll-bars", 5, 0 }, |
42744
ecb614567352
(USAGE2): Add the --color option.
Eli Zaretskii <eliz@gnu.org>
parents:
42723
diff
changeset
|
1855 { "-color", "--color", 5, 0}, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1856 /* 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
|
1857 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
|
1858 { "-L", "--directory", 0, 1 }, |
584362605c5e
(standard_args): Add -L/--directory/-directory.
Richard M. Stallman <rms@gnu.org>
parents:
11596
diff
changeset
|
1859 { "-directory", 0, 0, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1860 { "-l", "--load", 0, 1 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1861 { "-load", 0, 0, 1 }, |
64775
17ea5769514d
(endif): Convert -script into -scriptload.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1862 { "-scriptload", "--scriptload", 0, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1863 { "-f", "--funcall", 0, 1 }, |
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1864 { "-funcall", 0, 0, 1 }, |
12851
89d5e3a554de
(standard_args): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12848
diff
changeset
|
1865 { "-eval", "--eval", 0, 1 }, |
26193
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1866 { "-execute", "--execute", 0, 1 }, |
16749
c85f62b1b749
(standard_args): Add -find-file and -visit.
Richard M. Stallman <rms@gnu.org>
parents:
16588
diff
changeset
|
1867 { "-find-file", "--find-file", 0, 1 }, |
c85f62b1b749
(standard_args): Add -find-file and -visit.
Richard M. Stallman <rms@gnu.org>
parents:
16588
diff
changeset
|
1868 { "-visit", "--visit", 0, 1 }, |
26193
45f2d2b5f0d7
(standard_args): Add `file' as synonym for `visit',
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
1869 { "-file", "--file", 0, 1 }, |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1870 { "-insert", "--insert", 0, 1 }, |
11596
b59f90606227
(standard_args): Move -iconic and --icon-type (etc.)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
1871 /* 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
|
1872 { "-kill", "--kill", -10, 0 }, |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1873 }; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1874 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1875 /* 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
|
1876 so that the highest priority ones come first. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1877 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
|
1878 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
|
1879 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1880 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
|
1881 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
|
1882 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1883 static void |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1884 sort_args (argc, argv) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1885 int argc; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1886 char **argv; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1887 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1888 char **new = (char **) xmalloc (sizeof (char *) * argc); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1889 /* For each element of argv, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1890 the corresponding element of options is: |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1891 0 for an option that takes no arguments, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1892 1 for an option that takes one argument, etc. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1893 -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
|
1894 int *options = (int *) xmalloc (sizeof (int) * argc); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1895 int *priority = (int *) xmalloc (sizeof (int) * argc); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1896 int to = 1; |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1897 int incoming_used = 1; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1898 int from; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1899 int i; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1900 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1901 /* Categorize all the options, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1902 and figure out which argv elts are option arguments. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1903 for (from = 1; from < argc; from++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1904 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1905 options[from] = -1; |
10517
08e3895c1fdc
(sort_args): Ordinary args get priority 0.
Richard M. Stallman <rms@gnu.org>
parents:
10388
diff
changeset
|
1906 priority[from] = 0; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1907 if (argv[from][0] == '-') |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1908 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1909 int match, thislen; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1910 char *equals; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1911 |
16091
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1912 /* 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
|
1913 any more arguments as options. */ |
19030
469abf255dcb
(sort_args): Check properly for `--'.
Richard M. Stallman <rms@gnu.org>
parents:
18950
diff
changeset
|
1914 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
|
1915 { |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1916 /* 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
|
1917 for (; from < argc; from++) |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1918 { |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1919 priority[from] = -100; |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1920 options[from] = -1; |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1921 } |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1922 break; |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1923 } |
d76a0697d12e
(sort_args): Don't rearrange any args that follow "--".
Richard M. Stallman <rms@gnu.org>
parents:
16046
diff
changeset
|
1924 |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1925 /* 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
|
1926 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
|
1927 if (!strcmp (argv[from], standard_args[i].name)) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1928 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1929 options[from] = standard_args[i].nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1930 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
|
1931 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
|
1932 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
|
1933 from += standard_args[i].nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1934 goto done; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1935 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1936 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1937 /* Look for a match with a known long option. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1938 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
|
1939 >= 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
|
1940 if (argv[from][1] == '-') |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1941 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1942 match = -1; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1943 thislen = strlen (argv[from]); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1944 equals = index (argv[from], '='); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1945 if (equals != 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1946 thislen = equals - argv[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1947 |
11157
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1948 for (i = 0; |
620fd38579d8
(sort_args): Skip strncmp if longname is a null pointer.
Karl Heuer <kwzh@gnu.org>
parents:
11076
diff
changeset
|
1949 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
|
1950 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
|
1951 && !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
|
1952 thislen)) |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1953 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1954 if (match == -1) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1955 match = i; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1956 else |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1957 match = -2; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1958 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1959 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1960 /* If we found exactly one match, use that. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1961 if (match >= 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1962 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1963 options[from] = standard_args[match].nargs; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1964 priority[from] = standard_args[match].priority; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1965 /* If --OPTION=VALUE syntax is used, |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1966 this option uses just one argv element. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1967 if (equals != 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1968 options[from] = 0; |
14399
3a16ff5f6594
(sort_args): Error if option is missing an arg.
Richard M. Stallman <rms@gnu.org>
parents:
14202
diff
changeset
|
1969 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
|
1970 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
|
1971 from += options[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1972 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1973 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1974 done: ; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1975 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1976 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1977 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1978 /* 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
|
1979 new[0] = argv[0]; |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
1980 while (incoming_used < argc) |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1981 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1982 int best = -1; |
12861
c67a46e4fcef
(sort_args): Initialize best_priority smaller than any
Karl Heuer <kwzh@gnu.org>
parents:
12851
diff
changeset
|
1983 int best_priority = -9999; |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1984 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1985 /* Find the highest priority remaining option. |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1986 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
|
1987 for (from = 1; from < argc; from++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1988 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1989 if (argv[from] != 0 && priority[from] > best_priority) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1990 { |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1991 best_priority = priority[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1992 best = from; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1993 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1994 /* Skip option arguments--they are tied to the options. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1995 if (options[from] > 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1996 from += options[from]; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1997 } |
40372 | 1998 |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
1999 if (best < 0) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2000 abort (); |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2001 |
22553
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
2002 /* 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
|
2003 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
|
2004 if (! (options[best] == 0 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
2005 && ! 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
|
2006 { |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
2007 new[to++] = argv[best]; |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
2008 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
|
2009 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
|
2010 } |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
2011 |
b071f874301e
(sort_args): Discard duplicate options with no args.
Richard M. Stallman <rms@gnu.org>
parents:
22529
diff
changeset
|
2012 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
|
2013 |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2014 /* Clear out this option in ARGV. */ |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2015 argv[best] = 0; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2016 for (i = 0; i < options[best]; i++) |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2017 argv[best + i + 1] = 0; |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2018 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2019 |
23327
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
2020 /* 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
|
2021 while (to < argc) |
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
2022 new[to++] = 0; |
8875c38b22c7
(sort_args): Fill extra space with NULL ptrs.
Richard M. Stallman <rms@gnu.org>
parents:
23227
diff
changeset
|
2023 |
10150
d8fb9db90d8e
(sort_args): Make `options' a vector of ints.
Richard M. Stallman <rms@gnu.org>
parents:
10111
diff
changeset
|
2024 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
|
2025 |
58632
c0b9a69b829b
(malloc_initialize_hook): Don't free malloc_state_ptr if
Kim F. Storm <storm@cua.dk>
parents:
58617
diff
changeset
|
2026 xfree (options); |
c0b9a69b829b
(malloc_initialize_hook): Don't free malloc_state_ptr if
Kim F. Storm <storm@cua.dk>
parents:
58617
diff
changeset
|
2027 xfree (new); |
c0b9a69b829b
(malloc_initialize_hook): Don't free malloc_state_ptr if
Kim F. Storm <storm@cua.dk>
parents:
58617
diff
changeset
|
2028 xfree (priority); |
10029
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2029 } |
fdc1155b891c
(sort_args): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9788
diff
changeset
|
2030 |
284 | 2031 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P", |
40372 | 2032 doc: /* Exit the Emacs job and kill it. |
2033 If ARG is an integer, return ARG as the exit program code. | |
73623
04072a86a717
(Fkill_emacs): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72982
diff
changeset
|
2034 If ARG is a string, stuff it as keyboard input. |
40372 | 2035 |
2036 The value of `kill-emacs-hook', if not void, | |
2037 is a list of functions (of no args), | |
2038 all of which are called before Emacs is actually killed. */) | |
2039 (arg) | |
284 | 2040 Lisp_Object arg; |
2041 { | |
2042 struct gcpro gcpro1; | |
2043 | |
2044 GCPRO1 (arg); | |
2045 | |
2046 if (feof (stdin)) | |
2047 arg = Qt; | |
2048 | |
505 | 2049 if (!NILP (Vrun_hooks) && !noninteractive) |
284 | 2050 call1 (Vrun_hooks, intern ("kill-emacs-hook")); |
2051 | |
2052 UNGCPRO; | |
2053 | |
2054 /* Is it really necessary to do this deassign | |
2055 when we are going to exit anyway? */ | |
2056 /* #ifdef VMS | |
2057 stop_vms_input (); | |
2058 #endif */ | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2059 |
3837
85652925d5b8
* emacs.c (Fkill_emacs): Pass third argument to shut_down_emacs.
Jim Blandy <jimb@redhat.com>
parents:
3826
diff
changeset
|
2060 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
|
2061 |
11846
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
2062 /* 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
|
2063 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
|
2064 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
|
2065 if (STRINGP (Vauto_save_list_file_name)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2066 unlink (SDATA (Vauto_save_list_file_name)); |
11846
778a35aba3f7
(Fkill_emacs): Delete the auto-save-list file
Karl Heuer <kwzh@gnu.org>
parents:
11841
diff
changeset
|
2067 |
60348
84d948a78a71
(Fkill_emacs): Use EXIT_SUCCESS;
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60092
diff
changeset
|
2068 exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS); |
284 | 2069 /* NOTREACHED */ |
60665
a95b5f47474c
(Fkill_emacs): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60399
diff
changeset
|
2070 return Qnil; |
284 | 2071 } |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2072 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2073 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2074 /* 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
|
2075 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
|
2076 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
|
2077 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
|
2078 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
|
2079 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2080 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
|
2081 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2082 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
|
2083 and Fkill_emacs. */ |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
2084 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2085 void |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
2086 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
|
2087 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
|
2088 Lisp_Object stuff; |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2089 { |
6210
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
2090 /* 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
|
2091 Vrun_hooks = Qnil; |
dcc7759634d8
(shut_down_emacs): Set Vrun_hooks to nil.
Richard M. Stallman <rms@gnu.org>
parents:
6171
diff
changeset
|
2092 |
56034
161424b0c2f5
(shut_down_emacs): Inhibit redisplay during shutdown.
Kim F. Storm <storm@cua.dk>
parents:
55742
diff
changeset
|
2093 /* Don't update display from now on. */ |
161424b0c2f5
(shut_down_emacs): Inhibit redisplay during shutdown.
Kim F. Storm <storm@cua.dk>
parents:
55742
diff
changeset
|
2094 Vinhibit_redisplay = Qt; |
161424b0c2f5
(shut_down_emacs): Inhibit redisplay during shutdown.
Kim F. Storm <storm@cua.dk>
parents:
55742
diff
changeset
|
2095 |
40372 | 2096 /* If we are controlling the terminal, reset terminal modes. */ |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2097 #ifdef EMACS_HAVE_TTY_PGRP |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2098 { |
4957
dccce35b1173
(main): Use EMACS_GETPGRP macro.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2099 int pgrp = EMACS_GETPGRP (0); |
dccce35b1173
(main): Use EMACS_GETPGRP macro.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2100 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2101 int tpgrp; |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2102 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
|
2103 && tpgrp == pgrp) |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2104 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2105 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2106 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2107 if (sig && sig != SIGTERM) |
53072
8787289602d1
Remove period at end of error message.
Jan Djärv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
2108 fprintf (stderr, "Fatal error (%d)", sig); |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2109 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2110 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2111 #else |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2112 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2113 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2114 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2115 |
3711
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
2116 stuff_buffered_input (stuff); |
5acf09035d16
(shut_down_emacs): New arg STUFF. Stuff input here.
Richard M. Stallman <rms@gnu.org>
parents:
3655
diff
changeset
|
2117 |
72982
367ffce32084
(shut_down_emacs) [!subprocesses]: Don't set inhibit_sentinels.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
72728
diff
changeset
|
2118 #ifdef subprocesses |
72728
31f876da25bf
(shut_down_emacs): Set inhibit_sentinels.
Richard M. Stallman <rms@gnu.org>
parents:
70965
diff
changeset
|
2119 inhibit_sentinels = 1; |
72982
367ffce32084
(shut_down_emacs) [!subprocesses]: Don't set inhibit_sentinels.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
72728
diff
changeset
|
2120 #endif |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2121 kill_buffer_processes (Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2122 Fdo_auto_save (Qt, Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2123 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2124 #ifdef CLASH_DETECTION |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2125 unlock_all_files (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2126 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2127 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2128 #ifdef VMS |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2129 kill_vms_processes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2130 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2131 |
8815
b1766995a504
(shut_down_emacs): Don't call Fx_close_current_connection.
Richard M. Stallman <rms@gnu.org>
parents:
8704
diff
changeset
|
2132 #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
|
2133 #ifdef HAVE_X_WINDOWS |
7538
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
2134 /* 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
|
2135 if (!noninteractive && SYMBOLP (Vwindow_system) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2136 && SCHARS (SYMBOL_NAME (Vwindow_system)) == 1 |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2137 && SREF (SYMBOL_NAME (Vwindow_system), 0) == 'x' |
7538
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
2138 && ! 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
|
2139 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
|
2140 #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
|
2141 #endif |
3273
a5e5e1e04331
Don't include termios.h directly--let systty.h do it.
Richard M. Stallman <rms@gnu.org>
parents:
3187
diff
changeset
|
2142 |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2143 #ifdef SIGIO |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2144 /* 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
|
2145 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
|
2146 unrequest_sigio (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2147 signal (SIGIO, SIG_IGN); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2148 #endif |
15089
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
2149 |
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
2150 #ifdef WINDOWSNT |
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
2151 term_ntproc (); |
3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
Richard M. Stallman <rms@gnu.org>
parents:
15012
diff
changeset
|
2152 #endif |
20037
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
2153 |
39035
217755d3b319
(shut_down_emacs): Don't call check_glyph_memory
Gerd Moellmann <gerd@gnu.org>
parents:
38458
diff
changeset
|
2154 /* Do this only if terminating normally, we want glyph matrices |
217755d3b319
(shut_down_emacs): Don't call check_glyph_memory
Gerd Moellmann <gerd@gnu.org>
parents:
38458
diff
changeset
|
2155 etc. in a core dump. */ |
39036
9ce039b7595b
(shut_down_emacs): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39035
diff
changeset
|
2156 if (sig == 0 || sig == SIGTERM) |
39035
217755d3b319
(shut_down_emacs): Don't call check_glyph_memory
Gerd Moellmann <gerd@gnu.org>
parents:
38458
diff
changeset
|
2157 { |
217755d3b319
(shut_down_emacs): Don't call check_glyph_memory
Gerd Moellmann <gerd@gnu.org>
parents:
38458
diff
changeset
|
2158 check_glyph_memory (); |
217755d3b319
(shut_down_emacs): Don't call check_glyph_memory
Gerd Moellmann <gerd@gnu.org>
parents:
38458
diff
changeset
|
2159 check_message_stack (); |
217755d3b319
(shut_down_emacs): Don't call check_glyph_memory
Gerd Moellmann <gerd@gnu.org>
parents:
38458
diff
changeset
|
2160 } |
25010 | 2161 |
20037
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
2162 #ifdef MSDOS |
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
2163 dos_cleanup (); |
a4042bd1c038
(shut_down_emacs): Call `dos_cleanup'.
Eli Zaretskii <eliz@gnu.org>
parents:
19752
diff
changeset
|
2164 #endif |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2165 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2166 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2167 |
284 | 2168 |
2169 #ifndef CANNOT_DUMP | |
2170 | |
2171 #ifdef HAVE_SHM | |
2172 | |
2173 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0, | |
40372 | 2174 doc: /* Dump current state of Emacs into data file FILENAME. |
2175 This function exists on systems that use HAVE_SHM. */) | |
2176 (filename) | |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
2177 Lisp_Object filename; |
284 | 2178 { |
11076
9d2cb049844b
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10902
diff
changeset
|
2179 extern char my_edata[]; |
284 | 2180 Lisp_Object tem; |
2181 | |
39576
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
2182 check_pure_size (); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40572
diff
changeset
|
2183 CHECK_STRING (filename); |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
2184 filename = Fexpand_file_name (filename, Qnil); |
284 | 2185 |
2186 tem = Vpurify_flag; | |
2187 Vpurify_flag = Qnil; | |
2188 | |
2189 fflush (stdout); | |
40372 | 2190 /* Tell malloc where start of impure now is. */ |
284 | 2191 /* Also arrange for warnings when nearly out of space. */ |
2192 #ifndef SYSTEM_MALLOC | |
11720
f21ea087b1d8
Delete all APOLLO conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
11634
diff
changeset
|
2193 memory_warnings (my_edata, malloc_warning); |
284 | 2194 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2195 map_out_data (SDATA (filename)); |
284 | 2196 |
2197 Vpurify_flag = tem; | |
2198 | |
2199 return Qnil; | |
2200 } | |
2201 | |
2202 #else /* not HAVE_SHM */ | |
2203 | |
2204 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0, | |
40372 | 2205 doc: /* Dump current state of Emacs into executable file FILENAME. |
2206 Take symbols from SYMFILE (presumably the file you executed to run Emacs). | |
2207 This is used in the file `loadup.el' when building Emacs. | |
2208 | |
2209 You must run Emacs in batch mode in order to dump it. */) | |
2210 (filename, symfile) | |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
2211 Lisp_Object filename, symfile; |
284 | 2212 { |
11076
9d2cb049844b
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10902
diff
changeset
|
2213 extern char my_edata[]; |
284 | 2214 Lisp_Object tem; |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
2215 Lisp_Object symbol; |
46285
3f111801efb4
Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
45555
diff
changeset
|
2216 int count = SPECPDL_INDEX (); |
39576
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
2217 |
d2a8cced572f
(fatal_error_signal_hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
39036
diff
changeset
|
2218 check_pure_size (); |
284 | 2219 |
18394
d249b1ae0a02
(Fdump_emacs): Error if not run in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
18062
diff
changeset
|
2220 if (! noninteractive) |
d249b1ae0a02
(Fdump_emacs): Error if not run in batch mode.
Richard M. Stallman <rms@gnu.org>
parents:
18062
diff
changeset
|
2221 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
|
2222 |
70921
77206b6b6ec5
(main, Fdump_emacs): Don't test __linux or __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
69607
diff
changeset
|
2223 #ifdef GNU_LINUX |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2224 if (heap_bss_diff > MAX_HEAP_BSS_DIFF) |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2225 { |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2226 fprintf (stderr, "**************************************************\n"); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2227 fprintf (stderr, "Warning: Your system has a gap between BSS and the\n"); |
58088
489323ff8779
(Fdump_emacs): Fix format string.
Kim F. Storm <storm@cua.dk>
parents:
58018
diff
changeset
|
2228 fprintf (stderr, "heap (%lu byte). This usually means that exec-shield\n", |
58018
4d47dbf04bed
* emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57996
diff
changeset
|
2229 heap_bss_diff); |
4d47dbf04bed
* emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57996
diff
changeset
|
2230 fprintf (stderr, "or something similar is in effect. The dump may\n"); |
4d47dbf04bed
* emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57996
diff
changeset
|
2231 fprintf (stderr, "fail because of this. See the section about \n"); |
4d47dbf04bed
* emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57996
diff
changeset
|
2232 fprintf (stderr, "exec-shield in etc/PROBLEMS for more information.\n"); |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2233 fprintf (stderr, "**************************************************\n"); |
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2234 } |
70921
77206b6b6ec5
(main, Fdump_emacs): Don't test __linux or __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
69607
diff
changeset
|
2235 #endif /* GNU_LINUX */ |
57623
1293d7f90911
* emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
Jan Djärv <jan.h.d@swipnet.se>
parents:
56236
diff
changeset
|
2236 |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
2237 /* 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
|
2238 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
|
2239 and set up to work with X windows if appropriate. */ |
44163
2b5d4943e959
(Fdump_emacs): Fix a typo in "command-line-processed".
Eli Zaretskii <eliz@gnu.org>
parents:
44101
diff
changeset
|
2240 symbol = intern ("command-line-processed"); |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
2241 specbind (symbol, Qnil); |
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
2242 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40572
diff
changeset
|
2243 CHECK_STRING (filename); |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
2244 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
|
2245 if (!NILP (symfile)) |
284 | 2246 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40572
diff
changeset
|
2247 CHECK_STRING (symfile); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2248 if (SCHARS (symfile)) |
14072
d6f46c53f2aa
(Fdump_emacs_data, Fdump_emacs): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14035
diff
changeset
|
2249 symfile = Fexpand_file_name (symfile, Qnil); |
284 | 2250 } |
2251 | |
2252 tem = Vpurify_flag; | |
2253 Vpurify_flag = Qnil; | |
2254 | |
14202
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2255 #ifdef HAVE_TZSET |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2256 set_time_zone_rule (dump_tz); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2257 #ifndef LOCALTIME_CACHE |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2258 /* 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
|
2259 tzset (); |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2260 #endif |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2261 #endif |
7acafb848e80
(Fdump_emacs): If HAVE_TZSET and not
Richard M. Stallman <rms@gnu.org>
parents:
14127
diff
changeset
|
2262 |
284 | 2263 fflush (stdout); |
2264 #ifdef VMS | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2265 mapout_data (SDATA (filename)); |
284 | 2266 #else |
40372 | 2267 /* Tell malloc where start of impure now is. */ |
284 | 2268 /* Also arrange for warnings when nearly out of space. */ |
2269 #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
|
2270 #ifndef WINDOWSNT |
cfc5a79852e8
(Fdump_emacs): Don't reset the data start address by
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2271 /* 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
|
2272 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
|
2273 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
|
2274 #endif /* not WINDOWSNT */ |
284 | 2275 #endif |
58895
4406d551c5c6
(main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58832
diff
changeset
|
2276 #if !defined (SYSTEM_MALLOC) && defined (HAVE_GTK_AND_PTHREAD) && !defined SYNC_INPUT |
58818
f8cddae7d959
* gtkutil.c: Include signal.h and syssignal.h.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58632
diff
changeset
|
2277 /* Pthread may call malloc before main, and then we will get an endless |
f8cddae7d959
* gtkutil.c: Include signal.h and syssignal.h.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58632
diff
changeset
|
2278 loop, because pthread_self (see alloc.c) calls malloc the first time |
f8cddae7d959
* gtkutil.c: Include signal.h and syssignal.h.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58632
diff
changeset
|
2279 it is called on some systems. */ |
f8cddae7d959
* gtkutil.c: Include signal.h and syssignal.h.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58632
diff
changeset
|
2280 reset_malloc_hooks (); |
f8cddae7d959
* gtkutil.c: Include signal.h and syssignal.h.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58632
diff
changeset
|
2281 #endif |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
2282 #ifdef DOUG_LEA_MALLOC |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
2283 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
|
2284 #endif |
31413
c3b1fc2b0d11
(Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
Gerd Moellmann <gerd@gnu.org>
parents:
31336
diff
changeset
|
2285 |
31602
a42e23d2b9cc
Change conditional compilation on REL_ALLOC_MMAP to
Gerd Moellmann <gerd@gnu.org>
parents:
31413
diff
changeset
|
2286 #ifdef USE_MMAP_FOR_BUFFERS |
31413
c3b1fc2b0d11
(Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
Gerd Moellmann <gerd@gnu.org>
parents:
31336
diff
changeset
|
2287 mmap_set_vars (0); |
c3b1fc2b0d11
(Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
Gerd Moellmann <gerd@gnu.org>
parents:
31336
diff
changeset
|
2288 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2289 unexec (SDATA (filename), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
2290 !NILP (symfile) ? SDATA (symfile) : 0, my_edata, 0, 0); |
31602
a42e23d2b9cc
Change conditional compilation on REL_ALLOC_MMAP to
Gerd Moellmann <gerd@gnu.org>
parents:
31413
diff
changeset
|
2291 #ifdef USE_MMAP_FOR_BUFFERS |
31413
c3b1fc2b0d11
(Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
Gerd Moellmann <gerd@gnu.org>
parents:
31336
diff
changeset
|
2292 mmap_set_vars (1); |
c3b1fc2b0d11
(Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
Gerd Moellmann <gerd@gnu.org>
parents:
31336
diff
changeset
|
2293 #endif |
17346
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
2294 #ifdef DOUG_LEA_MALLOC |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
2295 free (malloc_state_ptr); |
f29f51d8a21f
(malloc_get_state, malloc_set_state): New declarations.
Richard M. Stallman <rms@gnu.org>
parents:
17312
diff
changeset
|
2296 #endif |
284 | 2297 #endif /* not VMS */ |
2298 | |
2299 Vpurify_flag = tem; | |
2300 | |
18395
4b6ab0b6fd50
(Fdump_emacs): Bind command-line-processed to nil here.
Richard M. Stallman <rms@gnu.org>
parents:
18394
diff
changeset
|
2301 return unbind_to (count, Qnil); |
284 | 2302 } |
2303 | |
2304 #endif /* not HAVE_SHM */ | |
2305 | |
2306 #endif /* not CANNOT_DUMP */ | |
2307 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2308 #if HAVE_SETLOCALE |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2309 /* 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
|
2310 void |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2311 fixup_locale () |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2312 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2313 /* 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
|
2314 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
|
2315 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
|
2316 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2317 |
26590
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2318 /* 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
|
2319 DESIRED_LOCALE. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2320 static void |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2321 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
|
2322 int category; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2323 Lisp_Object *plocale; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2324 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
|
2325 { |
26590
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2326 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
|
2327 { |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2328 *plocale = desired_locale; |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2329 setlocale (category, (STRINGP (desired_locale) |
57996 | 2330 ? (char *) SDATA (desired_locale) |
26590
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2331 : "")); |
301daf47e723
* emacs.c (fixup_locale): Don't bother to record initial locale.
Paul Eggert <eggert@twinsun.com>
parents:
26567
diff
changeset
|
2332 } |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2333 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2334 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2335 /* 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
|
2336 void |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2337 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
|
2338 { |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2339 synchronize_locale (LC_TIME, &Vprevious_system_time_locale, |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2340 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
|
2341 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2342 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2343 /* 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
|
2344 possible. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2345 void |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2346 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
|
2347 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2348 #ifdef LC_MESSAGES |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2349 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale, |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2350 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
|
2351 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2352 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2353 #endif /* HAVE_SETLOCALE */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25746
diff
changeset
|
2354 |
2649
3a9fb5d6d259
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
2355 #ifndef SEPCHAR |
284 | 2356 #define SEPCHAR ':' |
2357 #endif | |
2358 | |
2359 Lisp_Object | |
2360 decode_env_path (evarname, defalt) | |
2361 char *evarname, *defalt; | |
2362 { | |
2363 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
|
2364 Lisp_Object lpath, element, tem; |
284 | 2365 |
505 | 2366 /* It's okay to use getenv here, because this function is only used |
2367 to initialize variables when Emacs starts up, and isn't called | |
2368 after that. */ | |
638 | 2369 if (evarname != 0) |
2370 path = (char *) getenv (evarname); | |
2371 else | |
2372 path = 0; | |
284 | 2373 if (!path) |
2374 path = defalt; | |
18514
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2375 #ifdef DOS_NT |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2376 /* 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
|
2377 if (path) |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2378 { |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2379 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
|
2380 strcpy (p, path); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2381 path = p; |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2382 |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2383 if ('/' == DIRECTORY_SEP) |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2384 dostounix_filename (path); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2385 else |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2386 unixtodos_filename (path); |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2387 } |
38e3a189ed1d
(decode_env_path): Ensure path elements use proper directory separator.
Richard M. Stallman <rms@gnu.org>
parents:
18395
diff
changeset
|
2388 #endif |
284 | 2389 lpath = Qnil; |
2390 while (1) | |
2391 { | |
2392 p = index (path, SEPCHAR); | |
2393 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
|
2394 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
|
2395 : build_string (".")); |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2396 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2397 /* 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
|
2398 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
|
2399 tem = Ffind_file_name_handler (element, Qt); |
47019
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2400 |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2401 /* However, if the handler says "I'm safe", |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2402 don't bother adding /:. */ |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2403 if (SYMBOLP (tem)) |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2404 { |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2405 Lisp_Object prop; |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2406 prop = Fget (tem, intern ("safe-magic")); |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2407 if (! NILP (prop)) |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2408 tem = Qnil; |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2409 } |
8ec5fd232f26
(decode_env_path): Don't add /: if file name handler
Richard M. Stallman <rms@gnu.org>
parents:
46916
diff
changeset
|
2410 |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2411 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
|
2412 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
|
2413 |
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2414 lpath = Fcons (element, lpath); |
284 | 2415 if (*p) |
2416 path = p + 1; | |
2417 else | |
2418 break; | |
2419 } | |
2420 return Fnreverse (lpath); | |
2421 } | |
2422 | |
21514 | 2423 void |
284 | 2424 syms_of_emacs () |
2425 { | |
16386
e7e295c6add2
(decode_env_path): Add /: to dir names that could be magic.
Richard M. Stallman <rms@gnu.org>
parents:
16278
diff
changeset
|
2426 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
|
2427 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
|
2428 |
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
2429 #ifndef CANNOT_DUMP |
284 | 2430 #ifdef HAVE_SHM |
2431 defsubr (&Sdump_emacs_data); | |
2432 #else | |
2433 defsubr (&Sdump_emacs); | |
2434 #endif | |
3187
0790b5563a66
(syms_of_emacs) [CANNOT_DUMP]: Don't defsubr Sdump_emacs*.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
2435 #endif |
284 | 2436 |
2437 defsubr (&Skill_emacs); | |
2438 | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
2439 defsubr (&Sinvocation_name); |
4484
c589c71324dd
(Vinvocation_directory): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4303
diff
changeset
|
2440 defsubr (&Sinvocation_directory); |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
2441 |
284 | 2442 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, |
47430
612929500d46
(syms_of_emacs) <command-line-args>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
47077
diff
changeset
|
2443 doc: /* Args passed by shell to Emacs, as a list of strings. |
612929500d46
(syms_of_emacs) <command-line-args>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
47077
diff
changeset
|
2444 Many arguments are deleted from the list as they are processed. */); |
284 | 2445 |
2446 DEFVAR_LISP ("system-type", &Vsystem_type, | |
62304
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2447 doc: /* Value is symbol indicating type of operating system you are using. |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2448 Special values: |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2449 `gnu/linux' compiled for a GNU/Linux system. |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2450 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...). |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2451 `macos' compiled for Mac OS 9. |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2452 `ms-dos' compiled as an MS-DOS application. |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2453 `windows-nt' compiled as a native W32 application. |
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2454 `cygwin' compiled using the Cygwin library. |
74474
89d471c14fc3
(syms_of_emacs): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
74408
diff
changeset
|
2455 `vax-vms' or |
89d471c14fc3
(syms_of_emacs): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
74408
diff
changeset
|
2456 `axp-vms' compiled for a (Open)VMS system. |
62304
759e02011c0d
(syms_of_emacs): Fix doc string for system-type.
Nick Roberts <nickrob@snap.net.nz>
parents:
62285
diff
changeset
|
2457 Anything else indicates some sort of Unix system. */); |
284 | 2458 Vsystem_type = intern (SYSTEM_TYPE); |
2459 | |
5236
3be757b02da0
(syms_of_emacs): Define Lisp var system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5197
diff
changeset
|
2460 DEFVAR_LISP ("system-configuration", &Vsystem_configuration, |
40372 | 2461 doc: /* Value is string indicating configuration Emacs was built for. |
2462 On MS-Windows, the value reflects the OS flavor and version on which | |
2463 Emacs is running. */); | |
7538
c4d128d26fc9
(syms_of_emacs): EMACS_CONFIGURATION renamed from CONFIGURATION.
Richard M. Stallman <rms@gnu.org>
parents:
7480
diff
changeset
|
2464 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
|
2465 |
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2466 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options, |
40372 | 2467 doc: /* String containing the configuration options Emacs was built with. */); |
8843
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2468 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS); |
4fd9700b07a7
(Vsystem_configuration_options): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
8815
diff
changeset
|
2469 |
284 | 2470 DEFVAR_BOOL ("noninteractive", &noninteractive1, |
40372 | 2471 doc: /* Non-nil means Emacs is running without interactive terminal. */); |
732 | 2472 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
2473 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook, |
47839
8d4ba9addc8e
*** empty log message ***
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47430
diff
changeset
|
2474 doc: /* Hook to be run when kill-emacs is called. |
8d4ba9addc8e
*** empty log message ***
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47430
diff
changeset
|
2475 Since `kill-emacs' may be invoked when the terminal is disconnected (or |
40372 | 2476 in other similar situations), functions placed on this hook should not |
2477 expect to be able to interact with the user. To ask for confirmation, | |
47839
8d4ba9addc8e
*** empty log message ***
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47430
diff
changeset
|
2478 see `kill-emacs-query-functions' instead. |
8d4ba9addc8e
*** empty log message ***
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47430
diff
changeset
|
2479 |
8d4ba9addc8e
*** empty log message ***
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47430
diff
changeset
|
2480 The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */); |
732 | 2481 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
|
2482 |
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
|
2483 DEFVAR_INT ("emacs-priority", &emacs_priority, |
40372 | 2484 doc: /* Priority for Emacs to run at. |
2485 This value is effective only if set before Emacs is dumped, | |
2486 and only if the Emacs executable is installed with setuid to permit | |
2487 it to change priority. (Emacs sets its uid back to the real uid.) | |
2488 Currently, you need to define SET_EMACS_PRIORITY in `config.h' | |
2489 before you compile Emacs, to enable the code for this feature. */); | |
21637
0bd76a1c9172
(syms_of_emacs): Fix patching error in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
21622
diff
changeset
|
2490 emacs_priority = 0; |
21622
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2491 |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2492 DEFVAR_LISP ("path-separator", &Vpath_separator, |
75168
77ea2237b3ac
(syms_of_emacs) <path-separator>: Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
74747
diff
changeset
|
2493 doc: /* String containing the character that separates directories in |
77ea2237b3ac
(syms_of_emacs) <path-separator>: Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
74747
diff
changeset
|
2494 search paths, such as PATH and other similar environment variables. */); |
21622
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2495 { |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2496 char c = SEPCHAR; |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2497 Vpath_separator = make_string (&c, 1); |
340ce8f170ef
(Vpath_separator): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21585
diff
changeset
|
2498 } |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2118
diff
changeset
|
2499 |
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2500 DEFVAR_LISP ("invocation-name", &Vinvocation_name, |
40372 | 2501 doc: /* The program name that was used to run Emacs. |
2502 Any directory names are omitted. */); | |
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2503 |
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2504 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory, |
40372 | 2505 doc: /* The directory in which the Emacs executable was found, to run it. |
2506 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
|
2507 |
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2508 DEFVAR_LISP ("installation-directory", &Vinstallation_directory, |
40372 | 2509 doc: /* A directory within which to look for the `lib-src' and `etc' directories. |
2510 This is non-nil when we can't find those directories in their standard | |
2511 installed locations, but we can find them | |
2512 near where the Emacs executable was found. */); | |
7003
176bb79caecf
(init_cmdargs): Check only for etc and lib-src subdirs
Richard M. Stallman <rms@gnu.org>
parents:
7002
diff
changeset
|
2513 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
|
2514 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2515 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale, |
40372 | 2516 doc: /* System locale for messages. */); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2517 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
|
2518 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2519 DEFVAR_LISP ("previous-system-messages-locale", |
40372 | 2520 &Vprevious_system_messages_locale, |
2521 doc: /* Most recently used system locale for messages. */); | |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2522 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
|
2523 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2524 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale, |
40372 | 2525 doc: /* System locale for time. */); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2526 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
|
2527 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2528 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale, |
40372 | 2529 doc: /* Most recently used system locale for time. */); |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26404
diff
changeset
|
2530 Vprevious_system_time_locale = Qnil; |
284 | 2531 } |
52401 | 2532 |
2533 /* arch-tag: 7bfd356a-c720-4612-8ab6-aa4222931c2e | |
2534 (do not change this comment) */ |