# HG changeset patch # User Boris Goldowsky # Date 794504636 0 # Node ID 0480d65be55dbd1909e39fecaee1802b85414fc0 # Parent 0d6841b9a13284aa702e44d9de940763c1863a7e (Vdefault_properties): New vbl. diff -r 0d6841b9a132 -r 0480d65be55d src/textprop.c --- a/src/textprop.c Mon Mar 06 05:19:05 1995 +0000 +++ b/src/textprop.c Mon Mar 06 15:43:56 1995 +0000 @@ -64,6 +64,7 @@ #define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCONS (o1)->cdr, CONSP (o2))) Lisp_Object Vinhibit_point_motion_hooks; +Lisp_Object Vdefault_properties; /* Extract the interval at the position pointed to by BEGIN from @@ -1379,6 +1380,12 @@ void syms_of_textprop () { + DEFVAR_LISP ("default-properties", &Vdefault_properties, + "Property-list used as default values.\n\ +The value of a property in this list is seen as the value for every character\n\ +that does not have its own value for that property."); + Vdefault_properties = Qnil; + DEFVAR_LISP ("inhibit-point-motion-hooks", &Vinhibit_point_motion_hooks, "If non-nil, don't run `point-left' and `point-entered' text properties.\n\ This also inhibits the use of the `intangible' text property.");