(view-emacs-news): Handle prefix arg.
[bpt/emacs.git] / src / emacs.c
CommitLineData
f927c5ae 1/* Fully extensible Emacs, running on Unix, intended for GNU.
4a2f9c6a 2 Copyright (C) 1985,86,87,93,94,95,97,1998 Free Software Foundation, Inc.
f927c5ae
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
40be253a 8the Free Software Foundation; either version 2, or (at your option)
f927c5ae
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
5a7670bf
RS
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
f927c5ae
JB
20
21
22#include <signal.h>
23#include <errno.h>
24
18160b98 25#include <config.h>
f927c5ae
JB
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
488b7cb3 35#ifdef BSD_SYSTEM
f927c5ae
JB
36#include <sys/ioctl.h>
37#endif
38
f927c5ae
JB
39#include "lisp.h"
40#include "commands.h"
bef79ee4 41#include "intervals.h"
f927c5ae 42
edc8ae07 43#include "systty.h"
6c3a4e9d 44#include "blockinput.h"
8090eb09 45#include "syssignal.h"
6c362a8b 46#include "process.h"
a41f8bed 47
53c58b5d
RS
48#ifdef HAVE_SETRLIMIT
49#include <sys/time.h>
50#include <sys/resource.h>
51#endif
52
f927c5ae
JB
53#ifndef O_RDWR
54#define O_RDWR 2
55#endif
56
43165242 57extern void malloc_warning ();
0269dedb 58extern void set_time_zone_rule ();
43165242
KH
59extern char *index ();
60extern char *strerror ();
61
f927c5ae
JB
62/* Command line args from shell, as list of strings */
63Lisp_Object Vcommand_line_args;
64
59653951
JB
65/* The name under which Emacs was invoked, with any leading directory
66 names discarded. */
67Lisp_Object Vinvocation_name;
68
ace40a69
RS
69/* The directory name from which Emacs was invoked. */
70Lisp_Object Vinvocation_directory;
71
07f4d123
RS
72/* The directory name in which to find subdirs such as lisp and etc.
73 nil means get them only from PATH_LOADSEARCH. */
74Lisp_Object Vinstallation_directory;
75
e5d77022
JB
76/* Hook run by `kill-emacs' before it does really anything. */
77Lisp_Object Vkill_emacs_hook;
78
7317d9e8
RS
79#ifdef SIGUSR1
80/* Hooks for signal USR1 and USR2 handing */
81Lisp_Object Vsignal_USR1_hook;
82#ifdef SIGUSR2
83Lisp_Object Vsignal_USR2_hook;
84#endif
85#endif
86
f927c5ae
JB
87/* Set nonzero after Emacs has started up the first time.
88 Prevents reinitialization of the Lisp world and keymaps
89 on subsequent starts. */
90int initialized;
91
15aaf1b5
RS
92#ifdef DOUG_LEA_MALLOC
93/* Preserves a pointer to the memory allocated that copies that
94 static data inside glibc's malloc. */
95void *malloc_state_ptr;
96/* From glibc, a routine that returns a copy of the malloc internal state. */
97extern void *malloc_get_state ();
98/* From glibc, a routine that overwrites the malloc internal state. */
99extern void malloc_set_state ();
100#endif
101
271c7b7c 102/* Variable whose value is symbol giving operating system type. */
f927c5ae 103Lisp_Object Vsystem_type;
271c7b7c
RS
104
105/* Variable whose value is string giving configuration built for. */
106Lisp_Object Vsystem_configuration;
f0fc0b1a
KH
107
108/* Variable whose value is string giving configuration options,
109 for use when reporting bugs. */
110Lisp_Object Vsystem_configuration_options;
111
213d0b1f
RS
112Lisp_Object Qfile_name_handler_alist;
113
f927c5ae
JB
114/* If non-zero, emacs should not attempt to use an window-specific code,
115 but instead should use the virtual terminal under which it was started */
116int inhibit_window_system;
117
5aa7f46a
JB
118/* If nonzero, set Emacs to run at this priority. This is also used
119 in child_setup and sys_suspend to make sure subshells run at normal
120 priority; Those functions have their own extern declaration. */
3005da00
RS
121int emacs_priority;
122
7074fde6
FP
123/* If non-zero a filter or a sentinel is running. Tested to save the match
124 data on the first attempt to change it inside asynchronous code. */
125int running_asynch_code;
126
647cec74 127#ifdef BSD_PGRPS
9ae8f997
JB
128/* See sysdep.c. */
129extern int inherited_pgroup;
130#endif
131
f927c5ae
JB
132#ifdef HAVE_X_WINDOWS
133/* If non-zero, -d was specified, meaning we're using some window system. */
134int display_arg;
135#endif
136
137/* An address near the bottom of the stack.
138 Tells GC how to save a copy of the stack. */
139char *stack_bottom;
140
8ba50e1a 141#ifdef HAVE_WINDOW_SYSTEM
f927c5ae 142extern Lisp_Object Vwindow_system;
8ba50e1a 143#endif /* HAVE_WINDOW_SYSTEM */
f927c5ae 144
1090a161
RS
145extern Lisp_Object Vauto_save_list_file_name;
146
f927c5ae
JB
147#ifdef USG_SHARED_LIBRARIES
148/* If nonzero, this is the place to put the end of the writable segment
149 at startup. */
150
151unsigned int bss_end = 0;
152#endif
153
154/* Nonzero means running Emacs without interactive terminal. */
155
156int noninteractive;
157
158/* Value of Lisp variable `noninteractive'.
159 Normally same as C variable `noninteractive'
160 but nothing terrible happens if user sets this one. */
161
162int noninteractive1;
e29f86e4
RS
163
164/* Save argv and argc. */
165char **initial_argv;
166int initial_argc;
081bef73
RS
167
168static void sort_args ();
f927c5ae
JB
169\f
170/* Signal code for the fatal signal that was received */
171int fatal_error_code;
172
173/* Nonzero if handling a fatal error already */
174int fatal_error_in_progress;
175
7317d9e8
RS
176#ifdef SIGUSR1
177int SIGUSR1_in_progress=0;
178SIGTYPE
179handle_USR1_signal (sig)
180 int sig;
181{
182 if (! SIGUSR1_in_progress)
183 {
184 SIGUSR1_in_progress = 1;
185
186 if (!NILP (Vrun_hooks) && !noninteractive)
187 call1 (Vrun_hooks, intern ("signal-USR1-hook"));
188
189 SIGUSR1_in_progress = 0;
190 }
191}
fcf01ad3 192
7317d9e8
RS
193#ifdef SIGUSR2
194int SIGUSR2_in_progress=0;
195SIGTYPE
196handle_USR2_signal (sig)
197 int sig;
198{
199 if (! SIGUSR2_in_progress)
200 {
201 SIGUSR2_in_progress = 1;
202
203 if (!NILP (Vrun_hooks) && !noninteractive)
204 call1 (Vrun_hooks, intern ("signal-USR2-hook"));
205
206 SIGUSR2_in_progress = 0;
207 }
208}
209#endif
210#endif
211
f927c5ae 212/* Handle bus errors, illegal instruction, etc. */
2447c626 213SIGTYPE
f927c5ae
JB
214fatal_error_signal (sig)
215 int sig;
216{
f927c5ae
JB
217 fatal_error_code = sig;
218 signal (sig, SIG_DFL);
219
061b7f94
RS
220 TOTALLY_UNBLOCK_INPUT;
221
f927c5ae 222 /* If fatal error occurs in code below, avoid infinite recursion. */
8090eb09
JB
223 if (! fatal_error_in_progress)
224 {
225 fatal_error_in_progress = 1;
f927c5ae 226
f7ab4e3d 227 shut_down_emacs (sig, 0, Qnil);
8090eb09 228 }
f927c5ae
JB
229
230#ifdef VMS
f927c5ae
JB
231 LIB$STOP (SS$_ABORT);
232#else
8090eb09
JB
233 /* Signal the same code; this time it will really be fatal.
234 Remember that since we're in a signal handler, the signal we're
235 going to send is probably blocked, so we have to unblock it if we
236 want to really receive it. */
29b89fe0 237#ifndef MSDOS
a90538cb 238 sigunblock (sigmask (fatal_error_code));
29b89fe0 239#endif
f927c5ae
JB
240 kill (getpid (), fatal_error_code);
241#endif /* not VMS */
242}
271c7b7c
RS
243
244#ifdef SIGDANGER
245
16c323ee 246/* Handler for SIGDANGER. */
271c7b7c
RS
247SIGTYPE
248memory_warning_signal (sig)
249 int sig;
250{
251 signal (sig, memory_warning_signal);
252
253 malloc_warning ("Operating system warns that virtual memory is running low.\n");
55796183
RS
254
255 /* It might be unsafe to call do_auto_save now. */
256 force_auto_save_soon ();
271c7b7c
RS
257}
258#endif
fcf01ad3
RS
259
260/* We define abort, rather than using it from the library,
261 so that GDB can return from a breakpoint here. */
262
263void
264abort ()
265{
266 kill (getpid (), SIGABRT);
267}
268
f927c5ae
JB
269\f
270/* Code for dealing with Lisp access to the Unix command line */
271
272static
273init_cmdargs (argc, argv, skip_args)
274 int argc;
275 char **argv;
276 int skip_args;
277{
278 register int i;
213d0b1f
RS
279 Lisp_Object name, dir, tem;
280 int count = specpdl_ptr - specpdl;
281 Lisp_Object raw_name;
f927c5ae 282
e29f86e4
RS
283 initial_argv = argv;
284 initial_argc = argc;
285
213d0b1f
RS
286 raw_name = build_string (argv[0]);
287
288 /* Add /: to the front of the name
289 if it would otherwise be treated as magic. */
290 tem = Ffind_file_name_handler (raw_name, Qt);
291 if (! NILP (tem))
292 raw_name = concat2 (build_string ("/:"), raw_name);
293
294 Vinvocation_name = Ffile_name_nondirectory (raw_name);
295 Vinvocation_directory = Ffile_name_directory (raw_name);
296
ace40a69
RS
297 /* If we got no directory in argv[0], search PATH to find where
298 Emacs actually came from. */
299 if (NILP (Vinvocation_directory))
300 {
301 Lisp_Object found;
302 int yes = openp (Vexec_path, Vinvocation_name,
6c362a8b 303 EXEC_SUFFIXES, &found, 1);
e443f843 304 if (yes == 1)
213d0b1f
RS
305 {
306 /* Add /: to the front of the name
307 if it would otherwise be treated as magic. */
308 tem = Ffind_file_name_handler (found, Qt);
309 if (! NILP (tem))
310 found = concat2 (build_string ("/:"), found);
311 Vinvocation_directory = Ffile_name_directory (found);
312 }
ace40a69 313 }
59653951 314
4133b300
RS
315 if (!NILP (Vinvocation_directory)
316 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
213d0b1f
RS
317 /* Emacs was started with relative path, like ./emacs.
318 Make it absolute. */
4133b300
RS
319 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
320
07f4d123
RS
321 Vinstallation_directory = Qnil;
322
323 if (!NILP (Vinvocation_directory))
324 {
325 dir = Vinvocation_directory;
326 name = Fexpand_file_name (Vinvocation_name, dir);
327 while (1)
328 {
f5ab9736 329 Lisp_Object tem, lib_src_exists;
07f4d123
RS
330 Lisp_Object etc_exists, info_exists;
331
f5ab9736
RS
332 /* See if dir contains subdirs for use by Emacs.
333 Check for the ones that would exist in a build directory,
334 not including lisp and info. */
335 tem = Fexpand_file_name (build_string ("lib-src"), dir);
336 lib_src_exists = Ffile_exists_p (tem);
de004cc6 337
70344b34 338#ifdef MSDOS
de004cc6
RS
339 /* MSDOS installations frequently remove lib-src, but we still
340 must set installation-directory, or else info won't find
341 its files (it uses the value of installation-directory). */
342 tem = Fexpand_file_name (build_string ("info"), dir);
343 info_exists = Ffile_exists_p (tem);
70344b34
EZ
344#else
345 info_exists = Qnil;
346#endif
de004cc6
RS
347
348 if (!NILP (lib_src_exists) || !NILP (info_exists))
07f4d123 349 {
f5ab9736
RS
350 tem = Fexpand_file_name (build_string ("etc"), dir);
351 etc_exists = Ffile_exists_p (tem);
352 if (!NILP (etc_exists))
07f4d123 353 {
f5ab9736
RS
354 Vinstallation_directory
355 = Ffile_name_as_directory (dir);
356 break;
07f4d123
RS
357 }
358 }
359
360 /* See if dir's parent contains those subdirs. */
f5ab9736
RS
361 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
362 lib_src_exists = Ffile_exists_p (tem);
de004cc6 363
70344b34
EZ
364
365#ifdef MSDOS
366 /* See the MSDOS commentary above. */
de004cc6
RS
367 tem = Fexpand_file_name (build_string ("../info"), dir);
368 info_exists = Ffile_exists_p (tem);
70344b34
EZ
369#else
370 info_exists = Qnil;
371#endif
de004cc6
RS
372
373 if (!NILP (lib_src_exists) || !NILP (info_exists))
07f4d123 374 {
f5ab9736
RS
375 tem = Fexpand_file_name (build_string ("../etc"), dir);
376 etc_exists = Ffile_exists_p (tem);
377 if (!NILP (etc_exists))
07f4d123 378 {
f5ab9736
RS
379 tem = Fexpand_file_name (build_string (".."), dir);
380 Vinstallation_directory
381 = Ffile_name_as_directory (tem);
382 break;
07f4d123
RS
383 }
384 }
385
386 /* If the Emacs executable is actually a link,
387 next try the dir that the link points into. */
388 tem = Ffile_symlink_p (name);
389 if (!NILP (tem))
390 {
260ec24d 391 name = Fexpand_file_name (tem, dir);
07f4d123
RS
392 dir = Ffile_name_directory (name);
393 }
394 else
395 break;
396 }
397 }
398
f927c5ae
JB
399 Vcommand_line_args = Qnil;
400
401 for (i = argc - 1; i >= 0; i--)
402 {
403 if (i == 0 || i > skip_args)
404 Vcommand_line_args
405 = Fcons (build_string (argv[i]), Vcommand_line_args);
406 }
213d0b1f
RS
407
408 unbind_to (count, Qnil);
f927c5ae 409}
59653951
JB
410
411DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
412 "Return the program name that was used to run Emacs.\n\
413Any directory names are omitted.")
414 ()
415{
416 return Fcopy_sequence (Vinvocation_name);
417}
418
ace40a69
RS
419DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
420 0, 0, 0,
421 "Return the directory name in which the Emacs executable was located")
422 ()
423{
424 return Fcopy_sequence (Vinvocation_directory);
425}
426
f927c5ae
JB
427\f
428#ifdef VMS
429#ifdef LINK_CRTL_SHARE
34035df3 430#ifdef SHARABLE_LIB_BUG
f927c5ae 431extern noshare char **environ;
34035df3 432#endif /* SHARABLE_LIB_BUG */
f927c5ae
JB
433#endif /* LINK_CRTL_SHARE */
434#endif /* VMS */
435
0269dedb
RS
436#ifdef HAVE_TZSET
437/* A valid but unlikely value for the TZ environment value.
438 It is OK (though a bit slower) if the user actually chooses this value. */
439static char dump_tz[] = "UtC0";
440#endif
441
a90538cb 442#ifndef ORDINARY_LINK
efd241cc
RS
443/* We don't include crtbegin.o and crtend.o in the link,
444 so these functions and variables might be missed.
445 Provide dummy definitions to avoid error.
446 (We don't have any real constructors or destructors.) */
447#ifdef __GNUC__
46e65b73 448#ifndef GCC_CTORS_IN_LIBC
c83a7064 449__do_global_ctors ()
efd241cc 450{}
c83a7064
RS
451__do_global_ctors_aux ()
452{}
33143604
RS
453__do_global_dtors ()
454{}
64c1864a
RS
455/* Linux has a bug in its library; avoid an error. */
456#ifndef LINUX
c83a7064 457char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
64c1864a 458#endif
c83a7064 459char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
46e65b73 460#endif /* GCC_CTORS_IN_LIBC */
c83a7064 461__main ()
efd241cc 462{}
efd241cc 463#endif /* __GNUC__ */
a90538cb 464#endif /* ORDINARY_LINK */
efd241cc 465
e2925360
KH
466/* Test whether the next argument in ARGV matches SSTR or a prefix of
467 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
468 (the argument is supposed to have a value) store in *VALPTR either
469 the next argument or the portion of this one after the equal sign.
470 ARGV is read starting at position *SKIPPTR; this index is advanced
471 by the number of arguments used.
472
473 Too bad we can't just use getopt for all of this, but we don't have
474 enough information to do it right. */
081bef73 475
e2925360 476static int
df6530f8 477argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
e2925360 478 char **argv;
df6530f8 479 int argc;
e2925360
KH
480 char *sstr;
481 char *lstr;
482 int minlen;
483 char **valptr;
484 int *skipptr;
485{
486 char *p;
487 int arglen;
df6530f8
RS
488 char *arg;
489
490 /* Don't access argv[argc]; give up in advance. */
491 if (argc <= *skipptr + 1)
492 return 0;
493
494 arg = argv[*skipptr+1];
e2925360
KH
495 if (arg == NULL)
496 return 0;
497 if (strcmp (arg, sstr) == 0)
498 {
499 if (valptr != NULL)
500 {
501 *valptr = argv[*skipptr+2];
502 *skipptr += 2;
503 }
504 else
505 *skipptr += 1;
506 return 1;
507 }
508 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
509 ? p - arg : strlen (arg));
c03e1113 510 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
e2925360
KH
511 return 0;
512 else if (valptr == NULL)
513 {
514 *skipptr += 1;
515 return 1;
516 }
517 else if (p != NULL)
518 {
519 *valptr = p+1;
520 *skipptr += 1;
521 return 1;
522 }
523 else if (argv[*skipptr+2] != NULL)
524 {
525 *valptr = argv[*skipptr+2];
526 *skipptr += 2;
527 return 1;
528 }
529 else
530 {
531 return 0;
532 }
533}
534
f927c5ae
JB
535/* ARGSUSED */
536main (argc, argv, envp)
537 int argc;
538 char **argv;
539 char **envp;
540{
541 char stack_bottom_variable;
542 int skip_args = 0;
543 extern int errno;
544 extern sys_nerr;
53c58b5d
RS
545#ifdef HAVE_SETRLIMIT
546 struct rlimit rlim;
547#endif
f927c5ae 548
6000fe37
RS
549#ifdef LINUX_SBRK_BUG
550 __sbrk (1);
551#endif
552
15aaf1b5
RS
553#ifdef DOUG_LEA_MALLOC
554 if (initialized)
555 {
556 malloc_set_state (malloc_state_ptr);
557 free (malloc_state_ptr);
ea2acec5 558 r_alloc_reinit ();
15aaf1b5
RS
559 }
560#endif
561
d785cf9e
RS
562#ifdef RUN_TIME_REMAP
563 if (initialized)
564 run_time_remap (argv[0]);
565#endif
566
081bef73
RS
567 sort_args (argc, argv);
568
1702afef
RS
569 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args))
570 {
571 Lisp_Object tem;
572 tem = Fsymbol_value (intern ("emacs-version"));
573 if (!STRINGP (tem))
574 {
575 fprintf (stderr, "Invalid value of `emacs-version'\n");
576 exit (1);
577 }
578 else
579 {
30ce1583 580 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
744b2e45 581 printf ("Copyright (C) 1997 Free Software Foundation, Inc.\n");
b455c665
RS
582 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
583 printf ("You may redistribute copies of Emacs\n");
584 printf ("under the terms of the GNU General Public License.\n");
585 printf ("For more information about these matters, ");
586 printf ("see the files named COPYING.\n");
1702afef
RS
587 exit (0);
588 }
589 }
590
f927c5ae
JB
591/* Map in shared memory, if we are using that. */
592#ifdef HAVE_SHM
df6530f8 593 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
f927c5ae
JB
594 {
595 map_in_data (0);
596 /* The shared memory was just restored, which clobbered this. */
597 skip_args = 1;
598 }
599 else
600 {
601 map_in_data (1);
602 /* The shared memory was just restored, which clobbered this. */
603 skip_args = 0;
604 }
605#endif
606
19a36ec6 607#ifdef NeXT
b9df9faa
KH
608 {
609 extern int malloc_cookie;
610 /* This helps out unexnext.c. */
611 if (initialized)
612 if (malloc_jumpstart (malloc_cookie) != 0)
613 printf ("malloc jumpstart failed!\n");
614 }
19a36ec6
RS
615#endif /* NeXT */
616
f927c5ae
JB
617#ifdef VMS
618 /* If -map specified, map the data file in */
e2925360
KH
619 {
620 char *file;
df6530f8 621 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
e2925360
KH
622 mapin_data (file);
623 }
f927c5ae
JB
624
625#ifdef LINK_CRTL_SHARE
34035df3 626#ifdef SHARABLE_LIB_BUG
f927c5ae
JB
627 /* Bletcherous shared libraries! */
628 if (!stdin)
629 stdin = fdopen (0, "r");
630 if (!stdout)
631 stdout = fdopen (1, "w");
632 if (!stderr)
633 stderr = fdopen (2, "w");
634 if (!environ)
635 environ = envp;
34035df3 636#endif /* SHARABLE_LIB_BUG */
f927c5ae
JB
637#endif /* LINK_CRTL_SHARE */
638#endif /* VMS */
639
ea2acec5 640#if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
6c2935e9
RS
641 /* Extend the stack space available.
642 Don't do that if dumping, since some systems (e.g. DJGPP)
643 might define a smaller stack limit at that time. */
644 if (1
645#ifndef CANNOT_DUMP
646 && (!noninteractive || initialized)
647#endif
648 && !getrlimit (RLIMIT_STACK, &rlim))
53c58b5d 649 {
509a8fcd 650 long newlim;
6c2935e9 651 extern int re_max_failures;
03effc23
KH
652 /* Approximate the amount regex.c needs per unit of re_max_failures. */
653 int ratio = 20 * sizeof (char *);
654 /* Then add 33% to cover the size of the smaller stacks that regex.c
655 successively allocates and discards, on its way to the maximum. */
656 ratio += ratio / 3;
657 /* Add in some extra to cover
658 what we're likely to use for other reasons. */
659 newlim = re_max_failures * ratio + 200000;
d0381a7f
RS
660#ifdef __NetBSD__
661 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
662 stack allocation routine for new process that the allocation
663 fails if stack limit is not on page boundary. So, round up the
664 new limit to page boundary. */
665 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
666#endif
509a8fcd 667 if (newlim > rlim.rlim_max)
6c2935e9
RS
668 {
669 newlim = rlim.rlim_max;
03effc23
KH
670 /* Don't let regex.c overflow the stack we have. */
671 re_max_failures = (newlim - 200000) / ratio;
6c2935e9 672 }
509a8fcd
RS
673 if (rlim.rlim_cur < newlim)
674 rlim.rlim_cur = newlim;
675
53c58b5d
RS
676 setrlimit (RLIMIT_STACK, &rlim);
677 }
ea2acec5 678#endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
53c58b5d 679
f927c5ae
JB
680 /* Record (approximately) where the stack begins. */
681 stack_bottom = &stack_bottom_variable;
682
f927c5ae
JB
683#ifdef USG_SHARED_LIBRARIES
684 if (bss_end)
1d233b80 685 brk ((void *)bss_end);
f927c5ae
JB
686#endif
687
688 clearerr (stdin);
9ae8f997 689
f927c5ae
JB
690#ifndef SYSTEM_MALLOC
691 if (! initialized)
9ac0d9e0
JB
692 {
693 /* Arrange to get warning messages as memory fills up. */
694 memory_warnings (0, malloc_warning);
695
696 /* Arrange to disable interrupt input while malloc and friends are
697 running. */
698 uninterrupt_malloc ();
699 }
f927c5ae
JB
700#endif /* not SYSTEM_MALLOC */
701
29b89fe0
RS
702#ifdef MSDOS
703 /* We do all file input/output as binary files. When we need to translate
704 newlines, we do that manually. */
705 _fmode = O_BINARY;
18198bb2
RS
706
707#if __DJGPP__ >= 2
708 if (!isatty (fileno (stdin)))
709 setmode (fileno (stdin), O_BINARY);
710 if (!isatty (fileno (stdout)))
711 {
712 fflush (stdout);
713 setmode (fileno (stdout), O_BINARY);
714 }
715#else /* not __DJGPP__ >= 2 */
29b89fe0
RS
716 (stdin)->_flag &= ~_IOTEXT;
717 (stdout)->_flag &= ~_IOTEXT;
718 (stderr)->_flag &= ~_IOTEXT;
18198bb2 719#endif /* not __DJGPP__ >= 2 */
29b89fe0
RS
720#endif /* MSDOS */
721
a422068f 722#ifdef SET_EMACS_PRIORITY
3005da00 723 if (emacs_priority)
5aa7f46a 724 nice (emacs_priority);
f927c5ae 725 setuid (getuid ());
a422068f 726#endif /* SET_EMACS_PRIORITY */
f927c5ae 727
d8b3a65d 728#ifdef EXTRA_INITIALIZE
a9260219 729 EXTRA_INITIALIZE;
d8b3a65d
RS
730#endif
731
f927c5ae
JB
732 inhibit_window_system = 0;
733
0b9f07b9
RS
734 /* --unibyte requests that we set up to do everything with single-byte
735 buffers and strings. We need to handle this before calling
736 init_lread, init_editfns and other places that generate Lisp strings
737 from text in the environment. */
738 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args))
739 {
740 Lisp_Object symbol;
741 symbol = intern ("default-enable-multibyte-characters");
742 Fset (symbol, Qnil);
743 Fset_default (symbol, Qnil);
744 }
745
4fc0b45b 746 /* Handle the -t switch, which specifies filename to use as terminal */
e2925360
KH
747 {
748 char *term;
df6530f8 749 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
e2925360
KH
750 {
751 int result;
752 close (0);
753 close (1);
754 result = open (term, O_RDWR, 2 );
755 if (result < 0)
756 {
757 char *errstring = strerror (errno);
758 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
759 exit (1);
760 }
761 dup (0);
762 if (! isatty (0))
763 {
764 fprintf (stderr, "emacs: %s: not a tty\n", term);
765 exit (1);
766 }
767 fprintf (stderr, "Using %s\n", term);
8ba50e1a 768#ifdef HAVE_WINDOW_SYSTEM
e2925360 769 inhibit_window_system = 1; /* -t => -nw */
f927c5ae 770#endif
e2925360
KH
771 }
772 }
df6530f8 773 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
e2925360 774 inhibit_window_system = 1;
f927c5ae 775
e2925360 776 /* Handle the -batch switch, which means don't do interactive display. */
f927c5ae 777 noninteractive = 0;
df6530f8 778 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
e2925360
KH
779 noninteractive = 1;
780
781 /* Handle the --help option, which gives a usage message.. */
df6530f8 782 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
f927c5ae 783 {
e2925360
KH
784 printf ("\
785Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
786 [-q] [--no-init-file] [-u user] [--user user] [--debug-init]\n\
afaa660f 787 [--version] [--no-site-file]\n\
e2925360 788 [-f func] [--funcall func] [-l file] [--load file] [--insert file]\n\
f822bec6
RS
789 [+linenum] file-to-visit [--kill]\n\
790Report bugs to bug-gnu-emacs@prep.ai.mit.edu. First, please see\n\
8a7a3407 791the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
e2925360 792 exit (0);
f927c5ae
JB
793 }
794
081bef73
RS
795#ifdef HAVE_X_WINDOWS
796 /* Stupid kludge to catch command-line display spec. We can't
797 handle this argument entirely in window system dependent code
798 because we don't even know which window system dependent code
799 to run until we've recognized this argument. */
800 {
98ea0308 801 char *displayname = 0;
081bef73
RS
802 int i;
803 int count_before = skip_args;
804
df6530f8 805 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
081bef73 806 display_arg = 1;
df6530f8 807 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
081bef73
RS
808 display_arg = 1;
809
810 /* If we have the form --display=NAME,
811 convert it into -d name.
812 This requires inserting a new element into argv. */
813 if (displayname != 0 && skip_args - count_before == 1)
814 {
815 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
816 int j;
817
818 for (j = 0; j < count_before + 1; j++)
819 new[j] = argv[j];
820 new[count_before + 1] = "-d";
821 new[count_before + 2] = displayname;
822 for (j = count_before + 2; j <argc; j++)
823 new[j + 1] = argv[j];
824 argv = new;
825 argc++;
826 }
1702afef
RS
827 /* Change --display to -d, when its arg is separate. */
828 else if (displayname != 0 && skip_args > count_before
829 && argv[count_before + 1][1] == '-')
813f79d5 830 argv[count_before + 1] = "-d";
081bef73
RS
831
832 /* Don't actually discard this arg. */
833 skip_args = count_before;
834 }
835#endif
836
edb85f59
RS
837 if (! noninteractive)
838 {
839#ifdef BSD_PGRPS
840 if (initialized)
841 {
842 inherited_pgroup = EMACS_GETPGRP (0);
843 setpgrp (0, getpid ());
844 }
845#else
846#if defined (USG5) && defined (INTERRUPT_INPUT)
847 setpgrp ();
848#endif
849#endif
850 }
851
fb8e9847
JB
852#ifdef POSIX_SIGNALS
853 init_signals ();
854#endif
855
1efa2983
KH
856 /* Don't catch SIGHUP if dumping. */
857 if (1
858#ifndef CANNOT_DUMP
859 && initialized
860#endif
861 )
862 {
57e3d22a 863 sigblock (sigmask (SIGHUP));
1efa2983
KH
864 /* In --batch mode, don't catch SIGHUP if already ignored.
865 That makes nohup work. */
866 if (! noninteractive
867 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
868 signal (SIGHUP, fatal_error_signal);
57e3d22a 869 sigunblock (sigmask (SIGHUP));
1efa2983
KH
870 }
871
f927c5ae
JB
872 if (
873#ifndef CANNOT_DUMP
874 ! noninteractive || initialized
875#else
876 1
877#endif
878 )
879 {
1efa2983 880 /* Don't catch these signals in batch mode if dumping.
f927c5ae
JB
881 On some machines, this sets static data that would make
882 signal fail to work right when the dumped Emacs is run. */
f927c5ae
JB
883 signal (SIGQUIT, fatal_error_signal);
884 signal (SIGILL, fatal_error_signal);
885 signal (SIGTRAP, fatal_error_signal);
7317d9e8
RS
886#ifdef SIGUSR1
887 signal (SIGUSR1, handle_USR1_signal);
888#ifdef SIGUSR2
889 signal (SIGUSR2, handle_USR2_signal);
890#endif
891#endif
99e372cd
RS
892#ifdef SIGABRT
893 signal (SIGABRT, fatal_error_signal);
894#endif
895#ifdef SIGHWE
896 signal (SIGHWE, fatal_error_signal);
897#endif
898#ifdef SIGPRE
899 signal (SIGPRE, fatal_error_signal);
900#endif
901#ifdef SIGORE
902 signal (SIGORE, fatal_error_signal);
903#endif
904#ifdef SIGUME
905 signal (SIGUME, fatal_error_signal);
906#endif
907#ifdef SIGDLK
908 signal (SIGDLK, fatal_error_signal);
909#endif
910#ifdef SIGCPULIM
911 signal (SIGCPULIM, fatal_error_signal);
912#endif
a90538cb
JB
913#ifdef SIGIOT
914 /* This is missing on some systems - OS/2, for example. */
f927c5ae 915 signal (SIGIOT, fatal_error_signal);
a90538cb 916#endif
f927c5ae
JB
917#ifdef SIGEMT
918 signal (SIGEMT, fatal_error_signal);
919#endif
920 signal (SIGFPE, fatal_error_signal);
00eaaa32 921#ifdef SIGBUS
f927c5ae 922 signal (SIGBUS, fatal_error_signal);
00eaaa32 923#endif
f927c5ae 924 signal (SIGSEGV, fatal_error_signal);
00eaaa32 925#ifdef SIGSYS
f927c5ae 926 signal (SIGSYS, fatal_error_signal);
00eaaa32 927#endif
f927c5ae
JB
928 signal (SIGTERM, fatal_error_signal);
929#ifdef SIGXCPU
930 signal (SIGXCPU, fatal_error_signal);
931#endif
932#ifdef SIGXFSZ
933 signal (SIGXFSZ, fatal_error_signal);
934#endif /* SIGXFSZ */
935
271c7b7c
RS
936#ifdef SIGDANGER
937 /* This just means available memory is getting low. */
938 signal (SIGDANGER, memory_warning_signal);
939#endif
940
f927c5ae 941#ifdef AIX
56e034fa
RS
942/* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
943 signal (SIGXCPU, fatal_error_signal);
0aef8561 944#ifndef _I386
f927c5ae 945 signal (SIGIOINT, fatal_error_signal);
0aef8561 946#endif
f927c5ae
JB
947 signal (SIGGRANT, fatal_error_signal);
948 signal (SIGRETRACT, fatal_error_signal);
949 signal (SIGSOUND, fatal_error_signal);
950 signal (SIGMSG, fatal_error_signal);
951#endif /* AIX */
952 }
953
954 noninteractive1 = noninteractive;
955
956/* Perform basic initializations (not merely interning symbols) */
957
958 if (!initialized)
959 {
960 init_alloc_once ();
961 init_obarray ();
962 init_eval_once ();
270ce821
KH
963 init_charset_once ();
964 init_coding_once ();
f927c5ae 965 init_syntax_once (); /* Create standard syntax table. */
270ce821 966 init_category_once (); /* Create standard category table. */
f927c5ae
JB
967 /* Must be done before init_buffer */
968 init_casetab_once ();
969 init_buffer_once (); /* Create buffer table and some buffers */
970 init_minibuf_once (); /* Create list of minibuffers */
971 /* Must precede init_window_once */
972 init_window_once (); /* Init the window system */
973 }
974
975 init_alloc ();
f927c5ae
JB
976 init_eval ();
977 init_data ();
7074fde6 978 running_asynch_code = 0;
0e956009 979
29b89fe0
RS
980#ifdef MSDOS
981 /* Call early 'cause init_environment needs it. */
982 init_dosfns ();
983 /* Set defaults for several environment variables. */
18198bb2
RS
984 if (initialized)
985 init_environment (argc, argv, skip_args);
986 else
d1fc6752 987 tzset ();
18198bb2 988#endif /* MSDOS */
29b89fe0 989
8ba50e1a
GV
990#ifdef WINDOWSNT
991 /* Initialize environment from registry settings. */
992 init_environment ();
41f339d4 993 init_ntproc (); /* must precede init_editfns */
8ba50e1a
GV
994#endif
995
0e956009
JB
996 /* egetenv is a pretty low-level facility, which may get called in
997 many circumstances; it seems flimsy to put off initializing it
998 until calling init_callproc. */
999 set_process_environment ();
93aed04d
RS
1000 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1001 if this is not done. Do it after set_process_environment so that we
1002 don't pollute Vprocess_environment. */
1003#ifdef AIX
1004 putenv ("LANG=C");
1005#endif
0e956009 1006
ace40a69
RS
1007 init_buffer (); /* Init default directory of main buffer */
1008
7928f0b5 1009 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
ace40a69 1010 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
380e25b8
RS
1011
1012 if (initialized)
1013 {
1014 /* Erase any pre-dump messages in the message log, to avoid confusion */
1015 Lisp_Object old_log_max;
1016 old_log_max = Vmessage_log_max;
1017 XSETFASTINT (Vmessage_log_max, 0);
f6fe7bb5 1018 message_dolog ("", 0, 1, 0);
380e25b8
RS
1019 Vmessage_log_max = old_log_max;
1020 }
1021
7928f0b5 1022 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
fb8e9847 1023 init_lread ();
f927c5ae 1024
f927c5ae
JB
1025 if (!noninteractive)
1026 {
1027#ifdef VMS
1cbd5d9d 1028 init_vms_input ();/* init_display calls get_frame_size, that needs this */
f927c5ae
JB
1029#endif /* VMS */
1030 init_display (); /* Determine terminal type. init_sys_modes uses results */
1031 }
1032 init_keyboard (); /* This too must precede init_sys_modes */
f927c5ae
JB
1033#ifdef VMS
1034 init_vmsproc (); /* And this too. */
1035#endif /* VMS */
1036 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
1037 init_xdisp ();
1038 init_macros ();
1039 init_editfns ();
1040#ifdef LISP_FLOAT_TYPE
1041 init_floatfns ();
1042#endif
1043#ifdef VMS
1044 init_vmsfns ();
1045#endif /* VMS */
f927c5ae 1046 init_process ();
f927c5ae
JB
1047
1048/* Intern the names of all standard functions and variables; define standard keys */
1049
1050 if (!initialized)
1051 {
1052 /* The basic levels of Lisp must come first */
1053 /* And data must come first of all
1054 for the sake of symbols like error-message */
1055 syms_of_data ();
1056 syms_of_alloc ();
fb8e9847 1057 syms_of_lread ();
f927c5ae
JB
1058 syms_of_print ();
1059 syms_of_eval ();
1060 syms_of_fns ();
f927c5ae 1061 syms_of_floatfns ();
f927c5ae
JB
1062
1063 syms_of_abbrev ();
1064 syms_of_buffer ();
1065 syms_of_bytecode ();
1066 syms_of_callint ();
1067 syms_of_casefiddle ();
1068 syms_of_casetab ();
1069 syms_of_callproc ();
270ce821
KH
1070 syms_of_category ();
1071 syms_of_ccl ();
1072 syms_of_charset ();
f927c5ae
JB
1073 syms_of_cmds ();
1074#ifndef NO_DIR_LIBRARY
1075 syms_of_dired ();
1076#endif /* not NO_DIR_LIBRARY */
1077 syms_of_display ();
1078 syms_of_doc ();
1079 syms_of_editfns ();
1080 syms_of_emacs ();
1081 syms_of_fileio ();
270ce821 1082 syms_of_coding (); /* This should be after syms_of_fileio. */
f927c5ae
JB
1083#ifdef CLASH_DETECTION
1084 syms_of_filelock ();
1085#endif /* CLASH_DETECTION */
1086 syms_of_indent ();
c2c5ed2c 1087 syms_of_insdel ();
f927c5ae
JB
1088 syms_of_keyboard ();
1089 syms_of_keymap ();
1090 syms_of_macros ();
1091 syms_of_marker ();
1092 syms_of_minibuf ();
1093 syms_of_mocklisp ();
f927c5ae 1094 syms_of_process ();
f927c5ae 1095 syms_of_search ();
1cbd5d9d 1096 syms_of_frame ();
f927c5ae 1097 syms_of_syntax ();
0d934e7b 1098 syms_of_term ();
f927c5ae 1099 syms_of_undo ();
bef79ee4
JA
1100
1101 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
1102 syms_of_textprop ();
f927c5ae
JB
1103#ifdef VMS
1104 syms_of_vmsproc ();
1105#endif /* VMS */
05687c54
RS
1106#ifdef WINDOWSNT
1107 syms_of_ntproc ();
1108#endif /* WINDOWSNT */
f927c5ae
JB
1109 syms_of_window ();
1110 syms_of_xdisp ();
1111#ifdef HAVE_X_WINDOWS
72412588 1112 syms_of_xterm ();
f927c5ae 1113 syms_of_xfns ();
270ce821 1114 syms_of_fontset ();
72412588
JB
1115#ifdef HAVE_X11
1116 syms_of_xselect ();
1117#endif
f927c5ae
JB
1118#endif /* HAVE_X_WINDOWS */
1119
1e9c210b 1120#ifndef HAVE_NTGUI
dcdcce1a 1121 syms_of_xfaces ();
6c850f3c 1122 syms_of_xmenu ();
1e9c210b 1123#endif
6c850f3c 1124
8ba50e1a 1125#ifdef HAVE_NTGUI
fbd6baed
GV
1126 syms_of_w32term ();
1127 syms_of_w32fns ();
1128 syms_of_w32faces ();
1129 syms_of_w32select ();
1130 syms_of_w32menu ();
8ba50e1a
GV
1131#endif /* HAVE_NTGUI */
1132
f927c5ae
JB
1133#ifdef SYMS_SYSTEM
1134 SYMS_SYSTEM;
1135#endif
1136
1137#ifdef SYMS_MACHINE
1138 SYMS_MACHINE;
1139#endif
1140
1141 keys_of_casefiddle ();
1142 keys_of_cmds ();
1143 keys_of_buffer ();
1144 keys_of_keyboard ();
1145 keys_of_keymap ();
1146 keys_of_macros ();
1147 keys_of_minibuf ();
1148 keys_of_window ();
5e67fbc2 1149 keys_of_frame ();
f927c5ae
JB
1150 }
1151
1152 if (!initialized)
1153 {
e2925360 1154 char *file;
f927c5ae 1155 /* Handle -l loadup-and-dump, args passed by Makefile. */
df6530f8 1156 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
f927c5ae 1157 Vtop_level = Fcons (intern ("load"),
e2925360 1158 Fcons (build_string (file), Qnil));
f927c5ae
JB
1159#ifdef CANNOT_DUMP
1160 /* Unless next switch is -nl, load "loadup.el" first thing. */
df6530f8 1161 if (!argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args))
f927c5ae
JB
1162 Vtop_level = Fcons (intern ("load"),
1163 Fcons (build_string ("loadup.el"), Qnil));
1164#endif /* CANNOT_DUMP */
1165 }
1166
93572b43
KH
1167 if (initialized)
1168 {
0269dedb
RS
1169#ifdef HAVE_TZSET
1170 {
1171 /* If the execution TZ happens to be the same as the dump TZ,
1172 change it to some other value and then change it back,
1173 to force the underlying implementation to reload the TZ info.
1174 This is needed on implementations that load TZ info from files,
1175 since the TZ file contents may differ between dump and execution. */
1176 char *tz = getenv ("TZ");
1177 if (tz && !strcmp (tz, dump_tz))
1178 {
1179 ++*tz;
1180 tzset ();
1181 --*tz;
1182 }
1183 }
1184#endif
93572b43
KH
1185 }
1186
e610ea43
RS
1187 /* Gerd Moellmann <gerd@acm.org> says this makes profiling work on
1188 FreeBSD. It might work on some other systems too.
1189 Give it a try and tell me if it works on your system. */
1190#ifdef __FreeBSD__
1191#ifdef PROFILING
1192 if (initialized)
1193 {
1194 extern void _mcleanup ();
1195 extern char etext;
b063fa35 1196 extern Lisp_Object Fredraw_frame ();
e610ea43 1197 atexit (_mcleanup);
8b64df46
RS
1198 /* This uses Fredraw_frame because that function
1199 comes first in the Emacs executable.
1200 It might be better to use something that gives
1201 the start of the text segment, but start_of_text
1202 is not defined on all systems now. */
b063fa35 1203 monstartup (Fredraw_frame, &etext);
e610ea43
RS
1204 }
1205 else
1206 moncontrol (0);
1207#endif
1208#endif
1209
f927c5ae
JB
1210 initialized = 1;
1211
e7536cff
RS
1212#ifdef LOCALTIME_CACHE
1213 /* Some versions of localtime have a bug. They cache the value of the time
279cc2b8
JB
1214 zone rather than looking it up every time. Since localtime() is
1215 called to bolt the undumping time into the undumped emacs, this
afe9fae9
RS
1216 results in localtime ignoring the TZ environment variable.
1217 This flushes the new TZ value into localtime. */
1218 tzset ();
e7536cff 1219#endif /* defined (LOCALTIME_CACHE) */
279cc2b8 1220
f927c5ae
JB
1221 /* Enter editor command loop. This never returns. */
1222 Frecursive_edit ();
1223 /* NOTREACHED */
1224}
1225\f
081bef73
RS
1226/* Sort the args so we can find the most important ones
1227 at the beginning of argv. */
1228
1229/* First, here's a table of all the standard options. */
1230
1231struct standard_args
1232{
1233 char *name;
1234 char *longname;
1235 int priority;
1236 int nargs;
1237};
1238
1239struct standard_args standard_args[] =
1240{
221cbd7d
RS
1241 { "-version", "--version", 110, 0 },
1242 { "-help", "--help", 110, 0 },
081bef73 1243 { "-nl", "--no-shared-memory", 100, 0 },
2725719a 1244#ifdef VMS
081bef73 1245 { "-map", "--map-data", 100, 0 },
2725719a 1246#endif
0b9f07b9 1247 { "-unibyte", "--unibyte", 95, 0 },
081bef73
RS
1248 { "-t", "--terminal", 90, 1 },
1249 { "-d", "--display", 80, 1 },
1250 { "-display", 0, 80, 1 },
1251 { "-nw", "--no-windows", 70, 0 },
1252 { "-batch", "--batch", 60, 0 },
1253 { "-q", "--no-init-file", 50, 0 },
1254 { "-no-init-file", 0, 50, 0 },
1255 { "-no-site-file", "--no-site-file", 40, 0 },
1256 { "-u", "--user", 30, 1 },
1257 { "-user", 0, 30, 1 },
1258 { "-debug-init", "--debug-init", 20, 0 },
adab4483
KH
1259 { "-i", "--icon-type", 15, 0 },
1260 { "-itype", 0, 15, 0 },
f2bc3538 1261 { "-iconic", "--iconic", 15, 0 },
081bef73
RS
1262 { "-bg", "--background-color", 10, 1 },
1263 { "-background", 0, 10, 1 },
1264 { "-fg", "--foreground-color", 10, 1 },
1265 { "-foreground", 0, 10, 1 },
1266 { "-bd", "--border-color", 10, 1 },
1267 { "-bw", "--border-width", 10, 1 },
1268 { "-ib", "--internal-border", 10, 1 },
1269 { "-ms", "--mouse-color", 10, 1 },
1270 { "-cr", "--cursor-color", 10, 1 },
1271 { "-fn", "--font", 10, 1 },
1272 { "-font", 0, 10, 1 },
1273 { "-g", "--geometry", 10, 1 },
1274 { "-geometry", 0, 10, 1 },
1275 { "-T", "--title", 10, 1 },
ae63ae52 1276 { "-title", 0, 10, 1 },
081bef73
RS
1277 { "-name", "--name", 10, 1 },
1278 { "-xrm", "--xrm", 10, 1 },
fcdeb5d9
RS
1279 { "-r", "--reverse-video", 5, 0 },
1280 { "-rv", 0, 5, 0 },
1281 { "-reverse", 0, 5, 0 },
ae63ae52 1282 { "-hb", "--horizontal-scroll-bars", 5, 0 },
fcdeb5d9 1283 { "-vb", "--vertical-scroll-bars", 5, 0 },
fcdeb5d9
RS
1284 /* These have the same priority as ordinary file name args,
1285 so they are not reordered with respect to those. */
4af9e0b3
RS
1286 { "-L", "--directory", 0, 1 },
1287 { "-directory", 0, 0, 1 },
fcdeb5d9
RS
1288 { "-l", "--load", 0, 1 },
1289 { "-load", 0, 0, 1 },
1290 { "-f", "--funcall", 0, 1 },
1291 { "-funcall", 0, 0, 1 },
575985b1 1292 { "-eval", "--eval", 0, 1 },
2e13f8e9
RS
1293 { "-find-file", "--find-file", 0, 1 },
1294 { "-visit", "--visit", 0, 1 },
fcdeb5d9 1295 { "-insert", "--insert", 0, 1 },
f2bc3538 1296 /* This should be processed after ordinary file name args and the like. */
fcdeb5d9 1297 { "-kill", "--kill", -10, 0 },
081bef73
RS
1298};
1299
1300/* Reorder the elements of ARGV (assumed to have ARGC elements)
1301 so that the highest priority ones come first.
1302 Do not change the order of elements of equal priority.
1303 If an option takes an argument, keep it and its argument together. */
1304
1305static void
1306sort_args (argc, argv)
1307 int argc;
1308 char **argv;
1309{
1310 char **new = (char **) xmalloc (sizeof (char *) * argc);
1311 /* For each element of argv,
1312 the corresponding element of options is:
1313 0 for an option that takes no arguments,
1314 1 for an option that takes one argument, etc.
1315 -1 for an ordinary non-option argument. */
6dad9359 1316 int *options = (int *) xmalloc (sizeof (int) * argc);
081bef73
RS
1317 int *priority = (int *) xmalloc (sizeof (int) * argc);
1318 int to = 1;
1319 int from;
1320 int i;
c96f26f4 1321 int end_of_options = argc;
081bef73
RS
1322
1323 /* Categorize all the options,
1324 and figure out which argv elts are option arguments. */
1325 for (from = 1; from < argc; from++)
1326 {
1327 options[from] = -1;
fcdeb5d9 1328 priority[from] = 0;
081bef73
RS
1329 if (argv[from][0] == '-')
1330 {
1331 int match, thislen;
1332 char *equals;
1333
c96f26f4
RS
1334 /* If we have found "--", don't consider
1335 any more arguments as options. */
249443b6 1336 if (argv[from][1] == '-' && argv[from][2] == 0)
c96f26f4
RS
1337 {
1338 /* Leave the "--", and everything following it, at the end. */
1339 for (; from < argc; from++)
1340 {
1341 priority[from] = -100;
1342 options[from] = -1;
1343 }
1344 break;
1345 }
1346
081bef73
RS
1347 /* Look for a match with a known old-fashioned option. */
1348 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1349 if (!strcmp (argv[from], standard_args[i].name))
1350 {
1351 options[from] = standard_args[i].nargs;
1352 priority[from] = standard_args[i].priority;
fd76ec52
RS
1353 if (from + standard_args[i].nargs >= argc)
1354 fatal ("Option `%s' requires an argument\n", argv[from]);
081bef73
RS
1355 from += standard_args[i].nargs;
1356 goto done;
1357 }
1358
1359 /* Look for a match with a known long option.
1360 MATCH is -1 if no match so far, -2 if two or more matches so far,
1361 >= 0 (the table index of the match) if just one match so far. */
1362 if (argv[from][1] == '-')
1363 {
1364 match = -1;
1365 thislen = strlen (argv[from]);
1366 equals = index (argv[from], '=');
1367 if (equals != 0)
1368 thislen = equals - argv[from];
1369
f609ef57
KH
1370 for (i = 0;
1371 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1372 if (standard_args[i].longname
1373 && !strncmp (argv[from], standard_args[i].longname,
1374 thislen))
081bef73
RS
1375 {
1376 if (match == -1)
1377 match = i;
1378 else
1379 match = -2;
1380 }
1381
1382 /* If we found exactly one match, use that. */
1383 if (match >= 0)
1384 {
1385 options[from] = standard_args[match].nargs;
1386 priority[from] = standard_args[match].priority;
1387 /* If --OPTION=VALUE syntax is used,
1388 this option uses just one argv element. */
1389 if (equals != 0)
1390 options[from] = 0;
fd76ec52
RS
1391 if (from + options[from] >= argc)
1392 fatal ("Option `%s' requires an argument\n", argv[from]);
081bef73
RS
1393 from += options[from];
1394 }
1395 }
1396 done: ;
1397 }
1398 }
1399
1400 /* Copy the arguments, in order of decreasing priority, to NEW. */
1401 new[0] = argv[0];
1402 while (to < argc)
1403 {
1404 int best = -1;
2c70c992 1405 int best_priority = -9999;
081bef73
RS
1406
1407 /* Find the highest priority remaining option.
1408 If several have equal priority, take the first of them. */
1409 for (from = 1; from < argc; from++)
1410 {
1411 if (argv[from] != 0 && priority[from] > best_priority)
1412 {
1413 best_priority = priority[from];
1414 best = from;
1415 }
1416 /* Skip option arguments--they are tied to the options. */
1417 if (options[from] > 0)
1418 from += options[from];
1419 }
1420
1421 if (best < 0)
1422 abort ();
1423
1424 /* Copy the highest priority remaining option, with its args, to NEW. */
1425 new[to++] = argv[best];
1426 for (i = 0; i < options[best]; i++)
1427 new[to++] = argv[best + i + 1];
1428
1429 /* Clear out this option in ARGV. */
1430 argv[best] = 0;
1431 for (i = 0; i < options[best]; i++)
1432 argv[best + i + 1] = 0;
1433 }
1434
6dad9359 1435 bcopy (new, argv, sizeof (char *) * argc);
0bf591da
RS
1436
1437 free (options);
1438 free (new);
1439 free (priority);
081bef73
RS
1440}
1441\f
f927c5ae 1442DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
edc8ae07 1443 "Exit the Emacs job and kill it.\n\
f927c5ae
JB
1444If ARG is an integer, return ARG as the exit program code.\n\
1445If ARG is a string, stuff it as keyboard input.\n\n\
1446The value of `kill-emacs-hook', if not void,\n\
1447is a list of functions (of no args),\n\
1448all of which are called before Emacs is actually killed.")
1449 (arg)
1450 Lisp_Object arg;
1451{
1452 Lisp_Object hook, hook1;
1453 int i;
1454 struct gcpro gcpro1;
1455
1456 GCPRO1 (arg);
1457
1458 if (feof (stdin))
1459 arg = Qt;
1460
2447c626 1461 if (!NILP (Vrun_hooks) && !noninteractive)
f927c5ae
JB
1462 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1463
f927c5ae
JB
1464 UNGCPRO;
1465
1466/* Is it really necessary to do this deassign
1467 when we are going to exit anyway? */
1468/* #ifdef VMS
1469 stop_vms_input ();
1470 #endif */
40be253a 1471
d0068e25 1472 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
40be253a 1473
58545838
KH
1474 /* If we have an auto-save list file,
1475 kill it because we are exiting Emacs deliberately (not crashing).
1476 Do it after shut_down_emacs, which does an auto-save. */
1477 if (STRINGP (Vauto_save_list_file_name))
1478 unlink (XSTRING (Vauto_save_list_file_name)->data);
1479
55ccc0b3 1480 exit (INTEGERP (arg) ? XINT (arg)
f927c5ae
JB
1481#ifdef VMS
1482 : 1
1483#else
1484 : 0
1485#endif
1486 );
1487 /* NOTREACHED */
1488}
40be253a
JB
1489
1490
1491/* Perform an orderly shutdown of Emacs. Autosave any modified
1492 buffers, kill any child processes, clean up the terminal modes (if
1493 we're in the foreground), and other stuff like that. Don't perform
1494 any redisplay; this may be called when Emacs is shutting down in
1495 the background, or after its X connection has died.
1496
1497 If SIG is a signal number, print a message for it.
1498
1499 This is called by fatal signal handlers, X protocol error handlers,
1500 and Fkill_emacs. */
f7ab4e3d 1501
40be253a 1502void
f7ab4e3d 1503shut_down_emacs (sig, no_x, stuff)
41423a80 1504 int sig, no_x;
f7ab4e3d 1505 Lisp_Object stuff;
40be253a 1506{
829d872b
RS
1507 /* Prevent running of hooks from now on. */
1508 Vrun_hooks = Qnil;
1509
40be253a
JB
1510 /* If we are controlling the terminal, reset terminal modes */
1511#ifdef EMACS_HAVE_TTY_PGRP
1512 {
d04d81d2
RS
1513 int pgrp = EMACS_GETPGRP (0);
1514
40be253a
JB
1515 int tpgrp;
1516 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
5a570e37 1517 && tpgrp == pgrp)
40be253a
JB
1518 {
1519 fflush (stdout);
1520 reset_sys_modes ();
1521 if (sig && sig != SIGTERM)
1522 fprintf (stderr, "Fatal error (%d).", sig);
1523 }
1524 }
1525#else
1526 fflush (stdout);
1527 reset_sys_modes ();
1528#endif
1529
f7ab4e3d
RS
1530 stuff_buffered_input (stuff);
1531
40be253a
JB
1532 kill_buffer_processes (Qnil);
1533 Fdo_auto_save (Qt, Qnil);
1534
1535#ifdef CLASH_DETECTION
1536 unlock_all_files ();
1537#endif
1538
1539#ifdef VMS
1540 kill_vms_processes ();
1541#endif
1542
5e7f8733 1543#if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
41423a80 1544#ifdef HAVE_X_WINDOWS
f7511647
RS
1545 /* It's not safe to call intern here. Maybe we are crashing. */
1546 if (!noninteractive && SYMBOLP (Vwindow_system)
1547 && XSYMBOL (Vwindow_system)->name->size == 1
1548 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1549 && ! no_x)
41423a80
RS
1550 Fx_close_current_connection ();
1551#endif /* HAVE_X_WINDOWS */
5e7f8733 1552#endif
41423a80 1553
40be253a
JB
1554#ifdef SIGIO
1555 /* There is a tendency for a SIGIO signal to arrive within exit,
1556 and cause a SIGHUP because the input descriptor is already closed. */
1557 unrequest_sigio ();
1558 signal (SIGIO, SIG_IGN);
1559#endif
41f339d4
RS
1560
1561#ifdef WINDOWSNT
1562 term_ntproc ();
1563#endif
d546e578
EZ
1564
1565#ifdef MSDOS
1566 dos_cleanup ();
1567#endif
40be253a
JB
1568}
1569
1570
f927c5ae
JB
1571\f
1572#ifndef CANNOT_DUMP
f927c5ae
JB
1573
1574#ifdef HAVE_SHM
1575
1576DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1577 "Dump current state of Emacs into data file FILENAME.\n\
1578This function exists on systems that use HAVE_SHM.")
c9aae259
EN
1579 (filename)
1580 Lisp_Object filename;
f927c5ae 1581{
55697f5b 1582 extern char my_edata[];
f927c5ae 1583 Lisp_Object tem;
f927c5ae 1584
c9aae259
EN
1585 CHECK_STRING (filename, 0);
1586 filename = Fexpand_file_name (filename, Qnil);
f927c5ae
JB
1587
1588 tem = Vpurify_flag;
1589 Vpurify_flag = Qnil;
1590
1591 fflush (stdout);
1592 /* Tell malloc where start of impure now is */
1593 /* Also arrange for warnings when nearly out of space. */
1594#ifndef SYSTEM_MALLOC
1090a161 1595 memory_warnings (my_edata, malloc_warning);
f927c5ae 1596#endif
c9aae259 1597 map_out_data (XSTRING (filename)->data);
f927c5ae
JB
1598
1599 Vpurify_flag = tem;
1600
1601 return Qnil;
1602}
1603
1604#else /* not HAVE_SHM */
1605
1606DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1607 "Dump current state of Emacs into executable file FILENAME.\n\
1608Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1609This is used in the file `loadup.el' when building Emacs.\n\
1610\n\
87a98b1a 1611You must run Emacs in batch mode in order to dump it.")
c9aae259
EN
1612 (filename, symfile)
1613 Lisp_Object filename, symfile;
f927c5ae 1614{
55697f5b 1615 extern char my_edata[];
f927c5ae 1616 Lisp_Object tem;
1b7ddf4f
RS
1617 Lisp_Object symbol;
1618 int count = specpdl_ptr - specpdl;
f927c5ae 1619
87a98b1a
RS
1620 if (! noninteractive)
1621 error ("Dumping Emacs works only in batch mode");
1622
1b7ddf4f
RS
1623 /* Bind `command-line-processed' to nil before dumping,
1624 so that the dumped Emacs will process its command line
1625 and set up to work with X windows if appropriate. */
1626 symbol = intern ("command-line-process");
1627 specbind (symbol, Qnil);
1628
c9aae259
EN
1629 CHECK_STRING (filename, 0);
1630 filename = Fexpand_file_name (filename, Qnil);
1631 if (!NILP (symfile))
f927c5ae 1632 {
c9aae259
EN
1633 CHECK_STRING (symfile, 0);
1634 if (XSTRING (symfile)->size)
1635 symfile = Fexpand_file_name (symfile, Qnil);
f927c5ae
JB
1636 }
1637
1638 tem = Vpurify_flag;
1639 Vpurify_flag = Qnil;
1640
0269dedb
RS
1641#ifdef HAVE_TZSET
1642 set_time_zone_rule (dump_tz);
1643#ifndef LOCALTIME_CACHE
1644 /* Force a tz reload, since set_time_zone_rule doesn't. */
1645 tzset ();
1646#endif
1647#endif
1648
f927c5ae
JB
1649 fflush (stdout);
1650#ifdef VMS
c9aae259 1651 mapout_data (XSTRING (filename)->data);
f927c5ae
JB
1652#else
1653 /* Tell malloc where start of impure now is */
1654 /* Also arrange for warnings when nearly out of space. */
1655#ifndef SYSTEM_MALLOC
cc5f52cb
RS
1656#ifndef WINDOWSNT
1657 /* On Windows, this was done before dumping, and that once suffices.
1658 Meanwhile, my_edata is not valid on Windows. */
cb37cf78 1659 memory_warnings (my_edata, malloc_warning);
cc5f52cb 1660#endif /* not WINDOWSNT */
15aaf1b5
RS
1661#endif
1662#ifdef DOUG_LEA_MALLOC
1663 malloc_state_ptr = malloc_get_state ();
f927c5ae 1664#endif
c9aae259
EN
1665 unexec (XSTRING (filename)->data,
1666 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
15aaf1b5
RS
1667#ifdef DOUG_LEA_MALLOC
1668 free (malloc_state_ptr);
1669#endif
f927c5ae
JB
1670#endif /* not VMS */
1671
1672 Vpurify_flag = tem;
1673
1b7ddf4f 1674 return unbind_to (count, Qnil);
f927c5ae
JB
1675}
1676
1677#endif /* not HAVE_SHM */
1678
1679#endif /* not CANNOT_DUMP */
1680\f
4b163808 1681#ifndef SEPCHAR
f927c5ae
JB
1682#define SEPCHAR ':'
1683#endif
1684
1685Lisp_Object
1686decode_env_path (evarname, defalt)
1687 char *evarname, *defalt;
1688{
1689 register char *path, *p;
213d0b1f 1690 Lisp_Object lpath, element, tem;
f927c5ae 1691
2447c626
JB
1692 /* It's okay to use getenv here, because this function is only used
1693 to initialize variables when Emacs starts up, and isn't called
1694 after that. */
e065a56e
JB
1695 if (evarname != 0)
1696 path = (char *) getenv (evarname);
1697 else
1698 path = 0;
f927c5ae
JB
1699 if (!path)
1700 path = defalt;
6a30e6d6
RS
1701#ifdef DOS_NT
1702 /* Ensure values from the environment use the proper directory separator. */
1703 if (path)
1704 {
1705 p = alloca (strlen (path) + 1);
1706 strcpy (p, path);
1707 path = p;
1708
1709 if ('/' == DIRECTORY_SEP)
1710 dostounix_filename (path);
1711 else
1712 unixtodos_filename (path);
1713 }
1714#endif
f927c5ae
JB
1715 lpath = Qnil;
1716 while (1)
1717 {
1718 p = index (path, SEPCHAR);
1719 if (!p) p = path + strlen (path);
213d0b1f
RS
1720 element = (p - path ? make_string (path, p - path)
1721 : build_string ("."));
1722
1723 /* Add /: to the front of the name
1724 if it would otherwise be treated as magic. */
1725 tem = Ffind_file_name_handler (element, Qt);
1726 if (! NILP (tem))
1727 element = concat2 (build_string ("/:"), element);
1728
1729 lpath = Fcons (element, lpath);
f927c5ae
JB
1730 if (*p)
1731 path = p + 1;
1732 else
1733 break;
1734 }
1735 return Fnreverse (lpath);
1736}
1737
1738syms_of_emacs ()
1739{
213d0b1f
RS
1740 Qfile_name_handler_alist = intern ("file-name-handler-alist");
1741 staticpro (&Qfile_name_handler_alist);
1742
83591e66 1743#ifndef CANNOT_DUMP
f927c5ae
JB
1744#ifdef HAVE_SHM
1745 defsubr (&Sdump_emacs_data);
1746#else
1747 defsubr (&Sdump_emacs);
83591e66 1748#endif
f927c5ae
JB
1749#endif
1750
1751 defsubr (&Skill_emacs);
1752
59653951 1753 defsubr (&Sinvocation_name);
ace40a69 1754 defsubr (&Sinvocation_directory);
59653951 1755
f927c5ae
JB
1756 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
1757 "Args passed by shell to Emacs, as a list of strings.");
1758
1759 DEFVAR_LISP ("system-type", &Vsystem_type,
1760 "Value is symbol indicating type of operating system you are using.");
1761 Vsystem_type = intern (SYSTEM_TYPE);
1762
271c7b7c
RS
1763 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
1764 "Value is string indicating configuration Emacs was built for.");
f7511647 1765 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
271c7b7c 1766
f0fc0b1a
KH
1767 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
1768 "String containing the configuration options Emacs was built with.");
1769 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
1770
f927c5ae
JB
1771 DEFVAR_BOOL ("noninteractive", &noninteractive1,
1772 "Non-nil means Emacs is running without interactive terminal.");
e5d77022 1773
e5d77022 1774 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
edc8ae07
JB
1775 "Hook to be run whenever kill-emacs is called.\n\
1776Since kill-emacs may be invoked when the terminal is disconnected (or\n\
1777in other similar situations), functions placed on this hook should not\n\
9f232a5d
RS
1778expect to be able to interact with the user. To ask for confirmation,\n\
1779see `kill-emacs-query-functions' instead.");
edc8ae07 1780 Vkill_emacs_hook = Qnil;
3005da00 1781
7317d9e8
RS
1782#ifdef SIGUSR1
1783 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
1784 "Hook to be run whenever emacs recieves a USR1 signal");
1785 Vsignal_USR1_hook = Qnil;
1786#ifdef SIGUSR2
1787 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
1788 "Hook to be run whenever emacs recieves a USR2 signal");
1789 Vsignal_USR2_hook = Qnil;
1790#endif
1791#endif
1792
1793
3005da00
RS
1794 DEFVAR_INT ("emacs-priority", &emacs_priority,
1795 "Priority for Emacs to run at.\n\
1796This value is effective only if set before Emacs is dumped,\n\
1797and only if the Emacs executable is installed with setuid to permit\n\
621ecf99 1798it to change priority. (Emacs sets its uid back to the real uid.)\n\
a422068f 1799Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
ce305b11 1800before you compile Emacs, to enable the code for this feature.");
3005da00 1801 emacs_priority = 0;
59653951 1802
f67de86f
RS
1803 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
1804 "The program name that was used to run Emacs.\n\
1805Any directory names are omitted.");
1806
1807 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
1808 "The directory in which the Emacs executable was found, to run it.\n\
1809The value is nil if that directory's name is not known.");
1810
1811 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
1812 "A directory within which to look for the `lib-src' and `etc' directories.\n\
1813This is non-nil when we can't find those directories in their standard\n\
1814installed locations, but we can find them\n\
1815near where the Emacs executable was found.");
07f4d123 1816 Vinstallation_directory = Qnil;
f927c5ae 1817}