[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102302: * src/emacs.c (syms_of_emacs
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102302: * src/emacs.c (syms_of_emacs) <system-type>: Doc fix. |
Date: |
Tue, 09 Nov 2010 19:45:29 -0800 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102302
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2010-11-09 19:45:29 -0800
message:
* src/emacs.c (syms_of_emacs) <system-type>: Doc fix.
modified:
src/ChangeLog
src/emacs.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2010-11-09 20:07:10 +0000
+++ b/src/ChangeLog 2010-11-10 03:45:29 +0000
@@ -1,7 +1,10 @@
+2010-11-10 Glenn Morris <address@hidden>
+
+ * emacs.c (syms_of_emacs) <system-type>: Doc fix.
+
2010-11-09 Eli Zaretskii <address@hidden>
- * xfns.c (x_real_positions): Fix declaration-after-statement
- problem.
+ * xfns.c (x_real_positions): Fix declaration-after-statement problem.
2010-11-09 Chong Yidong <address@hidden>
=== modified file 'src/emacs.c'
--- a/src/emacs.c 2010-10-29 10:43:38 +0000
+++ b/src/emacs.c 2010-11-10 03:45:29 +0000
@@ -1,7 +1,8 @@
/* Fully extensible Emacs, running on Unix, intended for GNU.
- Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999,
- 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
- 2010 Free Software Foundation, Inc.
+
+Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999,
+ 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+ Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -2411,9 +2412,10 @@
`ms-dos' compiled as an MS-DOS application.
`windows-nt' compiled as a native W32 application.
`cygwin' compiled using the Cygwin library.
-Anything else (in Emacs 23.1, the possibilities are: aix, berkeley-unix,
-hpux, irix, lynxos 3.0.1, usg-unix-v) indicates some sort of Unix system. */);
+Anything else (in Emacs 24.1, the possibilities are: aix, berkeley-unix,
+hpux, irix, usg-unix-v) indicates some sort of Unix system. */);
Vsystem_type = intern_c_string (SYSTEM_TYPE);
+ /* Above values are from SYSTEM_TYPE in src/s/*.h. */
DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
doc: /* Value is string indicating configuration Emacs was built
for.
@@ -2531,5 +2533,3 @@
daemon_pipe[1] = 0;
}
-/* arch-tag: 7bfd356a-c720-4612-8ab6-aa4222931c2e
- (do not change this comment) */
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102302: * src/emacs.c (syms_of_emacs) <system-type>: Doc fix.,
Glenn Morris <=