From: Gerd Moellmann Date: Sun, 5 Mar 2000 20:19:32 +0000 (+0000) Subject: (QCdata): Moved here from xfns.c. X-Git-Tag: emacs-pretest-21.0.90~4760 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9499d71b701803c85a8943efbfcbb5628977b46c;p=emacs.git (QCdata): Moved here from xfns.c. (syms_of_xdisp): Initialize QCdata. --- 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; Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; Lisp_Object Qredisplay_end_trigger_functions; Lisp_Object Qinhibit_point_motion_hooks; -Lisp_Object QCeval, Qwhen, QCfile; +Lisp_Object QCeval, Qwhen, QCfile, QCdata; Lisp_Object Qfontified; /* Functions called to fontify regions of text. */ @@ -12837,6 +12837,8 @@ syms_of_xdisp () staticpro (&Qinhibit_point_motion_hooks); Qinhibit_point_motion_hooks = intern ("inhibit-point-motion-hooks"); + QCdata = intern (":data"); + staticpro (&QCdata); Qdisplay = intern ("display"); staticpro (&Qdisplay); Qspace_width = intern ("space-width");