]> code.delx.au - gnu-emacs/blob - src/emacs.c
(sort_args): New function.
[gnu-emacs] / src / emacs.c
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include <signal.h>
22 #include <errno.h>
23
24 #include <config.h>
25 #include <stdio.h>
26
27 #include <sys/types.h>
28 #include <sys/file.h>
29
30 #ifdef VMS
31 #include <ssdef.h>
32 #endif
33
34 #ifdef BSD
35 #include <sys/ioctl.h>
36 #endif
37
38 #ifdef APOLLO
39 #ifndef APOLLO_SR10
40 #include <default_acl.h>
41 #endif
42 #endif
43
44 #include "lisp.h"
45 #include "commands.h"
46 #include "intervals.h"
47
48 #include "systty.h"
49 #include "syssignal.h"
50 #include "process.h"
51
52 #ifndef O_RDWR
53 #define O_RDWR 2
54 #endif
55
56 extern void malloc_warning ();
57 extern char *index ();
58 extern char *strerror ();
59
60 /* Command line args from shell, as list of strings */
61 Lisp_Object Vcommand_line_args;
62
63 /* The name under which Emacs was invoked, with any leading directory
64 names discarded. */
65 Lisp_Object Vinvocation_name;
66
67 /* The directory name from which Emacs was invoked. */
68 Lisp_Object Vinvocation_directory;
69
70 /* The directory name in which to find subdirs such as lisp and etc.
71 nil means get them only from PATH_LOADSEARCH. */
72 Lisp_Object Vinstallation_directory;
73
74 /* Hook run by `kill-emacs' before it does really anything. */
75 Lisp_Object Vkill_emacs_hook;
76
77 /* Set nonzero after Emacs has started up the first time.
78 Prevents reinitialization of the Lisp world and keymaps
79 on subsequent starts. */
80 int initialized;
81
82 /* Variable whose value is symbol giving operating system type. */
83 Lisp_Object Vsystem_type;
84
85 /* Variable whose value is string giving configuration built for. */
86 Lisp_Object Vsystem_configuration;
87
88 /* Variable whose value is string giving configuration options,
89 for use when reporting bugs. */
90 Lisp_Object Vsystem_configuration_options;
91
92 /* If non-zero, emacs should not attempt to use an window-specific code,
93 but instead should use the virtual terminal under which it was started */
94 int inhibit_window_system;
95
96 /* If nonzero, set Emacs to run at this priority. This is also used
97 in child_setup and sys_suspend to make sure subshells run at normal
98 priority; Those functions have their own extern declaration. */
99 int emacs_priority;
100
101 #ifdef BSD_PGRPS
102 /* See sysdep.c. */
103 extern int inherited_pgroup;
104 #endif
105
106 #ifdef HAVE_X_WINDOWS
107 /* If non-zero, -d was specified, meaning we're using some window system. */
108 int display_arg;
109 #endif
110
111 /* An address near the bottom of the stack.
112 Tells GC how to save a copy of the stack. */
113 char *stack_bottom;
114
115 #ifdef HAVE_X_WINDOWS
116 extern Lisp_Object Vwindow_system;
117 #endif /* HAVE_X_WINDOWS */
118
119 #ifdef USG_SHARED_LIBRARIES
120 /* If nonzero, this is the place to put the end of the writable segment
121 at startup. */
122
123 unsigned int bss_end = 0;
124 #endif
125
126 /* Nonzero means running Emacs without interactive terminal. */
127
128 int noninteractive;
129
130 /* Value of Lisp variable `noninteractive'.
131 Normally same as C variable `noninteractive'
132 but nothing terrible happens if user sets this one. */
133
134 int noninteractive1;
135
136 /* Save argv and argc. */
137 char **initial_argv;
138 int initial_argc;
139
140 static void sort_args ();
141 \f
142 /* Signal code for the fatal signal that was received */
143 int fatal_error_code;
144
145 /* Nonzero if handling a fatal error already */
146 int fatal_error_in_progress;
147
148 /* Handle bus errors, illegal instruction, etc. */
149 SIGTYPE
150 fatal_error_signal (sig)
151 int sig;
152 {
153 fatal_error_code = sig;
154 signal (sig, SIG_DFL);
155
156 /* If fatal error occurs in code below, avoid infinite recursion. */
157 if (! fatal_error_in_progress)
158 {
159 fatal_error_in_progress = 1;
160
161 shut_down_emacs (sig, 0, Qnil);
162 }
163
164 #ifdef VMS
165 LIB$STOP (SS$_ABORT);
166 #else
167 /* Signal the same code; this time it will really be fatal.
168 Remember that since we're in a signal handler, the signal we're
169 going to send is probably blocked, so we have to unblock it if we
170 want to really receive it. */
171 #ifndef MSDOS
172 sigunblock (sigmask (fatal_error_code));
173 #endif
174 kill (getpid (), fatal_error_code);
175 #endif /* not VMS */
176 }
177
178 #ifdef SIGDANGER
179
180 /* Handler for SIGDANGER. */
181 SIGTYPE
182 memory_warning_signal (sig)
183 int sig;
184 {
185 signal (sig, memory_warning_signal);
186
187 malloc_warning ("Operating system warns that virtual memory is running low.\n");
188
189 /* It might be unsafe to call do_auto_save now. */
190 force_auto_save_soon ();
191 }
192 #endif
193 \f
194 /* Code for dealing with Lisp access to the Unix command line */
195
196 static
197 init_cmdargs (argc, argv, skip_args)
198 int argc;
199 char **argv;
200 int skip_args;
201 {
202 register int i;
203 Lisp_Object name, dir;
204
205 initial_argv = argv;
206 initial_argc = argc;
207
208 Vinvocation_name = Ffile_name_nondirectory (build_string (argv[0]));
209 Vinvocation_directory = Ffile_name_directory (build_string (argv[0]));
210 /* If we got no directory in argv[0], search PATH to find where
211 Emacs actually came from. */
212 if (NILP (Vinvocation_directory))
213 {
214 Lisp_Object found;
215 int yes = openp (Vexec_path, Vinvocation_name,
216 EXEC_SUFFIXES, &found, 1);
217 if (yes == 1)
218 Vinvocation_directory = Ffile_name_directory (found);
219 }
220
221 Vinstallation_directory = Qnil;
222
223 if (!NILP (Vinvocation_directory))
224 {
225 dir = Vinvocation_directory;
226 name = Fexpand_file_name (Vinvocation_name, dir);
227 while (1)
228 {
229 Lisp_Object tem, lib_src_exists;
230 Lisp_Object etc_exists, info_exists;
231
232 /* See if dir contains subdirs for use by Emacs.
233 Check for the ones that would exist in a build directory,
234 not including lisp and info. */
235 tem = Fexpand_file_name (build_string ("lib-src"), dir);
236 lib_src_exists = Ffile_exists_p (tem);
237 if (!NILP (lib_src_exists))
238 {
239 tem = Fexpand_file_name (build_string ("etc"), dir);
240 etc_exists = Ffile_exists_p (tem);
241 if (!NILP (etc_exists))
242 {
243 Vinstallation_directory
244 = Ffile_name_as_directory (dir);
245 break;
246 }
247 }
248
249 /* See if dir's parent contains those subdirs. */
250 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
251 lib_src_exists = Ffile_exists_p (tem);
252 if (!NILP (lib_src_exists))
253 {
254 tem = Fexpand_file_name (build_string ("../etc"), dir);
255 etc_exists = Ffile_exists_p (tem);
256 if (!NILP (etc_exists))
257 {
258 tem = Fexpand_file_name (build_string (".."), dir);
259 Vinstallation_directory
260 = Ffile_name_as_directory (tem);
261 break;
262 }
263 }
264
265 /* If the Emacs executable is actually a link,
266 next try the dir that the link points into. */
267 tem = Ffile_symlink_p (name);
268 if (!NILP (tem))
269 {
270 name = Fexpand_file_name (tem, dir);
271 dir = Ffile_name_directory (name);
272 }
273 else
274 break;
275 }
276 }
277
278 Vcommand_line_args = Qnil;
279
280 for (i = argc - 1; i >= 0; i--)
281 {
282 if (i == 0 || i > skip_args)
283 Vcommand_line_args
284 = Fcons (build_string (argv[i]), Vcommand_line_args);
285 }
286 }
287
288 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
289 "Return the program name that was used to run Emacs.\n\
290 Any directory names are omitted.")
291 ()
292 {
293 return Fcopy_sequence (Vinvocation_name);
294 }
295
296 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
297 0, 0, 0,
298 "Return the directory name in which the Emacs executable was located")
299 ()
300 {
301 return Fcopy_sequence (Vinvocation_directory);
302 }
303
304 \f
305 #ifdef VMS
306 #ifdef LINK_CRTL_SHARE
307 #ifdef SHAREABLE_LIB_BUG
308 extern noshare char **environ;
309 #endif /* SHAREABLE_LIB_BUG */
310 #endif /* LINK_CRTL_SHARE */
311 #endif /* VMS */
312
313 #ifndef ORDINARY_LINK
314 /* We don't include crtbegin.o and crtend.o in the link,
315 so these functions and variables might be missed.
316 Provide dummy definitions to avoid error.
317 (We don't have any real constructors or destructors.) */
318 #ifdef __GNUC__
319 #ifndef GCC_CTORS_IN_LIBC
320 __do_global_ctors ()
321 {}
322 __do_global_ctors_aux ()
323 {}
324 __do_global_dtors ()
325 {}
326 /* Linux has a bug in its library; avoid an error. */
327 #ifndef LINUX
328 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
329 #endif
330 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
331 #endif /* GCC_CTORS_IN_LIBC */
332 __main ()
333 {}
334 #endif /* __GNUC__ */
335 #endif /* ORDINARY_LINK */
336
337 /* Test whether the next argument in ARGV matches SSTR or a prefix of
338 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
339 (the argument is supposed to have a value) store in *VALPTR either
340 the next argument or the portion of this one after the equal sign.
341 ARGV is read starting at position *SKIPPTR; this index is advanced
342 by the number of arguments used.
343
344 Too bad we can't just use getopt for all of this, but we don't have
345 enough information to do it right. */
346
347 static int
348 argmatch (argv, sstr, lstr, minlen, valptr, skipptr)
349 char **argv;
350 char *sstr;
351 char *lstr;
352 int minlen;
353 char **valptr;
354 int *skipptr;
355 {
356 char *p;
357 int arglen;
358 char *arg = argv[*skipptr+1];
359 if (arg == NULL)
360 return 0;
361 if (strcmp (arg, sstr) == 0)
362 {
363 if (valptr != NULL)
364 {
365 *valptr = argv[*skipptr+2];
366 *skipptr += 2;
367 }
368 else
369 *skipptr += 1;
370 return 1;
371 }
372 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
373 ? p - arg : strlen (arg));
374 if (arglen < minlen || strncmp (arg, lstr, arglen) != 0)
375 return 0;
376 else if (valptr == NULL)
377 {
378 *skipptr += 1;
379 return 1;
380 }
381 else if (p != NULL)
382 {
383 *valptr = p+1;
384 *skipptr += 1;
385 return 1;
386 }
387 else if (argv[*skipptr+2] != NULL)
388 {
389 *valptr = argv[*skipptr+2];
390 *skipptr += 2;
391 return 1;
392 }
393 else
394 {
395 return 0;
396 }
397 }
398
399 /* ARGSUSED */
400 main (argc, argv, envp)
401 int argc;
402 char **argv;
403 char **envp;
404 {
405 char stack_bottom_variable;
406 int skip_args = 0;
407 extern int errno;
408 extern sys_nerr;
409
410 sort_args (argc, argv);
411
412 /* Map in shared memory, if we are using that. */
413 #ifdef HAVE_SHM
414 if (argmatch (argv, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
415 {
416 map_in_data (0);
417 /* The shared memory was just restored, which clobbered this. */
418 skip_args = 1;
419 }
420 else
421 {
422 map_in_data (1);
423 /* The shared memory was just restored, which clobbered this. */
424 skip_args = 0;
425 }
426 #endif
427
428 #ifdef NeXT
429 extern int malloc_cookie;
430
431 /* This helps out unexnext.c. */
432 if (initialized)
433 if (malloc_jumpstart (malloc_cookie) != 0)
434 printf ("malloc jumpstart failed!\n");
435 #endif /* NeXT */
436
437 #ifdef VMS
438 /* If -map specified, map the data file in */
439 {
440 char *file;
441 if (argmatch (argv, "-map", "--map-data", 3, &mapin_file, &skip_args))
442 mapin_data (file);
443 }
444
445 #ifdef LINK_CRTL_SHARE
446 #ifdef SHAREABLE_LIB_BUG
447 /* Bletcherous shared libraries! */
448 if (!stdin)
449 stdin = fdopen (0, "r");
450 if (!stdout)
451 stdout = fdopen (1, "w");
452 if (!stderr)
453 stderr = fdopen (2, "w");
454 if (!environ)
455 environ = envp;
456 #endif /* SHAREABLE_LIB_BUG */
457 #endif /* LINK_CRTL_SHARE */
458 #endif /* VMS */
459
460 /* Record (approximately) where the stack begins. */
461 stack_bottom = &stack_bottom_variable;
462
463 #ifdef RUN_TIME_REMAP
464 if (initialized)
465 run_time_remap (argv[0]);
466 #endif
467
468 #ifdef USG_SHARED_LIBRARIES
469 if (bss_end)
470 brk (bss_end);
471 #endif
472
473 clearerr (stdin);
474
475 #ifdef APOLLO
476 #ifndef APOLLO_SR10
477 /* If USE_DOMAIN_ACLS environment variable exists,
478 use ACLs rather than UNIX modes. */
479 if (egetenv ("USE_DOMAIN_ACLS"))
480 default_acl (USE_DEFACL);
481 #endif
482 #endif /* APOLLO */
483
484 #ifndef SYSTEM_MALLOC
485 if (! initialized)
486 {
487 /* Arrange to get warning messages as memory fills up. */
488 memory_warnings (0, malloc_warning);
489
490 /* Arrange to disable interrupt input while malloc and friends are
491 running. */
492 uninterrupt_malloc ();
493 }
494 #endif /* not SYSTEM_MALLOC */
495
496 #ifdef MSDOS
497 /* We do all file input/output as binary files. When we need to translate
498 newlines, we do that manually. */
499 _fmode = O_BINARY;
500 (stdin)->_flag &= ~_IOTEXT;
501 (stdout)->_flag &= ~_IOTEXT;
502 (stderr)->_flag &= ~_IOTEXT;
503 #endif /* MSDOS */
504
505 #ifdef SET_EMACS_PRIORITY
506 if (emacs_priority)
507 nice (emacs_priority);
508 setuid (getuid ());
509 #endif /* SET_EMACS_PRIORITY */
510
511 #ifdef EXTRA_INITIALIZE
512 EXTRA_INITIALIZE;
513 #endif
514
515 inhibit_window_system = 0;
516
517 /* Handle the -t switch, which specifies filename to use as terminal */
518 {
519 char *term;
520 if (argmatch (argv, "-t", "--terminal", 4, &term, &skip_args))
521 {
522 int result;
523 close (0);
524 close (1);
525 result = open (term, O_RDWR, 2 );
526 if (result < 0)
527 {
528 char *errstring = strerror (errno);
529 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
530 exit (1);
531 }
532 dup (0);
533 if (! isatty (0))
534 {
535 fprintf (stderr, "emacs: %s: not a tty\n", term);
536 exit (1);
537 }
538 fprintf (stderr, "Using %s\n", term);
539 #ifdef HAVE_X_WINDOWS
540 inhibit_window_system = 1; /* -t => -nw */
541 #endif
542 }
543 }
544 if (argmatch (argv, "-nw", "--no-windows", 6, NULL, &skip_args))
545 inhibit_window_system = 1;
546
547 /* Handle the -batch switch, which means don't do interactive display. */
548 noninteractive = 0;
549 if (argmatch (argv, "-batch", "--batch", 5, NULL, &skip_args))
550 noninteractive = 1;
551
552 /* Handle the --help option, which gives a usage message.. */
553 if (argmatch (argv, "-help", "--help", 3, NULL, &skip_args))
554 {
555 printf ("\
556 Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
557 [-q] [--no-init-file] [-u user] [--user user] [--debug-init]\n\
558 \(Arguments above this line must be first; those below may be in any order)\n\
559 [-f func] [--funcall func] [-l file] [--load file] [--insert file]\n\
560 file-to-visit [--kill]\n", argv[0]);
561 exit (0);
562 }
563
564 #ifdef HAVE_X_WINDOWS
565 /* Stupid kludge to catch command-line display spec. We can't
566 handle this argument entirely in window system dependent code
567 because we don't even know which window system dependent code
568 to run until we've recognized this argument. */
569 {
570 char *displayname;
571 int i;
572 int count_before = skip_args;
573
574 if (argmatch (argv, "-d", "--display", 3, &displayname, &skip_args))
575 display_arg = 1;
576 else if (argmatch (argv, "-display", 0, 3, &displayname, &skip_args))
577 display_arg = 1;
578
579 /* If we have the form --display=NAME,
580 convert it into -d name.
581 This requires inserting a new element into argv. */
582 if (displayname != 0 && skip_args - count_before == 1)
583 {
584 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
585 int j;
586
587 for (j = 0; j < count_before + 1; j++)
588 new[j] = argv[j];
589 new[count_before + 1] = "-d";
590 new[count_before + 2] = displayname;
591 for (j = count_before + 2; j <argc; j++)
592 new[j + 1] = argv[j];
593 argv = new;
594 argc++;
595 }
596 else if (displayname != 0 && argv[count_before + 1][1] == '-')
597 argv[count_before] = "-d";
598
599 /* Don't actually discard this arg. */
600 skip_args = count_before;
601 }
602 #endif
603
604 if (! noninteractive)
605 {
606 #ifdef BSD_PGRPS
607 if (initialized)
608 {
609 inherited_pgroup = EMACS_GETPGRP (0);
610 setpgrp (0, getpid ());
611 }
612 #else
613 #if defined (USG5) && defined (INTERRUPT_INPUT)
614 setpgrp ();
615 #endif
616 #endif
617 }
618
619 #ifdef POSIX_SIGNALS
620 init_signals ();
621 #endif
622
623 if (
624 #ifndef CANNOT_DUMP
625 ! noninteractive || initialized
626 #else
627 1
628 #endif
629 )
630 {
631 /* Don't catch these signals in batch mode if not initialized.
632 On some machines, this sets static data that would make
633 signal fail to work right when the dumped Emacs is run. */
634 signal (SIGHUP, fatal_error_signal);
635 signal (SIGQUIT, fatal_error_signal);
636 signal (SIGILL, fatal_error_signal);
637 signal (SIGTRAP, fatal_error_signal);
638 #ifdef SIGIOT
639 /* This is missing on some systems - OS/2, for example. */
640 signal (SIGIOT, fatal_error_signal);
641 #endif
642 #ifdef SIGEMT
643 signal (SIGEMT, fatal_error_signal);
644 #endif
645 signal (SIGFPE, fatal_error_signal);
646 #ifdef SIGBUS
647 signal (SIGBUS, fatal_error_signal);
648 #endif
649 signal (SIGSEGV, fatal_error_signal);
650 #ifdef SIGSYS
651 signal (SIGSYS, fatal_error_signal);
652 #endif
653 signal (SIGTERM, fatal_error_signal);
654 #ifdef SIGXCPU
655 signal (SIGXCPU, fatal_error_signal);
656 #endif
657 #ifdef SIGXFSZ
658 signal (SIGXFSZ, fatal_error_signal);
659 #endif /* SIGXFSZ */
660
661 #ifdef SIGDANGER
662 /* This just means available memory is getting low. */
663 signal (SIGDANGER, memory_warning_signal);
664 #endif
665
666 #ifdef AIX
667 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
668 signal (SIGXCPU, fatal_error_signal);
669 #ifndef _I386
670 signal (SIGIOINT, fatal_error_signal);
671 #endif
672 signal (SIGGRANT, fatal_error_signal);
673 signal (SIGRETRACT, fatal_error_signal);
674 signal (SIGSOUND, fatal_error_signal);
675 signal (SIGMSG, fatal_error_signal);
676 #endif /* AIX */
677 }
678
679 noninteractive1 = noninteractive;
680
681 /* Perform basic initializations (not merely interning symbols) */
682
683 if (!initialized)
684 {
685 init_alloc_once ();
686 init_obarray ();
687 init_eval_once ();
688 init_syntax_once (); /* Create standard syntax table. */
689 /* Must be done before init_buffer */
690 init_casetab_once ();
691 init_buffer_once (); /* Create buffer table and some buffers */
692 init_minibuf_once (); /* Create list of minibuffers */
693 /* Must precede init_window_once */
694 init_window_once (); /* Init the window system */
695 }
696
697 init_alloc ();
698 init_eval ();
699 init_data ();
700
701 #ifdef MSDOS
702 /* Call early 'cause init_environment needs it. */
703 init_dosfns ();
704 /* Set defaults for several environment variables. */
705 if (initialized) init_environment (argc, argv, skip_args);
706 #endif
707
708 /* egetenv is a pretty low-level facility, which may get called in
709 many circumstances; it seems flimsy to put off initializing it
710 until calling init_callproc. */
711 set_process_environment ();
712 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
713 if this is not done. Do it after set_process_environment so that we
714 don't pollute Vprocess_environment. */
715 #ifdef AIX
716 putenv ("LANG=C");
717 #endif
718
719 init_buffer (); /* Init default directory of main buffer */
720
721 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
722 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
723 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
724 init_lread ();
725
726 if (!noninteractive)
727 {
728 #ifdef VMS
729 init_vms_input ();/* init_display calls get_frame_size, that needs this */
730 #endif /* VMS */
731 init_display (); /* Determine terminal type. init_sys_modes uses results */
732 }
733 init_keyboard (); /* This too must precede init_sys_modes */
734 #ifdef VMS
735 init_vmsproc (); /* And this too. */
736 #endif /* VMS */
737 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
738 init_xdisp ();
739 init_macros ();
740 init_editfns ();
741 #ifdef LISP_FLOAT_TYPE
742 init_floatfns ();
743 #endif
744 #ifdef VMS
745 init_vmsfns ();
746 #endif /* VMS */
747 init_process ();
748 #ifdef CLASH_DETECTION
749 init_filelock ();
750 #endif /* CLASH_DETECTION */
751
752 /* Intern the names of all standard functions and variables; define standard keys */
753
754 if (!initialized)
755 {
756 /* The basic levels of Lisp must come first */
757 /* And data must come first of all
758 for the sake of symbols like error-message */
759 syms_of_data ();
760 syms_of_alloc ();
761 syms_of_lread ();
762 syms_of_print ();
763 syms_of_eval ();
764 syms_of_fns ();
765 syms_of_floatfns ();
766
767 syms_of_abbrev ();
768 syms_of_buffer ();
769 syms_of_bytecode ();
770 syms_of_callint ();
771 syms_of_casefiddle ();
772 syms_of_casetab ();
773 syms_of_callproc ();
774 syms_of_cmds ();
775 #ifndef NO_DIR_LIBRARY
776 syms_of_dired ();
777 #endif /* not NO_DIR_LIBRARY */
778 syms_of_display ();
779 syms_of_doc ();
780 syms_of_editfns ();
781 syms_of_emacs ();
782 syms_of_fileio ();
783 #ifdef CLASH_DETECTION
784 syms_of_filelock ();
785 #endif /* CLASH_DETECTION */
786 syms_of_indent ();
787 syms_of_keyboard ();
788 syms_of_keymap ();
789 syms_of_macros ();
790 syms_of_marker ();
791 syms_of_minibuf ();
792 syms_of_mocklisp ();
793 syms_of_process ();
794 syms_of_search ();
795 syms_of_frame ();
796 syms_of_syntax ();
797 syms_of_term ();
798 syms_of_undo ();
799
800 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
801 syms_of_textprop ();
802 #ifdef VMS
803 syms_of_vmsproc ();
804 #endif /* VMS */
805 syms_of_window ();
806 syms_of_xdisp ();
807 #ifdef HAVE_X_WINDOWS
808 syms_of_xterm ();
809 syms_of_xfns ();
810 syms_of_xfaces ();
811 #ifdef HAVE_X11
812 syms_of_xselect ();
813 #endif
814 #ifdef HAVE_X_MENU
815 syms_of_xmenu ();
816 #endif /* HAVE_X_MENU */
817 #endif /* HAVE_X_WINDOWS */
818
819 #if defined (MSDOS) && !defined (HAVE_X_WINDOWS)
820 syms_of_xfaces ();
821 syms_of_xmenu ();
822 #endif
823
824 #ifdef SYMS_SYSTEM
825 SYMS_SYSTEM;
826 #endif
827
828 #ifdef SYMS_MACHINE
829 SYMS_MACHINE;
830 #endif
831
832 keys_of_casefiddle ();
833 keys_of_cmds ();
834 keys_of_buffer ();
835 keys_of_keyboard ();
836 keys_of_keymap ();
837 keys_of_macros ();
838 keys_of_minibuf ();
839 keys_of_window ();
840 keys_of_frame ();
841 }
842
843 if (!initialized)
844 {
845 char *file;
846 /* Handle -l loadup-and-dump, args passed by Makefile. */
847 if (argmatch (argv, "-l", "--load", 3, &file, &skip_args))
848 Vtop_level = Fcons (intern ("load"),
849 Fcons (build_string (file), Qnil));
850 #ifdef CANNOT_DUMP
851 /* Unless next switch is -nl, load "loadup.el" first thing. */
852 if (!argmatch (argv, "-nl", "--no-loadup", 6, NULL, &skip_args))
853 Vtop_level = Fcons (intern ("load"),
854 Fcons (build_string ("loadup.el"), Qnil));
855 #endif /* CANNOT_DUMP */
856 }
857
858 initialized = 1;
859
860 #if defined (sun) || defined (LOCALTIME_CACHE)
861 /* sun's localtime has a bug. it caches the value of the time
862 zone rather than looking it up every time. Since localtime() is
863 called to bolt the undumping time into the undumped emacs, this
864 results in localtime ignoring the TZ environment variable.
865 This flushes the new TZ value into localtime. */
866 tzset ();
867 #endif /* defined (sun) || defined (LOCALTIME_CACHE) */
868
869 /* Handle the GNU standard option --version. */
870 if (argmatch (argv, "-version", "--version", 3, NULL, &skip_args))
871 {
872 Lisp_Object ver;
873 ver = call0 (intern ("emacs-version"));
874 if (STRINGP (ver))
875 printf ("%s\n", XSTRING (ver)->data);
876 exit (0);
877 }
878
879 /* Enter editor command loop. This never returns. */
880 Frecursive_edit ();
881 /* NOTREACHED */
882 }
883 \f
884 /* Sort the args so we can find the most important ones
885 at the beginning of argv. */
886
887 /* First, here's a table of all the standard options. */
888
889 struct standard_args
890 {
891 char *name;
892 char *longname;
893 int priority;
894 int nargs;
895 };
896
897 struct standard_args standard_args[] =
898 {
899 { "-nl", "--no-shared-memory", 100, 0 },
900 { "-map", "--map-data", 100, 0 },
901 { "-t", "--terminal", 90, 1 },
902 { "-d", "--display", 80, 1 },
903 { "-display", 0, 80, 1 },
904 { "-nw", "--no-windows", 70, 0 },
905 { "-batch", "--batch", 60, 0 },
906 { "-q", "--no-init-file", 50, 0 },
907 { "-no-init-file", 0, 50, 0 },
908 { "-no-site-file", "--no-site-file", 40, 0 },
909 { "-u", "--user", 30, 1 },
910 { "-user", 0, 30, 1 },
911 { "-debug-init", "--debug-init", 20, 0 },
912 { "-l", "--load", 10, 1 },
913 { "-load", 0, 10, 1 },
914 { "-f", "--funcall", 10, 1 },
915 { "-funcall", 0, 10, 1 },
916 { "-insert", "--insert", 10, 1 },
917 { "-bg", "--background-color", 10, 1 },
918 { "-background", 0, 10, 1 },
919 { "-fg", "--foreground-color", 10, 1 },
920 { "-foreground", 0, 10, 1 },
921 { "-bd", "--border-color", 10, 1 },
922 { "-bw", "--border-width", 10, 1 },
923 { "-ib", "--internal-border", 10, 1 },
924 { "-ms", "--mouse-color", 10, 1 },
925 { "-cr", "--cursor-color", 10, 1 },
926 { "-fn", "--font", 10, 1 },
927 { "-font", 0, 10, 1 },
928 { "-g", "--geometry", 10, 1 },
929 { "-geometry", 0, 10, 1 },
930 { "-T", "--title", 10, 1 },
931 { "-i", "--icon-type", 10, 1 },
932 { "-itype", 0, 10, 1 },
933 { "-name", "--name", 10, 1 },
934 { "-xrm", "--xrm", 10, 1 },
935 { "-r", "--reverse-video", 0, 0 },
936 { "-rv", 0, 0, 0 },
937 { "-reverse", 0, 0, 0 },
938 { "-vb", "--vertical-scroll-bars", 0, 0 },
939 { "-iconic", "--iconic", 0, 0 },
940 { "-kill", "--kill", 0, 0 },
941 };
942
943 /* Reorder the elements of ARGV (assumed to have ARGC elements)
944 so that the highest priority ones come first.
945 Do not change the order of elements of equal priority.
946 If an option takes an argument, keep it and its argument together. */
947
948 static void
949 sort_args (argc, argv)
950 int argc;
951 char **argv;
952 {
953 char **new = (char **) xmalloc (sizeof (char *) * argc);
954 /* For each element of argv,
955 the corresponding element of options is:
956 0 for an option that takes no arguments,
957 1 for an option that takes one argument, etc.
958 -1 for an ordinary non-option argument. */
959 char *options = (char *) xmalloc (argc);
960 int *priority = (int *) xmalloc (sizeof (int) * argc);
961 int to = 1;
962 int from;
963 int i;
964
965 /* Categorize all the options,
966 and figure out which argv elts are option arguments. */
967 for (from = 1; from < argc; from++)
968 {
969 options[from] = -1;
970 priority[from] = -1;
971 if (argv[from][0] == '-')
972 {
973 int match, thislen;
974 char *equals;
975
976 /* Look for a match with a known old-fashioned option. */
977 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
978 if (!strcmp (argv[from], standard_args[i].name))
979 {
980 options[from] = standard_args[i].nargs;
981 priority[from] = standard_args[i].priority;
982 from += standard_args[i].nargs;
983 goto done;
984 }
985
986 /* Look for a match with a known long option.
987 MATCH is -1 if no match so far, -2 if two or more matches so far,
988 >= 0 (the table index of the match) if just one match so far. */
989 if (argv[from][1] == '-')
990 {
991 match = -1;
992 thislen = strlen (argv[from]);
993 equals = index (argv[from], '=');
994 if (equals != 0)
995 thislen = equals - argv[from];
996
997 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
998 if (!strncmp (argv[from], standard_args[i].longname, thislen))
999 {
1000 if (match == -1)
1001 match = i;
1002 else
1003 match = -2;
1004 }
1005
1006 /* If we found exactly one match, use that. */
1007 if (match >= 0)
1008 {
1009 options[from] = standard_args[match].nargs;
1010 priority[from] = standard_args[match].priority;
1011 /* If --OPTION=VALUE syntax is used,
1012 this option uses just one argv element. */
1013 if (equals != 0)
1014 options[from] = 0;
1015 from += options[from];
1016 }
1017 }
1018 done: ;
1019 }
1020 }
1021
1022 /* Copy the arguments, in order of decreasing priority, to NEW. */
1023 new[0] = argv[0];
1024 while (to < argc)
1025 {
1026 int best = -1;
1027 int best_priority = -2;
1028
1029 /* Find the highest priority remaining option.
1030 If several have equal priority, take the first of them. */
1031 for (from = 1; from < argc; from++)
1032 {
1033 if (argv[from] != 0 && priority[from] > best_priority)
1034 {
1035 best_priority = priority[from];
1036 best = from;
1037 }
1038 /* Skip option arguments--they are tied to the options. */
1039 if (options[from] > 0)
1040 from += options[from];
1041 }
1042
1043 if (best < 0)
1044 abort ();
1045
1046 /* Copy the highest priority remaining option, with its args, to NEW. */
1047 new[to++] = argv[best];
1048 for (i = 0; i < options[best]; i++)
1049 new[to++] = argv[best + i + 1];
1050
1051 /* Clear out this option in ARGV. */
1052 argv[best] = 0;
1053 for (i = 0; i < options[best]; i++)
1054 argv[best + i + 1] = 0;
1055 }
1056
1057 bcopy (new, argv, sizeof (char *) * (argc + 1));
1058 }
1059 \f
1060 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1061 "Exit the Emacs job and kill it.\n\
1062 If ARG is an integer, return ARG as the exit program code.\n\
1063 If ARG is a string, stuff it as keyboard input.\n\n\
1064 The value of `kill-emacs-hook', if not void,\n\
1065 is a list of functions (of no args),\n\
1066 all of which are called before Emacs is actually killed.")
1067 (arg)
1068 Lisp_Object arg;
1069 {
1070 Lisp_Object hook, hook1;
1071 int i;
1072 struct gcpro gcpro1;
1073
1074 GCPRO1 (arg);
1075
1076 if (feof (stdin))
1077 arg = Qt;
1078
1079 if (!NILP (Vrun_hooks) && !noninteractive)
1080 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1081
1082 UNGCPRO;
1083
1084 /* Is it really necessary to do this deassign
1085 when we are going to exit anyway? */
1086 /* #ifdef VMS
1087 stop_vms_input ();
1088 #endif */
1089
1090 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1091
1092 exit (INTEGERP (arg) ? XINT (arg)
1093 #ifdef VMS
1094 : 1
1095 #else
1096 : 0
1097 #endif
1098 );
1099 /* NOTREACHED */
1100 }
1101
1102
1103 /* Perform an orderly shutdown of Emacs. Autosave any modified
1104 buffers, kill any child processes, clean up the terminal modes (if
1105 we're in the foreground), and other stuff like that. Don't perform
1106 any redisplay; this may be called when Emacs is shutting down in
1107 the background, or after its X connection has died.
1108
1109 If SIG is a signal number, print a message for it.
1110
1111 This is called by fatal signal handlers, X protocol error handlers,
1112 and Fkill_emacs. */
1113
1114 void
1115 shut_down_emacs (sig, no_x, stuff)
1116 int sig, no_x;
1117 Lisp_Object stuff;
1118 {
1119 /* Prevent running of hooks from now on. */
1120 Vrun_hooks = Qnil;
1121
1122 /* If we are controlling the terminal, reset terminal modes */
1123 #ifdef EMACS_HAVE_TTY_PGRP
1124 {
1125 int pgrp = EMACS_GETPGRP (0);
1126
1127 int tpgrp;
1128 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1129 && tpgrp == pgrp)
1130 {
1131 fflush (stdout);
1132 reset_sys_modes ();
1133 if (sig && sig != SIGTERM)
1134 fprintf (stderr, "Fatal error (%d).", sig);
1135 }
1136 }
1137 #else
1138 fflush (stdout);
1139 reset_sys_modes ();
1140 #endif
1141
1142 stuff_buffered_input (stuff);
1143
1144 kill_buffer_processes (Qnil);
1145 Fdo_auto_save (Qt, Qnil);
1146
1147 #ifdef CLASH_DETECTION
1148 unlock_all_files ();
1149 #endif
1150
1151 #ifdef VMS
1152 kill_vms_processes ();
1153 #endif
1154
1155 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1156 #ifdef HAVE_X_WINDOWS
1157 /* It's not safe to call intern here. Maybe we are crashing. */
1158 if (!noninteractive && SYMBOLP (Vwindow_system)
1159 && XSYMBOL (Vwindow_system)->name->size == 1
1160 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1161 && ! no_x)
1162 Fx_close_current_connection ();
1163 #endif /* HAVE_X_WINDOWS */
1164 #endif
1165
1166 #ifdef SIGIO
1167 /* There is a tendency for a SIGIO signal to arrive within exit,
1168 and cause a SIGHUP because the input descriptor is already closed. */
1169 unrequest_sigio ();
1170 signal (SIGIO, SIG_IGN);
1171 #endif
1172 }
1173
1174
1175 \f
1176 #ifndef CANNOT_DUMP
1177 /* Nothing like this can be implemented on an Apollo.
1178 What a loss! */
1179
1180 #ifdef HAVE_SHM
1181
1182 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1183 "Dump current state of Emacs into data file FILENAME.\n\
1184 This function exists on systems that use HAVE_SHM.")
1185 (intoname)
1186 Lisp_Object intoname;
1187 {
1188 extern int my_edata;
1189 Lisp_Object tem;
1190
1191 CHECK_STRING (intoname, 0);
1192 intoname = Fexpand_file_name (intoname, Qnil);
1193
1194 tem = Vpurify_flag;
1195 Vpurify_flag = Qnil;
1196
1197 fflush (stdout);
1198 /* Tell malloc where start of impure now is */
1199 /* Also arrange for warnings when nearly out of space. */
1200 #ifndef SYSTEM_MALLOC
1201 memory_warnings (&my_edata, malloc_warning);
1202 #endif
1203 map_out_data (XSTRING (intoname)->data);
1204
1205 Vpurify_flag = tem;
1206
1207 return Qnil;
1208 }
1209
1210 #else /* not HAVE_SHM */
1211
1212 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1213 "Dump current state of Emacs into executable file FILENAME.\n\
1214 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1215 This is used in the file `loadup.el' when building Emacs.\n\
1216 \n\
1217 Bind `command-line-processed' to nil before dumping,\n\
1218 if you want the dumped Emacs to process its command line\n\
1219 and announce itself normally when it is run.")
1220 (intoname, symname)
1221 Lisp_Object intoname, symname;
1222 {
1223 extern int my_edata;
1224 Lisp_Object tem;
1225
1226 CHECK_STRING (intoname, 0);
1227 intoname = Fexpand_file_name (intoname, Qnil);
1228 if (!NILP (symname))
1229 {
1230 CHECK_STRING (symname, 0);
1231 if (XSTRING (symname)->size)
1232 symname = Fexpand_file_name (symname, Qnil);
1233 }
1234
1235 tem = Vpurify_flag;
1236 Vpurify_flag = Qnil;
1237
1238 fflush (stdout);
1239 #ifdef VMS
1240 mapout_data (XSTRING (intoname)->data);
1241 #else
1242 /* Tell malloc where start of impure now is */
1243 /* Also arrange for warnings when nearly out of space. */
1244 #ifndef SYSTEM_MALLOC
1245 #ifndef WINDOWSNT
1246 /* On Windows, this was done before dumping, and that once suffices.
1247 Meanwhile, my_edata is not valid on Windows. */
1248 memory_warnings (&my_edata, malloc_warning);
1249 #endif /* not WINDOWSNT */
1250 #endif
1251 unexec (XSTRING (intoname)->data,
1252 !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0);
1253 #endif /* not VMS */
1254
1255 Vpurify_flag = tem;
1256
1257 return Qnil;
1258 }
1259
1260 #endif /* not HAVE_SHM */
1261
1262 #endif /* not CANNOT_DUMP */
1263 \f
1264 #ifndef SEPCHAR
1265 #define SEPCHAR ':'
1266 #endif
1267
1268 Lisp_Object
1269 decode_env_path (evarname, defalt)
1270 char *evarname, *defalt;
1271 {
1272 register char *path, *p;
1273
1274 Lisp_Object lpath;
1275
1276 /* It's okay to use getenv here, because this function is only used
1277 to initialize variables when Emacs starts up, and isn't called
1278 after that. */
1279 if (evarname != 0)
1280 path = (char *) getenv (evarname);
1281 else
1282 path = 0;
1283 if (!path)
1284 path = defalt;
1285 lpath = Qnil;
1286 while (1)
1287 {
1288 p = index (path, SEPCHAR);
1289 if (!p) p = path + strlen (path);
1290 lpath = Fcons (p - path ? make_string (path, p - path) : Qnil,
1291 lpath);
1292 if (*p)
1293 path = p + 1;
1294 else
1295 break;
1296 }
1297 return Fnreverse (lpath);
1298 }
1299
1300 syms_of_emacs ()
1301 {
1302 #ifndef CANNOT_DUMP
1303 #ifdef HAVE_SHM
1304 defsubr (&Sdump_emacs_data);
1305 #else
1306 defsubr (&Sdump_emacs);
1307 #endif
1308 #endif
1309
1310 defsubr (&Skill_emacs);
1311
1312 defsubr (&Sinvocation_name);
1313 defsubr (&Sinvocation_directory);
1314
1315 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
1316 "Args passed by shell to Emacs, as a list of strings.");
1317
1318 DEFVAR_LISP ("system-type", &Vsystem_type,
1319 "Value is symbol indicating type of operating system you are using.");
1320 Vsystem_type = intern (SYSTEM_TYPE);
1321
1322 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
1323 "Value is string indicating configuration Emacs was built for.");
1324 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
1325
1326 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
1327 "String containing the configuration options Emacs was built with.");
1328 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
1329
1330 DEFVAR_BOOL ("noninteractive", &noninteractive1,
1331 "Non-nil means Emacs is running without interactive terminal.");
1332
1333 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
1334 "Hook to be run whenever kill-emacs is called.\n\
1335 Since kill-emacs may be invoked when the terminal is disconnected (or\n\
1336 in other similar situations), functions placed on this hook should not\n\
1337 expect to be able to interact with the user.");
1338 Vkill_emacs_hook = Qnil;
1339
1340 DEFVAR_INT ("emacs-priority", &emacs_priority,
1341 "Priority for Emacs to run at.\n\
1342 This value is effective only if set before Emacs is dumped,\n\
1343 and only if the Emacs executable is installed with setuid to permit\n\
1344 it to change priority. (Emacs sets its uid back to the real uid.)\n\
1345 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
1346 before you compile Emacs, to enable the code for this feature.");
1347 emacs_priority = 0;
1348
1349 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
1350 "The program name that was used to run Emacs.\n\
1351 Any directory names are omitted.");
1352
1353 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
1354 "The directory in which the Emacs executable was found, to run it.\n\
1355 The value is nil if that directory's name is not known.");
1356
1357 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
1358 "A directory within which to look for the `lib-src' and `etc' directories.\n\
1359 This is non-nil when we can't find those directories in their standard\n\
1360 installed locations, but we can find them\n\
1361 near where the Emacs executable was found.");
1362 Vinstallation_directory = Qnil;
1363 }