diff options
| -rw-r--r-- | src/xfns.c | 6 |
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. */ | |||
| 41 | #include "frame.h" | 41 | #include "frame.h" |
| 42 | #include "window.h" | 42 | #include "window.h" |
| 43 | #include "buffer.h" | 43 | #include "buffer.h" |
| 44 | #include "intervals.h" | ||
| 44 | #include "dispextern.h" | 45 | #include "dispextern.h" |
| 45 | #include "keyboard.h" | 46 | #include "keyboard.h" |
| 46 | #include "blockinput.h" | 47 | #include "blockinput.h" |
| @@ -10192,6 +10193,11 @@ syms_of_xfns () | |||
| 10192 | staticpro (&Qscreen_gamma); | 10193 | staticpro (&Qscreen_gamma); |
| 10193 | /* This is the end of symbol initialization. */ | 10194 | /* This is the end of symbol initialization. */ |
| 10194 | 10195 | ||
| 10196 | /* Text property `display' should be nonsticky by default. */ | ||
| 10197 | Vtext_property_default_nonsticky | ||
| 10198 | = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky); | ||
| 10199 | |||
| 10200 | |||
| 10195 | Qlaplace = intern ("laplace"); | 10201 | Qlaplace = intern ("laplace"); |
| 10196 | staticpro (&Qlaplace); | 10202 | staticpro (&Qlaplace); |
| 10197 | 10203 | ||