diff options
| author | Stefan Monnier | 2007-06-11 20:08:49 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-06-11 20:08:49 +0000 |
| commit | c9612b8eb171fb38aeebffb62143736b78deb426 (patch) | |
| tree | e16c28575cb19591364237c0c007b1d3da94ddf2 /src | |
| parent | b6e0e86c9351d3a6303ba3787492e76f821d661f (diff) | |
| download | emacs-c9612b8eb171fb38aeebffb62143736b78deb426.tar.gz emacs-c9612b8eb171fb38aeebffb62143736b78deb426.zip | |
Include intervals.h to declare Fget_text_property.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 17 | ||||
| -rw-r--r-- | src/term.c | 1 |
2 files changed, 11 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a2e1e5b8484..0c23f57099e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * term.c: Include intervals.h to declare Fget_text_property. | ||
| 4 | |||
| 1 | 2007-06-10 Jason Rumney <jasonr@gnu.org> | 5 | 2007-06-10 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * w32fns.c (Fx_file_dialog): Take size from struct not pointer. | 7 | * w32fns.c (Fx_file_dialog): Take size from struct not pointer. |
| @@ -106,11 +110,11 @@ | |||
| 106 | New function. | 110 | New function. |
| 107 | (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: | 111 | (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: |
| 108 | Register it. | 112 | Register it. |
| 109 | (XTread_socket) [TARGET_API_MAC_CARBON]: Consolidate | 113 | (XTread_socket) [TARGET_API_MAC_CARBON]: |
| 110 | SendEventToEventTarget calls. Use FRAME_OUTER_TO_INNER_DIFF_X and | 114 | Consolidate SendEventToEventTarget calls. |
| 111 | FRAME_OUTER_TO_INNER_DIFF_Y. Move application activation handler | 115 | Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y. |
| 112 | to mac_handle_application_event. Move keyboard handler to | 116 | Move application activation handler to mac_handle_application_event. |
| 113 | mac_handle_keyboard_event. | 117 | Move keyboard handler to mac_handle_keyboard_event. |
| 114 | (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke. | 118 | (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke. |
| 115 | (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call | 119 | (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call |
| 116 | init_command_handler. Call install_application_handler. | 120 | init_command_handler. Call install_application_handler. |
| @@ -124,8 +128,7 @@ | |||
| 124 | 128 | ||
| 125 | 2007-06-06 Chong Yidong <cyd@stupidchicken.com> | 129 | 2007-06-06 Chong Yidong <cyd@stupidchicken.com> |
| 126 | 130 | ||
| 127 | * image.c (xpm_load): Remove spurious call to | 131 | * image.c (xpm_load): Remove spurious call to xpm_init_color_cache. |
| 128 | xpm_init_color_cache. | ||
| 129 | 132 | ||
| 130 | 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 133 | 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 131 | 134 | ||
diff --git a/src/term.c b/src/term.c index 88bb181fb81..20d3024bd6d 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -39,6 +39,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 39 | #include "window.h" | 39 | #include "window.h" |
| 40 | #include "keymap.h" | 40 | #include "keymap.h" |
| 41 | #include "blockinput.h" | 41 | #include "blockinput.h" |
| 42 | #include "intervals.h" | ||
| 42 | 43 | ||
| 43 | /* For now, don't try to include termcap.h. On some systems, | 44 | /* For now, don't try to include termcap.h. On some systems, |
| 44 | configure finds a non-standard termcap.h that the main build | 45 | configure finds a non-standard termcap.h that the main build |