diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-27 16:04:57 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-27 16:04:57 +0000 |
commit | 8ec4057176c715959fc82ae33923dee8133c98aa (patch) | |
tree | 9b2ffb840200b6fa31371b385d8fc7bebe7df91c /src/textprop.c | |
parent | 42e0c14f7f2e90d69f7c6a30e1dd0491b6940a32 (diff) | |
download | emacs-8ec4057176c715959fc82ae33923dee8133c98aa.tar.gz |
(Vdefault_text_properties): name changed from Vdefault_properties.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 10 |
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; #define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCONS (o1)->cdr, CONSP (o2))) Lisp_Object Vinhibit_point_motion_hooks; -Lisp_Object Vdefault_properties; +Lisp_Object Vdefault_text_properties; /* Extract the interval at the position pointed to by BEGIN from @@ -1393,11 +1393,11 @@ copy_text_properties (start, end, src, pos, dest, prop) void syms_of_textprop () { - DEFVAR_LISP ("default-properties", &Vdefault_properties, + DEFVAR_LISP ("default-text-properties", &Vdefault_text_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; +The value of a property in this list is seen as the value for every\n\ +character that does not have its own value for that property."); + Vdefault_text_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\ |