diff options
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/textprop.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3a649e0410b..7d5ae728f79 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-04-14 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-04-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * textprop.c (interval_insert_behind_hooks): Now static. | ||
| 4 | (interval_insert_in_front_hooks): Likewise. | ||
| 5 | |||
| 3 | * term.c: Make symbols static if they're not exported. | 6 | * term.c: Make symbols static if they're not exported. |
| 4 | (tty_turn_off_highlight, get_tty_terminal, max_frame_cols): | 7 | (tty_turn_off_highlight, get_tty_terminal, max_frame_cols): |
| 5 | (max_frame_lines, tty_set_terminal_modes): | 8 | (max_frame_lines, tty_set_terminal_modes): |
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. */ |
| 75 | Lisp_Object interval_insert_behind_hooks; | 75 | static Lisp_Object interval_insert_behind_hooks; |
| 76 | Lisp_Object interval_insert_in_front_hooks; | 76 | static Lisp_Object interval_insert_in_front_hooks; |
| 77 | 77 | ||
| 78 | static void text_read_only (Lisp_Object) NO_RETURN; | 78 | static void text_read_only (Lisp_Object) NO_RETURN; |
| 79 | INFUN (Fprevious_property_change, 3); | 79 | INFUN (Fprevious_property_change, 3); |