diff options
| author | Karl Heuer | 1994-04-08 07:10:05 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-08 07:10:05 +0000 |
| commit | 46b4e74145ae0903b7b208228be5ddc64f9dcc06 (patch) | |
| tree | bfda4dc39241daf2435922af190a00ec29b32bef | |
| parent | 86d62d7634f2083badae901db2f61c73d61f9ae5 (diff) | |
| download | emacs-46b4e74145ae0903b7b208228be5ddc64f9dcc06.tar.gz emacs-46b4e74145ae0903b7b208228be5ddc64f9dcc06.zip | |
(syms_of_textprop): Initialize Qintangible.
| -rw-r--r-- | src/textprop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textprop.c b/src/textprop.c index fa0817c7e4d..e293eeadb6e 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -49,7 +49,7 @@ Lisp_Object Qlocal_map; | |||
| 49 | 49 | ||
| 50 | /* Visual properties text (including strings) may have. */ | 50 | /* Visual properties text (including strings) may have. */ |
| 51 | Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; | 51 | Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; |
| 52 | Lisp_Object Qinvisible, Qread_only, Qhidden; | 52 | Lisp_Object Qinvisible, Qread_only, Qintangible; |
| 53 | 53 | ||
| 54 | /* Sticky properties */ | 54 | /* Sticky properties */ |
| 55 | Lisp_Object Qfront_sticky, Qrear_nonsticky; | 55 | Lisp_Object Qfront_sticky, Qrear_nonsticky; |
| @@ -1334,8 +1334,8 @@ percentage by which the left interval tree should not differ from the right."); | |||
| 1334 | Qread_only = intern ("read-only"); | 1334 | Qread_only = intern ("read-only"); |
| 1335 | staticpro (&Qinvisible); | 1335 | staticpro (&Qinvisible); |
| 1336 | Qinvisible = intern ("invisible"); | 1336 | Qinvisible = intern ("invisible"); |
| 1337 | staticpro (&Qhidden); | 1337 | staticpro (&Qintangible); |
| 1338 | Qhidden = intern ("hidden"); | 1338 | Qintangible = intern ("intangible"); |
| 1339 | staticpro (&Qcategory); | 1339 | staticpro (&Qcategory); |
| 1340 | Qcategory = intern ("category"); | 1340 | Qcategory = intern ("category"); |
| 1341 | staticpro (&Qlocal_map); | 1341 | staticpro (&Qlocal_map); |