From: Glenn Morris Date: Wed, 16 Jul 2008 02:34:46 +0000 (+0000) Subject: (system-type): Doc fix. X-Git-Tag: emacs-pretest-23.0.90~4162 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44ac2d3efcd9606c05950041e41caad569e30adb;p=emacs.git (system-type): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0375d5d0030..a22e595f509 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2008-07-16 Glenn Morris + * paths.el (rmail-spool-directory): Remove settings for systems that are + no longer supported. + + * frame.el (ns-initialize-window-system): Declare for compiler. + * term/ns-win.el: Add numerous declarations for compiler. (ns-pop-up-frames): Move definition before use. Doc fix. diff --git a/src/ChangeLog b/src/ChangeLog index 9c55d091f78..ddc8b4c356e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-07-16 Glenn Morris + + * emacs.c (system-type): Doc fix. + 2008-07-15 Stefan Monnier * keyboard.c (parse_menu_item): Don't use cachelist, even under NS. diff --git a/src/emacs.c b/src/emacs.c index a6e59f8c9fe..869bdef24c4 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2508,14 +2508,13 @@ 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. Special values: + `gnu' compiled for a GNU Hurd system. `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. + `vax-vms' compiled for a (Open)VMS system. Anything else indicates some sort of Unix system. */); Vsystem_type = intern (SYSTEM_TYPE);