From: Ben Key Date: Wed, 27 Apr 2011 02:17:44 +0000 (-0500) Subject: Fixed a bug that caused configure with --enable-checking=stringoverrun to have no... X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~204 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=40697cd9ed9e6ee943c81f18f40ead453bb79b1e;p=emacs.git Fixed a bug that caused configure with --enable-checking=stringoverrun to have no effect. --- diff --git a/ChangeLog b/ChangeLog index f67a5bf0b55..a561f8efeec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-04-27 Ben Key + + * configure.in: Fixed a bug that caused configure with + --enable-checking=stringoverrun to have no effect. + 2011-04-26 Paul Eggert * configure.in: Suppress unnecessary checks for size_t. diff --git a/configure.in b/configure.in index 546abbe05a5..68404bf0bcd 100644 --- a/configure.in +++ b/configure.in @@ -294,7 +294,7 @@ if test x$ac_gc_check_stringbytes != x ; then strings is redundantly recorded in sdata structures so that it can be compared to the sizes recorded in Lisp strings.]) fi -if test x$ac_gc_check_stringoverrun != x ; then +if test x$ac_gc_check_string_overrun != x ; then AC_DEFINE(GC_CHECK_STRING_OVERRUN, 1, [Define this to check for short string overrun.]) fi