summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1999-12-15 00:25:34 +0000
committerKenichi Handa <handa@m17n.org>1999-12-15 00:25:34 +0000
commit58cad5ed4ffe30d1db24ef932ef4aba016cf944b (patch)
tree82dfd9994834ab6be412e11c86758990514f10f5
parent78d2079c49189b3dc77cef2efeed635e6eaab711 (diff)
downloademacs-58cad5ed4ffe30d1db24ef932ef4aba016cf944b.tar.gz
Include intervals.h.
(syms_of_xfns): Make `display' property nonsticky by default.
-rw-r--r--src/xfns.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 9c3c551bf60..d88e69c405f 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -41,6 +41,7 @@ Boston, MA 02111-1307, USA. */
#include "frame.h"
#include "window.h"
#include "buffer.h"
+#include "intervals.h"
#include "dispextern.h"
#include "keyboard.h"
#include "blockinput.h"
@@ -10192,6 +10193,11 @@ syms_of_xfns ()
staticpro (&Qscreen_gamma);
/* This is the end of symbol initialization. */
+ /* Text property `display' should be nonsticky by default. */
+ Vtext_property_default_nonsticky
+ = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
+
+
Qlaplace = intern ("laplace");
staticpro (&Qlaplace);