diff options
| author | Joakim Verona | 2013-09-11 19:42:49 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-11 19:42:49 +0200 |
| commit | f20bcfe4144569d46d5e25685456af50820719f7 (patch) | |
| tree | 52492bdfecfa664388c50a9ad198511efda45d38 | |
| parent | 41c0d73a318ece49776f1131a99e71253f953689 (diff) | |
| parent | 5ec0337a36f61c2bd6c7c3ef8102f7deeeafd09a (diff) | |
| download | emacs-f20bcfe4144569d46d5e25685456af50820719f7.tar.gz emacs-f20bcfe4144569d46d5e25685456af50820719f7.zip | |
merge from trunk
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/savehist.el | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/emacs.c | 6 | ||||
| -rw-r--r-- | src/w32proc.c | 2 | ||||
| -rw-r--r-- | src/xfns.c | 2 |
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 @@ | |||
| 1 | 2013-09-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * savehist.el: No need for cl when compiling on Emacs. | ||
| 4 | |||
| 1 | 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-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 @@ | |||
| 1 | 2013-09-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (usage_message): Possessive apostrophe tweak. | ||
| 4 | |||
| 1 | 2013-09-11 Dmitry Antipov <dmantipov@yandex.ru> | 5 | 2013-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 | ||
| 3 | Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2013 Free Software | 3 | Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2013 |
| 4 | Foundation, Inc. | 4 | Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This file is part of GNU Emacs. | 6 | This file is part of GNU Emacs. |
| 7 | 7 | ||
| @@ -313,7 +313,7 @@ example, -batch as well as --batch. You can use any unambiguous\n\ | |||
| 313 | abbreviation for a --option.\n\ | 313 | abbreviation for a --option.\n\ |
| 314 | \n\ | 314 | \n\ |
| 315 | Various environment variables and window system resources also affect\n\ | 315 | Various environment variables and window system resources also affect\n\ |
| 316 | Emacs' operation. See the main documentation.\n\ | 316 | the operation of Emacs. See the main documentation.\n\ |
| 317 | \n\ | 317 | \n\ |
| 318 | Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\ | 318 | Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\ |
| 319 | section of the Emacs manual or the file BUGS.\n" | 319 | section 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 | ||
| 1036 | static void | 1036 | static void |
| 1037 | x_set_border_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval) | 1037 | x_set_border_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval) |