aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 7f635777d0b..5b8dada6042 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -64,7 +64,7 @@ Lisp_Object Qfront_sticky, Qrear_nonsticky;
64#define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCONS (o1)->cdr, CONSP (o2))) 64#define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCONS (o1)->cdr, CONSP (o2)))
65 65
66Lisp_Object Vinhibit_point_motion_hooks; 66Lisp_Object Vinhibit_point_motion_hooks;
67Lisp_Object Vdefault_properties; 67Lisp_Object Vdefault_text_properties;
68 68
69 69
70/* Extract the interval at the position pointed to by BEGIN from 70/* Extract the interval at the position pointed to by BEGIN from
@@ -1393,11 +1393,11 @@ copy_text_properties (start, end, src, pos, dest, prop)
1393void 1393void
1394syms_of_textprop () 1394syms_of_textprop ()
1395{ 1395{
1396 DEFVAR_LISP ("default-properties", &Vdefault_properties, 1396 DEFVAR_LISP ("default-text-properties", &Vdefault_text_properties,
1397 "Property-list used as default values.\n\ 1397 "Property-list used as default values.\n\
1398The value of a property in this list is seen as the value for every character\n\ 1398The value of a property in this list is seen as the value for every\n\
1399that does not have its own value for that property."); 1399character that does not have its own value for that property.");
1400 Vdefault_properties = Qnil; 1400 Vdefault_text_properties = Qnil;
1401 1401
1402 DEFVAR_LISP ("inhibit-point-motion-hooks", &Vinhibit_point_motion_hooks, 1402 DEFVAR_LISP ("inhibit-point-motion-hooks", &Vinhibit_point_motion_hooks,
1403 "If non-nil, don't run `point-left' and `point-entered' text properties.\n\ 1403 "If non-nil, don't run `point-left' and `point-entered' text properties.\n\