]> git.eshelyaron.com Git - emacs.git/commitdiff
(AC_INIT): Fix version number.
authorGlenn Morris <rgm@gnu.org>
Thu, 13 Mar 2008 03:13:19 +0000 (03:13 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 13 Mar 2008 03:13:19 +0000 (03:13 +0000)
(sync-input): Reword the option, since it's on by default.

ChangeLog
configure.in

index 16eb9e778a6eb4a91e70d853d1d3b6e73548d2e1..d946ed3f235541a2072df33ae8fd3b7cb3732c49 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-13  Glenn Morris  <rgm@gnu.org>
+
+       * configure.in (AC_INIT): Fix version number.
+       (sync-input): Reword the option, since it's on by default.
+
 2008-03-11  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
 
        * configure.in: Add --enable-sync-input, default yes.
index 72d4863f559418a811eab8edf14f5f356f0d7158..84398e1de030055cfb6e0614cb670917334fb758 100644 (file)
@@ -24,7 +24,7 @@ dnl  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 dnl  Boston, MA 02110-1301, USA.
 
 AC_PREREQ(2.61)dnl
-AC_INIT(emacs, 23.0.50)
+AC_INIT(emacs, 23.0.60)
 AC_CONFIG_HEADER(src/config.h:src/config.in)
 AC_CONFIG_SRCDIR(src/lisp.h)
 
@@ -173,8 +173,9 @@ AC_ARG_ENABLE(font-backend,
       USE_FONT_BACKEND=$enableval,
       USE_FONT_BACKEND=yes)
 
+## Enabled by default.
 AC_ARG_ENABLE(sync-input,
-[AS_HELP_STRING([--enable-sync-input], [compile code with sync-input])],
+[AS_HELP_STRING([--disable-sync-input], [don't compile code with sync-input])],
       USE_SYNC_INPUT=$enableval,
       USE_SYNC_INPUT=yes)