diff options
| author | Boris Goldowsky | 1995-03-27 16:04:57 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-27 16:04:57 +0000 |
| commit | ad1b2f20ac83f455ee23962c334592be03b8087d (patch) | |
| tree | c53b4a08b6328e43d79dad2f4205ca3dd58a75a8 /src | |
| parent | be9d483dd96918b591a8545d79459a04ea7017d7 (diff) | |
| download | emacs-ad1b2f20ac83f455ee23962c334592be03b8087d.tar.gz emacs-ad1b2f20ac83f455ee23962c334592be03b8087d.zip | |
(Vdefault_text_properties): name changed from Vdefault_properties.
Diffstat (limited to 'src')
| -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; | |||
| 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 | ||
| 66 | Lisp_Object Vinhibit_point_motion_hooks; | 66 | Lisp_Object Vinhibit_point_motion_hooks; |
| 67 | Lisp_Object Vdefault_properties; | 67 | Lisp_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) | |||
| 1393 | void | 1393 | void |
| 1394 | syms_of_textprop () | 1394 | syms_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\ |
| 1398 | The value of a property in this list is seen as the value for every character\n\ | 1398 | The value of a property in this list is seen as the value for every\n\ |
| 1399 | that does not have its own value for that property."); | 1399 | character 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\ |