aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/emacs.c14
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 @@
12010-11-10 Glenn Morris <rgm@gnu.org>
2
3 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
4
12010-11-09 Eli Zaretskii <eliz@gnu.org> 52010-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
62010-11-09 Chong Yidong <cyd@stupidchicken.com> 92010-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, 3Copyright (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
6This file is part of GNU Emacs. 7This 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.
2414Anything else (in Emacs 23.1, the possibilities are: aix, berkeley-unix, 2415Anything else (in Emacs 24.1, the possibilities are: aix, berkeley-unix,
2415hpux, irix, lynxos 3.0.1, usg-unix-v) indicates some sort of Unix system. */); 2416hpux, 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) */