aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-05 20:19:32 +0000
committerGerd Moellmann2000-03-05 20:19:32 +0000
commit9499d71b701803c85a8943efbfcbb5628977b46c (patch)
treec178761499d31ea51315ee0450ceb7c03acc1e09 /src
parent90ebdb19d18712f64cf83bdee6d7294b93d569ba (diff)
downloademacs-9499d71b701803c85a8943efbfcbb5628977b46c.tar.gz
emacs-9499d71b701803c85a8943efbfcbb5628977b46c.zip
(QCdata): Moved here from xfns.c.
(syms_of_xdisp): Initialize QCdata.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 1401da80a75..7ed073029ed 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -219,7 +219,7 @@ Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
219Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; 219Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
220Lisp_Object Qredisplay_end_trigger_functions; 220Lisp_Object Qredisplay_end_trigger_functions;
221Lisp_Object Qinhibit_point_motion_hooks; 221Lisp_Object Qinhibit_point_motion_hooks;
222Lisp_Object QCeval, Qwhen, QCfile; 222Lisp_Object QCeval, Qwhen, QCfile, QCdata;
223Lisp_Object Qfontified; 223Lisp_Object Qfontified;
224 224
225/* Functions called to fontify regions of text. */ 225/* Functions called to fontify regions of text. */
@@ -12837,6 +12837,8 @@ syms_of_xdisp ()
12837 staticpro (&Qinhibit_point_motion_hooks); 12837 staticpro (&Qinhibit_point_motion_hooks);
12838 Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks"); 12838 Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks");
12839 12839
12840 QCdata = intern (":data");
12841 staticpro (&QCdata);
12840 Qdisplay = intern ("display"); 12842 Qdisplay = intern ("display");
12841 staticpro (&Qdisplay); 12843 staticpro (&Qdisplay);
12842 Qspace_width = intern ("space-width"); 12844 Qspace_width = intern ("space-width");