Mercurial > emacs
diff src/textprop.c @ 6755:a2bccbc870e6
(syms_of_textprop): Initialize Qintangible.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Fri, 08 Apr 1994 07:10:05 +0000 |
| parents | 9805eca29f39 |
| children | b6b93953cc83 |
line wrap: on
line diff
--- a/src/textprop.c Fri Apr 08 07:09:55 1994 +0000 +++ b/src/textprop.c Fri Apr 08 07:10:05 1994 +0000 @@ -49,7 +49,7 @@ /* Visual properties text (including strings) may have. */ Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; -Lisp_Object Qinvisible, Qread_only, Qhidden; +Lisp_Object Qinvisible, Qread_only, Qintangible; /* Sticky properties */ Lisp_Object Qfront_sticky, Qrear_nonsticky; @@ -1334,8 +1334,8 @@ Qread_only = intern ("read-only"); staticpro (&Qinvisible); Qinvisible = intern ("invisible"); - staticpro (&Qhidden); - Qhidden = intern ("hidden"); + staticpro (&Qintangible); + Qintangible = intern ("intangible"); staticpro (&Qcategory); Qcategory = intern ("category"); staticpro (&Qlocal_map);
