aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 53f92ec936b..a0d7d2689c4 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -47,16 +47,19 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
47 47
48 48
49/* Types of hooks. */ 49/* Types of hooks. */
50Lisp_Object Qmouse_left; 50static Lisp_Object Qmouse_left;
51Lisp_Object Qmouse_entered; 51static Lisp_Object Qmouse_entered;
52Lisp_Object Qpoint_left; 52Lisp_Object Qpoint_left;
53Lisp_Object Qpoint_entered; 53Lisp_Object Qpoint_entered;
54Lisp_Object Qcategory; 54Lisp_Object Qcategory;
55Lisp_Object Qlocal_map; 55Lisp_Object Qlocal_map;
56 56
57/* Visual properties text (including strings) may have. */ 57/* Visual properties text (including strings) may have. */
58Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; 58static Lisp_Object Qforeground, Qbackground, Qunderline;
59Lisp_Object Qinvisible, Qread_only, Qintangible, Qmouse_face; 59Lisp_Object Qfont;
60static Lisp_Object Qstipple;
61Lisp_Object Qinvisible, Qintangible, Qmouse_face;
62static Lisp_Object Qread_only;
60Lisp_Object Qminibuffer_prompt; 63Lisp_Object Qminibuffer_prompt;
61 64
62/* Sticky properties */ 65/* Sticky properties */
@@ -69,10 +72,12 @@ Lisp_Object Qfront_sticky, Qrear_nonsticky;
69 72
70/* verify_interval_modification saves insertion hooks here 73/* verify_interval_modification saves insertion hooks here
71 to be run later by report_interval_modification. */ 74 to be run later by report_interval_modification. */
72Lisp_Object interval_insert_behind_hooks; 75static Lisp_Object interval_insert_behind_hooks;
73Lisp_Object interval_insert_in_front_hooks; 76static Lisp_Object interval_insert_in_front_hooks;
74 77
75static void text_read_only (Lisp_Object) NO_RETURN; 78static void text_read_only (Lisp_Object) NO_RETURN;
79static Lisp_Object Fprevious_property_change (Lisp_Object, Lisp_Object,
80 Lisp_Object);
76 81
77 82
78/* Signal a `text-read-only' error. This function makes it easier 83/* Signal a `text-read-only' error. This function makes it easier