diff options
| author | Glenn Morris | 2009-08-20 06:41:43 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-08-20 06:41:43 +0000 |
| commit | cf59a3740d31c7b94b08646b5c695c0806ec4906 (patch) | |
| tree | df5959fa43b5c01b5be3025dbe97e8f4403a1d6f | |
| parent | 31764e153f533f25e36586e0606395cfe77fac39 (diff) | |
| download | emacs-cf59a3740d31c7b94b08646b5c695c0806ec4906.tar.gz emacs-cf59a3740d31c7b94b08646b5c695c0806ec4906.zip | |
(system-type): Doc fix.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/emacs.c | 18 |
2 files changed, 14 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index fc92f40e2ef..ce75491e6fc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-08-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (system-type): Doc fix. | ||
| 4 | |||
| 1 | 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be | 7 | * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be |
diff --git a/src/emacs.c b/src/emacs.c index 657465da833..8097d7a382d 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -2589,15 +2589,17 @@ syms_of_emacs () | |||
| 2589 | Many arguments are deleted from the list as they are processed. */); | 2589 | Many arguments are deleted from the list as they are processed. */); |
| 2590 | 2590 | ||
| 2591 | DEFVAR_LISP ("system-type", &Vsystem_type, | 2591 | DEFVAR_LISP ("system-type", &Vsystem_type, |
| 2592 | doc: /* Value is symbol indicating type of operating system you are using. | 2592 | doc: /* The value is a symbol indicating the type of operating system you are using. |
| 2593 | Special values: | 2593 | Special values: |
| 2594 | `gnu' compiled for a GNU Hurd system. | 2594 | `gnu' compiled for a GNU Hurd system. |
| 2595 | `gnu/linux' compiled for a GNU/Linux system. | 2595 | `gnu/linux' compiled for a GNU/Linux system. |
| 2596 | `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...). | 2596 | `gnu/kfreebsd' compiled for a GNU system with a FreeBSD kernel. |
| 2597 | `ms-dos' compiled as an MS-DOS application. | 2597 | `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...). |
| 2598 | `windows-nt' compiled as a native W32 application. | 2598 | `ms-dos' compiled as an MS-DOS application. |
| 2599 | `cygwin' compiled using the Cygwin library. | 2599 | `windows-nt' compiled as a native W32 application. |
| 2600 | Anything else indicates some sort of Unix system. */); | 2600 | `cygwin' compiled using the Cygwin library. |
| 2601 | Anything else (in Emacs 23.1, the possibilities are: aix, berkeley-unix, | ||
| 2602 | hpux, irix, lynxos 3.0.1, usg-unix-v) indicates some sort of Unix system. */); | ||
| 2601 | Vsystem_type = intern (SYSTEM_TYPE); | 2603 | Vsystem_type = intern (SYSTEM_TYPE); |
| 2602 | 2604 | ||
| 2603 | DEFVAR_LISP ("system-configuration", &Vsystem_configuration, | 2605 | DEFVAR_LISP ("system-configuration", &Vsystem_configuration, |