diff options
Diffstat (limited to 'src/textprop.c')
| -rw-r--r-- | src/textprop.c | 17 |
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. */ |
| 50 | Lisp_Object Qmouse_left; | 50 | static Lisp_Object Qmouse_left; |
| 51 | Lisp_Object Qmouse_entered; | 51 | static Lisp_Object Qmouse_entered; |
| 52 | Lisp_Object Qpoint_left; | 52 | Lisp_Object Qpoint_left; |
| 53 | Lisp_Object Qpoint_entered; | 53 | Lisp_Object Qpoint_entered; |
| 54 | Lisp_Object Qcategory; | 54 | Lisp_Object Qcategory; |
| 55 | Lisp_Object Qlocal_map; | 55 | Lisp_Object Qlocal_map; |
| 56 | 56 | ||
| 57 | /* Visual properties text (including strings) may have. */ | 57 | /* Visual properties text (including strings) may have. */ |
| 58 | Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; | 58 | static Lisp_Object Qforeground, Qbackground, Qunderline; |
| 59 | Lisp_Object Qinvisible, Qread_only, Qintangible, Qmouse_face; | 59 | Lisp_Object Qfont; |
| 60 | static Lisp_Object Qstipple; | ||
| 61 | Lisp_Object Qinvisible, Qintangible, Qmouse_face; | ||
| 62 | static Lisp_Object Qread_only; | ||
| 60 | Lisp_Object Qminibuffer_prompt; | 63 | Lisp_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. */ |
| 72 | Lisp_Object interval_insert_behind_hooks; | 75 | static Lisp_Object interval_insert_behind_hooks; |
| 73 | Lisp_Object interval_insert_in_front_hooks; | 76 | static Lisp_Object interval_insert_in_front_hooks; |
| 74 | 77 | ||
| 75 | static void text_read_only (Lisp_Object) NO_RETURN; | 78 | static void text_read_only (Lisp_Object) NO_RETURN; |
| 79 | static 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 |