]> code.delx.au - gnu-emacs/commitdiff
* src/lisp.h: Fix up compilation for USE_STACK_LISP_OBJECTS=false.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 2 Oct 2014 12:27:19 +0000 (08:27 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 2 Oct 2014 12:27:19 +0000 (08:27 -0400)
src/ChangeLog
src/lisp.h

index 2c5aa61e4175e63031f2b89e333e61fd1feefcb5..f3c881f630d99312ccc34e52841add754dfb5a13 100644 (file)
@@ -1,5 +1,7 @@
 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * lisp.h: Fix up compilation for USE_STACK_LISP_OBJECTS=false.
+
        * nsselect.m (ns-own-selection-internal, ns-disown-selection-internal):
        Rename from the "x-" prefix.
 
index aeb1a71e481ab4a9729029804977778aff41a5bc..0425744b30142783660fa7803c1f0d9d7421a3e4 100644 (file)
@@ -4658,7 +4658,7 @@ enum
 
 /* Check whether stack-allocated strings are ASCII-only.  */
 
-#ifdef ENABLE_CHECKING
+#if defined (ENABLE_CHECKING) && USE_STACK_LISP_OBJECTS
 extern const char *verify_ascii (const char *);
 #else
 # define verify_ascii(str) (str)