aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 19:53:50 -0700
committerPaul Eggert2011-04-13 19:53:50 -0700
commit50436f3383af8a123437e9bece3a584597a227f2 (patch)
treea247185ac27daa69312edca149ae723dce33c05c /src/textprop.c
parent64520e5cf9ad7cba4f23288bffeec1aa2fff6c49 (diff)
downloademacs-50436f3383af8a123437e9bece3a584597a227f2.tar.gz
emacs-50436f3383af8a123437e9bece3a584597a227f2.zip
* textprop.c (interval_insert_behind_hooks): Now static.
(interval_insert_in_front_hooks): Likewise.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textprop.c b/src/textprop.c
index b3bb064e8b8..e85b041891c 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -72,8 +72,8 @@ Lisp_Object Qfront_sticky, Qrear_nonsticky;
72 72
73/* verify_interval_modification saves insertion hooks here 73/* verify_interval_modification saves insertion hooks here
74 to be run later by report_interval_modification. */ 74 to be run later by report_interval_modification. */
75Lisp_Object interval_insert_behind_hooks; 75static Lisp_Object interval_insert_behind_hooks;
76Lisp_Object interval_insert_in_front_hooks; 76static Lisp_Object interval_insert_in_front_hooks;
77 77
78static void text_read_only (Lisp_Object) NO_RETURN; 78static void text_read_only (Lisp_Object) NO_RETURN;
79INFUN (Fprevious_property_change, 3); 79INFUN (Fprevious_property_change, 3);