[PATCH] [AC21.5] Fix typo in ERROR_CHECK_* patch

Stephen J. Turnbull stephen at xemacs.org
Fri May 18 10:05:49 EDT 2007


APPROVE COMMIT 21.5

My previous patch sorted the invocations of XE_COMPLEX_OPTION for the
options to --with-error-checking but forgot to move the comma from the
new last option to the old one.  This caused the "text" option to be
generated incorrectly.

ChangeLog addition:

2007-05-18  Stephen J. Turnbull  <stephen at xemacs.org>

	* configure.ac (error-checking): Move comma misplaced by sorting.
	* configure: Regenerate.

21.5 source patch:
Diff command:   cvs -q diff -u
Files affected: configure.ac


Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.57
diff -u -u -r1.57 configure.ac
--- configure.ac	17 May 2007 15:42:24 -0000	1.57
+++ configure.ac	18 May 2007 13:39:44 -0000
@@ -991,9 +991,9 @@
  XE_COMPLEX_OPTION([gc],[""]),
  XE_COMPLEX_OPTION([glyphs],[""]),
  XE_COMPLEX_OPTION([malloc],[""]),
- XE_COMPLEX_OPTION([structures],[""])
+ XE_COMPLEX_OPTION([structures],[""]),
  XE_COMPLEX_OPTION([text],[""]),
- XE_COMPLEX_OPTION([types],[""]),])
+ XE_COMPLEX_OPTION([types],[""])])
 XE_MERGED_ARG([assertions],
 	AS_HELP_STRING([--enable-assertions],[Compile in runtime assertions.]),
 	[], [])



More information about the XEmacs-Patches mailing list