aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/savehist.el2
-rw-r--r--src/ChangeLog4
-rw-r--r--src/emacs.c6
-rw-r--r--src/w32proc.c2
-rw-r--r--src/xfns.c2
6 files changed, 14 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7a79110f4a0..c7e08e40480 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-09-11 Glenn Morris <rgm@gnu.org>
2
3 * savehist.el: No need for cl when compiling on Emacs.
4
12013-09-11 Stefan Monnier <monnier@iro.umontreal.ca> 52013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization 7 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
diff --git a/lisp/savehist.el b/lisp/savehist.el
index 374e57feb1f..379818b2707 100644
--- a/lisp/savehist.el
+++ b/lisp/savehist.el
@@ -49,7 +49,7 @@
49 49
50(require 'custom) 50(require 'custom)
51(eval-when-compile 51(eval-when-compile
52 (require 'cl)) 52 (if (featurep 'xemacs) (require 'cl)))
53 53
54;; User variables 54;; User variables
55 55
diff --git a/src/ChangeLog b/src/ChangeLog
index e3fd6e96ec2..e1276f54d03 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-09-11 Glenn Morris <rgm@gnu.org>
2
3 * emacs.c (usage_message): Possessive apostrophe tweak.
4
12013-09-11 Dmitry Antipov <dmantipov@yandex.ru> 52013-09-11 Dmitry Antipov <dmantipov@yandex.ru>
2 6
3 * nsterm.m (syms_of_nsterm): Use Qns. 7 * nsterm.m (syms_of_nsterm): Use Qns.
diff --git a/src/emacs.c b/src/emacs.c
index 96a5d33f363..6ef9aeb93da 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1,7 +1,7 @@
1/* Fully extensible Emacs, running on Unix, intended for GNU. 1/* Fully extensible Emacs, running on Unix, intended for GNU.
2 2
3Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2013 Free Software 3Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2013
4Foundation, Inc. 4 Free Software Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
@@ -313,7 +313,7 @@ example, -batch as well as --batch. You can use any unambiguous\n\
313abbreviation for a --option.\n\ 313abbreviation for a --option.\n\
314\n\ 314\n\
315Various environment variables and window system resources also affect\n\ 315Various environment variables and window system resources also affect\n\
316Emacs' operation. See the main documentation.\n\ 316the operation of Emacs. See the main documentation.\n\
317\n\ 317\n\
318Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\ 318Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
319section of the Emacs manual or the file BUGS.\n" 319section of the Emacs manual or the file BUGS.\n"
diff --git a/src/w32proc.c b/src/w32proc.c
index dabaa62f71c..221b42fb7b2 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -1144,7 +1144,7 @@ create_child (char *exe, char *cmdline, char *env, int is_gui_app,
1144 return FALSE; 1144 return FALSE;
1145} 1145}
1146 1146
1147/* create_child doesn't know what emacs' file handle will be for waiting 1147/* create_child doesn't know what emacs's file handle will be for waiting
1148 on output from the child, so we need to make this additional call 1148 on output from the child, so we need to make this additional call
1149 to register the handle with the process 1149 to register the handle with the process
1150 This way the select emulator knows how to match file handles with 1150 This way the select emulator knows how to match file handles with
diff --git a/src/xfns.c b/src/xfns.c
index 9b3bf79c088..74bc7a8b1d0 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1031,7 +1031,7 @@ x_set_border_pixel (struct frame *f, int pix)
1031 Note: this is done in two routines because of the way X10 works. 1031 Note: this is done in two routines because of the way X10 works.
1032 1032
1033 Note: under X11, this is normally the province of the window manager, 1033 Note: under X11, this is normally the province of the window manager,
1034 and so emacs' border colors may be overridden. */ 1034 and so emacs's border colors may be overridden. */
1035 1035
1036static void 1036static void
1037x_set_border_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval) 1037x_set_border_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)