comparison src/emacs.c @ 59624:bc491b7cdbb8

(syms_of_emacs): Improve docstring of `system-type'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 18 Jan 2005 18:34:10 +0000
parents 9bde7721ad0f
children 04686828d0da 3dcba0bc766b 6d92d69fae33
comparison
equal deleted inserted replaced
59623:23a9f70c492b 59624:bc491b7cdbb8
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
7 GNU Emacs is free software; you can redistribute it and/or modify 7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
2428 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, 2428 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2429 doc: /* Args passed by shell to Emacs, as a list of strings. 2429 doc: /* Args passed by shell to Emacs, as a list of strings.
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,
2437 doc: /* Value is string indicating configuration Emacs was built for. 2446 doc: /* Value is string indicating configuration Emacs was built for.
2438 On MS-Windows, the value reflects the OS flavor and version on which 2447 On MS-Windows, the value reflects the OS flavor and version on which