diff options
| author | Glenn Morris | 2010-11-09 19:45:29 -0800 |
|---|---|---|
| committer | Glenn Morris | 2010-11-09 19:45:29 -0800 |
| commit | bd6bc2222da75706e4da1936388c49e10ab1c699 (patch) | |
| tree | 89d6c4ba955d7efcf459fc8f6d50732f0f2e3896 | |
| parent | 9a150fcc34cce0daf2dd671c9948eb8d5b70b1c1 (diff) | |
| download | emacs-bd6bc2222da75706e4da1936388c49e10ab1c699.tar.gz emacs-bd6bc2222da75706e4da1936388c49e10ab1c699.zip | |
* src/emacs.c (syms_of_emacs) <system-type>: Doc fix.
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/emacs.c | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 985a07c4ea3..e1e66c0c249 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,10 @@ | |||
| 1 | 2010-11-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (syms_of_emacs) <system-type>: Doc fix. | ||
| 4 | |||
| 1 | 2010-11-09 Eli Zaretskii <eliz@gnu.org> | 5 | 2010-11-09 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * xfns.c (x_real_positions): Fix declaration-after-statement | 7 | * xfns.c (x_real_positions): Fix declaration-after-statement problem. |
| 4 | problem. | ||
| 5 | 8 | ||
| 6 | 2010-11-09 Chong Yidong <cyd@stupidchicken.com> | 9 | 2010-11-09 Chong Yidong <cyd@stupidchicken.com> |
| 7 | 10 | ||
diff --git a/src/emacs.c b/src/emacs.c index a38847e3bd3..64da350e22c 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | /* Fully extensible Emacs, running on Unix, intended for GNU. | 1 | /* Fully extensible Emacs, running on Unix, intended for GNU. |
| 2 | Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, | 2 | |
| 3 | 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, | 3 | Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, |
| 4 | 2010 Free Software Foundation, Inc. | 4 | 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
| 5 | Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | This file is part of GNU Emacs. | 7 | This file is part of GNU Emacs. |
| 7 | 8 | ||
| @@ -2411,9 +2412,10 @@ Special values: | |||
| 2411 | `ms-dos' compiled as an MS-DOS application. | 2412 | `ms-dos' compiled as an MS-DOS application. |
| 2412 | `windows-nt' compiled as a native W32 application. | 2413 | `windows-nt' compiled as a native W32 application. |
| 2413 | `cygwin' compiled using the Cygwin library. | 2414 | `cygwin' compiled using the Cygwin library. |
| 2414 | Anything else (in Emacs 23.1, the possibilities are: aix, berkeley-unix, | 2415 | Anything else (in Emacs 24.1, the possibilities are: aix, berkeley-unix, |
| 2415 | hpux, irix, lynxos 3.0.1, usg-unix-v) indicates some sort of Unix system. */); | 2416 | hpux, irix, usg-unix-v) indicates some sort of Unix system. */); |
| 2416 | Vsystem_type = intern_c_string (SYSTEM_TYPE); | 2417 | Vsystem_type = intern_c_string (SYSTEM_TYPE); |
| 2418 | /* Above values are from SYSTEM_TYPE in src/s/*.h. */ | ||
| 2417 | 2419 | ||
| 2418 | DEFVAR_LISP ("system-configuration", &Vsystem_configuration, | 2420 | DEFVAR_LISP ("system-configuration", &Vsystem_configuration, |
| 2419 | doc: /* Value is string indicating configuration Emacs was built for. | 2421 | doc: /* Value is string indicating configuration Emacs was built for. |
| @@ -2531,5 +2533,3 @@ libraries; only those already known by Emacs will be loaded. */); | |||
| 2531 | daemon_pipe[1] = 0; | 2533 | daemon_pipe[1] = 0; |
| 2532 | } | 2534 | } |
| 2533 | 2535 | ||
| 2534 | /* arch-tag: 7bfd356a-c720-4612-8ab6-aa4222931c2e | ||
| 2535 | (do not change this comment) */ | ||