]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_textprop): Initialize Qintangible.
authorKarl Heuer <kwzh@gnu.org>
Fri, 8 Apr 1994 07:10:05 +0000 (07:10 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 8 Apr 1994 07:10:05 +0000 (07:10 +0000)
src/textprop.c

index fa0817c7e4d816d4036ad381c7f096612c0170e4..e293eeadb6ef801d58ee6c5a6717c970825cf632 100644 (file)
@@ -49,7 +49,7 @@ Lisp_Object Qlocal_map;
 
 /* 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 @@ percentage by which the left interval tree should not differ from the right.");
   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);