aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert2012-04-09 15:54:59 -0700
committerPaul Eggert2012-04-09 15:54:59 -0700
commit45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193 (patch)
tree5bc87a8b5a3c754b8eb44a612cc6c03561d6b968 /src/lisp.h
parent9d6b4d53469a9ffd67bd770fabc6fe254e35c21d (diff)
parent05920a43fc18e696b464387e781e7cfdcea5b5af (diff)
downloademacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.tar.gz
emacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.zip
Merge from trunk.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 47570ebee74..864346d85c2 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1139,6 +1139,8 @@ struct Lisp_Symbol
1139 special (with `defvar' etc), and shouldn't be lexically bound. */ 1139 special (with `defvar' etc), and shouldn't be lexically bound. */
1140 unsigned declared_special : 1; 1140 unsigned declared_special : 1;
1141 1141
1142 unsigned spacer : 23;
1143
1142 /* The symbol's name, as a Lisp string. 1144 /* The symbol's name, as a Lisp string.
1143 The name "xname" is used to intentionally break code referring to 1145 The name "xname" is used to intentionally break code referring to
1144 the old field "name" of type pointer to struct Lisp_String. */ 1146 the old field "name" of type pointer to struct Lisp_String. */
@@ -2970,6 +2972,7 @@ extern Lisp_Object Qinhibit_quit, Qclosure;
2970extern Lisp_Object Qand_rest; 2972extern Lisp_Object Qand_rest;
2971extern Lisp_Object Vautoload_queue; 2973extern Lisp_Object Vautoload_queue;
2972extern Lisp_Object Vsignaling_function; 2974extern Lisp_Object Vsignaling_function;
2975extern Lisp_Object inhibit_lisp_code;
2973extern int handling_signal; 2976extern int handling_signal;
2974#if BYTE_MARK_STACK 2977#if BYTE_MARK_STACK
2975extern struct catchtag *catchlist; 2978extern struct catchtag *catchlist;
@@ -3580,6 +3583,7 @@ EXFUN (Fmsdos_downcase_filename, 1);
3580#ifdef HAVE_LIBXML2 3583#ifdef HAVE_LIBXML2
3581/* Defined in xml.c */ 3584/* Defined in xml.c */
3582extern void syms_of_xml (void); 3585extern void syms_of_xml (void);
3586extern void xml_cleanup_parser (void);
3583#endif 3587#endif
3584 3588
3585#ifdef HAVE_MENUS 3589#ifdef HAVE_MENUS