aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c22
1 files changed, 2 insertions, 20 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 27ab08f628c..35f22bf454e 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -44,21 +44,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
44 is enforced by the subrs installing properties onto the intervals. */ 44 is enforced by the subrs installing properties onto the intervals. */
45 45
46 46
47/* Types of hooks. */
48static Lisp_Object Qmouse_left;
49static Lisp_Object Qmouse_entered;
50Lisp_Object Qpoint_left;
51Lisp_Object Qpoint_entered;
52Lisp_Object Qcategory;
53Lisp_Object Qlocal_map;
54
55/* Visual properties text (including strings) may have. */
56static Lisp_Object Qforeground, Qbackground, Qunderline;
57Lisp_Object Qfont;
58static Lisp_Object Qstipple;
59Lisp_Object Qinvisible, Qintangible, Qmouse_face;
60static Lisp_Object Qread_only;
61Lisp_Object Qminibuffer_prompt;
62 47
63enum property_set_type 48enum property_set_type
64{ 49{
@@ -67,9 +52,6 @@ enum property_set_type
67 TEXT_PROPERTY_APPEND 52 TEXT_PROPERTY_APPEND
68}; 53};
69 54
70/* Sticky properties. */
71Lisp_Object Qfront_sticky, Qrear_nonsticky;
72
73/* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to 55/* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to
74 the o1's cdr. Otherwise, return zero. This is handy for 56 the o1's cdr. Otherwise, return zero. This is handy for
75 traversing plists. */ 57 traversing plists. */
@@ -2383,7 +2365,7 @@ inherits it if NONSTICKINESS is nil. The `front-sticky' and
2383 interval_insert_in_front_hooks = Qnil; 2365 interval_insert_in_front_hooks = Qnil;
2384 2366
2385 2367
2386 /* Common attributes one might give text */ 2368 /* Common attributes one might give text. */
2387 2369
2388 DEFSYM (Qforeground, "foreground"); 2370 DEFSYM (Qforeground, "foreground");
2389 DEFSYM (Qbackground, "background"); 2371 DEFSYM (Qbackground, "background");
@@ -2401,7 +2383,7 @@ inherits it if NONSTICKINESS is nil. The `front-sticky' and
2401 DEFSYM (Qmouse_face, "mouse-face"); 2383 DEFSYM (Qmouse_face, "mouse-face");
2402 DEFSYM (Qminibuffer_prompt, "minibuffer-prompt"); 2384 DEFSYM (Qminibuffer_prompt, "minibuffer-prompt");
2403 2385
2404 /* Properties that text might use to specify certain actions */ 2386 /* Properties that text might use to specify certain actions. */
2405 2387
2406 DEFSYM (Qmouse_left, "mouse-left"); 2388 DEFSYM (Qmouse_left, "mouse-left");
2407 DEFSYM (Qmouse_entered, "mouse-entered"); 2389 DEFSYM (Qmouse_entered, "mouse-entered");