aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNick Roberts2005-05-13 23:28:35 +0000
committerNick Roberts2005-05-13 23:28:35 +0000
commit40a8993a0ac5349b0bfcdd51e06816cd3973721e (patch)
treedf46724582ff6c5c51cad983dede056796b3de9b /src
parent90713743fd6b3b6d9998b9182a585f9535d3d3d2 (diff)
downloademacs-40a8993a0ac5349b0bfcdd51e06816cd3973721e.tar.gz
emacs-40a8993a0ac5349b0bfcdd51e06816cd3973721e.zip
(syms_of_emacs): Fix doc string for system-type.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 8e38bffc28e..68720eecc27 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -2442,16 +2442,16 @@ syms_of_emacs ()
2442Many arguments are deleted from the list as they are processed. */); 2442Many arguments are deleted from the list as they are processed. */);
2443 2443
2444 DEFVAR_LISP ("system-type", &Vsystem_type, 2444 DEFVAR_LISP ("system-type", &Vsystem_type,
2445+ doc: /* Value is symbol indicating type of operating system you are using. 2445 doc: /* Value is symbol indicating type of operating system you are using.
2446+Special values: 2446Special values:
2447+ `gnu/linux' compiled for a GNU/Linux system. 2447 `gnu/linux' compiled for a GNU/Linux system.
2448+ `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...). 2448 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...).
2449+ `macos' compiled for Mac OS 9. 2449 `macos' compiled for Mac OS 9.
2450+ `ms-dos' compiled as an MS-DOS application. 2450 `ms-dos' compiled as an MS-DOS application.
2451+ `windows-nt' compiled as a native W32 application. 2451 `windows-nt' compiled as a native W32 application.
2452+ `cygwin' compiled using the Cygwin library. 2452 `cygwin' compiled using the Cygwin library.
2453+ `vax-vms' or `axp-vms': compiled for a (Open)VMS system. 2453 `vax-vms' or `axp-vms': compiled for a (Open)VMS system.
2454+Anything else indicates some sort of Unix system. */); 2454Anything else indicates some sort of Unix system. */);
2455 Vsystem_type = intern (SYSTEM_TYPE); 2455 Vsystem_type = intern (SYSTEM_TYPE);
2456 2456
2457 DEFVAR_LISP ("system-configuration", &Vsystem_configuration, 2457 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,