diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-01-18 18:34:10 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-01-18 18:34:10 +0000 |
commit | adeeafe5d2d44ef4a7888f79b0def1036632a3e9 (patch) | |
tree | fd13964d10ace476b147d2c4f1ee092de15b14c5 /src/emacs.c | |
parent | 650cb9f1357b4c60735abc6e17c53895b9cecccb (diff) | |
download | emacs-adeeafe5d2d44ef4a7888f79b0def1036632a3e9.tar.gz |
(syms_of_emacs): Improve docstring of `system-type'.
Diffstat (limited to 'src/emacs.c')
-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 @@ /* Fully extensible Emacs, running on Unix, intended for GNU. - Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,03,2004 - Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, 2001, + 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -2430,7 +2430,16 @@ syms_of_emacs () Many arguments are deleted from the list as they are processed. */); DEFVAR_LISP ("system-type", &Vsystem_type, - doc: /* Value is symbol indicating type of operating system you are using. */); ++ doc: /* Value is symbol indicating type of operating system you are using. ++Special values: ++ `gnu/linux' compiled for a GNU/Linux system. ++ `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...). ++ `macos' compiled for Mac OS 9. ++ `ms-dos' compiled as an MS-DOS application. ++ `windows-nt' compiled as a native W32 application. ++ `cygwin' compiled using the Cygwin library. ++ `vax-vms' or `axp-vms': compiled for a (Open)VMS system. ++Anything else indicates some sort of Unix system. */); Vsystem_type = intern (SYSTEM_TYPE); DEFVAR_LISP ("system-configuration", &Vsystem_configuration, |