1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-23 22:42:01 -07:00

* src/lisp.h: Fix up compilation for USE_STACK_LISP_OBJECTS=false.

This commit is contained in:
Stefan Monnier 2014-10-02 08:27:19 -04:00
parent 64a67db3cd
commit b861616a6c
2 changed files with 3 additions and 1 deletions

View 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.

View 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)