diff options
| -rw-r--r-- | src/emacs.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c index 0c8ac5bae79..a0d404bc5ca 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Fully extensible Emacs, running on Unix, intended for GNU. | 1 | /* Fully extensible Emacs, running on Unix, intended for GNU. |
| 2 | Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,03,2004 | 2 | Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, 2001, |
| 3 | Free Software Foundation, Inc. | 3 | 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -2430,7 +2430,16 @@ syms_of_emacs () | |||
| 2430 | Many arguments are deleted from the list as they are processed. */); | 2430 | Many arguments are deleted from the list as they are processed. */); |
| 2431 | 2431 | ||
| 2432 | DEFVAR_LISP ("system-type", &Vsystem_type, | 2432 | DEFVAR_LISP ("system-type", &Vsystem_type, |
| 2433 | doc: /* Value is symbol indicating type of operating system you are using. */); | 2433 | + doc: /* Value is symbol indicating type of operating system you are using. |
| 2434 | +Special values: | ||
| 2435 | + `gnu/linux' compiled for a GNU/Linux system. | ||
| 2436 | + `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...). | ||
| 2437 | + `macos' compiled for Mac OS 9. | ||
| 2438 | + `ms-dos' compiled as an MS-DOS application. | ||
| 2439 | + `windows-nt' compiled as a native W32 application. | ||
| 2440 | + `cygwin' compiled using the Cygwin library. | ||
| 2441 | + `vax-vms' or `axp-vms': compiled for a (Open)VMS system. | ||
| 2442 | +Anything else indicates some sort of Unix system. */); | ||
| 2434 | Vsystem_type = intern (SYSTEM_TYPE); | 2443 | Vsystem_type = intern (SYSTEM_TYPE); |
| 2435 | 2444 | ||
| 2436 | DEFVAR_LISP ("system-configuration", &Vsystem_configuration, | 2445 | DEFVAR_LISP ("system-configuration", &Vsystem_configuration, |