diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/intervals.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intervals.h b/src/intervals.h index 1a6bb341d0c..6597ae37a56 100644 --- a/src/intervals.h +++ b/src/intervals.h | |||
| @@ -247,7 +247,8 @@ extern Lisp_Object textget P_ ((Lisp_Object, Lisp_Object)); | |||
| 247 | extern void move_if_not_intangible P_ ((int)); | 247 | extern void move_if_not_intangible P_ ((int)); |
| 248 | extern int get_property_and_range P_ ((int, Lisp_Object, Lisp_Object *, | 248 | extern int get_property_and_range P_ ((int, Lisp_Object, Lisp_Object *, |
| 249 | int *, int *, Lisp_Object)); | 249 | int *, int *, Lisp_Object)); |
| 250 | extern Lisp_Object get_local_map P_ ((int, struct buffer *)); | 250 | enum map_property {local_map, keymap}; |
| 251 | extern Lisp_Object get_local_map P_ ((int, struct buffer *, enum map_property)); | ||
| 251 | extern INTERVAL update_interval P_ ((INTERVAL, int)); | 252 | extern INTERVAL update_interval P_ ((INTERVAL, int)); |
| 252 | extern void set_intervals_multibyte P_ ((int)); | 253 | extern void set_intervals_multibyte P_ ((int)); |
| 253 | extern INTERVAL validate_interval_range P_ ((Lisp_Object, Lisp_Object *, | 254 | extern INTERVAL validate_interval_range P_ ((Lisp_Object, Lisp_Object *, |
| @@ -266,6 +267,7 @@ extern Lisp_Object Qpoint_entered; | |||
| 266 | extern Lisp_Object Qmodification_hooks; | 267 | extern Lisp_Object Qmodification_hooks; |
| 267 | extern Lisp_Object Qcategory; | 268 | extern Lisp_Object Qcategory; |
| 268 | extern Lisp_Object Qlocal_map; | 269 | extern Lisp_Object Qlocal_map; |
| 270 | extern Lisp_Object Qkeymap; | ||
| 269 | 271 | ||
| 270 | /* Visual properties text (including strings) may have. */ | 272 | /* Visual properties text (including strings) may have. */ |
| 271 | extern Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; | 273 | extern Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; |