diff options
| -rw-r--r-- | src/textprop.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/textprop.c b/src/textprop.c index c8ec008dcbd..317f8fa6aa3 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Interface code for dealing with text properties. | 1 | /* Interface code for dealing with text properties. |
| 2 | Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003 | 2 | Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -2233,7 +2233,9 @@ If a character in a buffer has PROPERTY, new text inserted adjacent to | |||
| 2233 | the character doesn't inherit PROPERTY if NONSTICKINESS is non-nil, | 2233 | the character doesn't inherit PROPERTY if NONSTICKINESS is non-nil, |
| 2234 | inherits it if NONSTICKINESS is nil. The front-sticky and | 2234 | inherits it if NONSTICKINESS is nil. The front-sticky and |
| 2235 | rear-nonsticky properties of the character overrides NONSTICKINESS. */); | 2235 | rear-nonsticky properties of the character overrides NONSTICKINESS. */); |
| 2236 | Vtext_property_default_nonsticky = Qnil; | 2236 | /* Text property `syntax-table' should be nonsticky by default. */ |
| 2237 | Vtext_property_default_nonsticky | ||
| 2238 | = Fcons (Fcons (intern ("syntax-table"), Qt), Qnil); | ||
| 2237 | 2239 | ||
| 2238 | staticpro (&interval_insert_behind_hooks); | 2240 | staticpro (&interval_insert_behind_hooks); |
| 2239 | staticpro (&interval_insert_in_front_hooks); | 2241 | staticpro (&interval_insert_in_front_hooks); |