diff options
| author | Karoly Lorentey | 2007-04-22 12:12:29 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2007-04-22 12:12:29 +0000 |
| commit | e18c709364b095ea0be8ecabe458ac9a642a252f (patch) | |
| tree | efe814a842f932f387b3947c572bf43a548d17ef /src/ChangeLog | |
| parent | 81088e260b086fe28f36964f32b6338210ec6fd8 (diff) | |
| parent | 9f25e707aaad5ed14a9448e9c5d345ff0bdbc5a7 (diff) | |
| download | emacs-e18c709364b095ea0be8ecabe458ac9a642a252f.tar.gz emacs-e18c709364b095ea0be8ecabe458ac9a642a252f.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-660
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-661
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-662
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-663
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-664
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-665
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-666
Fix read-only prompt problem in isearch
* emacs@sv.gnu.org/emacs--devo--0--patch-667
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-668
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-669
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-670
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-671
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-672
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-673
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-206
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-207
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-208
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-600
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 201 |
1 files changed, 188 insertions, 13 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d9633301be2..76414a593f6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,183 @@ | |||
| 1 | 2007-03-02 Stuart D. Herring <herring@lanl.gov> | 1 | 2007-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 2 | ||
| 3 | * keymap.c (Fkey_binding): Don't consider two-element lists as | 3 | * Makefile.in (alloca.o, gtkutil.o): Depend on systime.h. |
| 4 | events. | 4 | (dired.o, editfns.o, fileio.o, msdos.o): Depend on atimer.h. |
| 5 | (dosfns.o, window.o, fns.o, macselect.o): Depend on atimer.h and | ||
| 6 | systime.h. | ||
| 7 | (term.o, print.o, lread.o): Depend on blockinput.h, atimer.h, and | ||
| 8 | systime.h. | ||
| 9 | (macfns.o): Remove duplicate dependency on systime.h. | ||
| 10 | |||
| 11 | * dispnew.c (Fopen_termscript): Add BLOCK_INPUT around fclose. | ||
| 12 | (Fsend_string_to_terminal): Add BLOCK_INPUT around fwrite. | ||
| 13 | |||
| 14 | * fileio.c (do_auto_save_unwind): Add BLOCK_INPUT around fclose. | ||
| 15 | (Fdo_auto_save): Add BLOCK_INPUT around fwrite. | ||
| 16 | |||
| 17 | * keyboard.c (record_char): Add BLOCK_INPUT around fwrite. | ||
| 18 | (Fopen_dribble_file): Add BLOCK_INPUT around fclose. | ||
| 19 | |||
| 20 | * lread.c: Include blockinput.h. | ||
| 21 | (readchar, Fget_file_char): Add BLOCK_INPUT around getc. | ||
| 22 | (unreadchar): Add BLOCK_INPUT around ungetc. | ||
| 23 | (load_unwind): Add BLOCK_INPUT around fclose. | ||
| 24 | |||
| 25 | * print.c: Include blockinput.h. | ||
| 26 | (Fredirect_debugging_output): Add BLOCK_INPUT around fclose. | ||
| 27 | |||
| 28 | * process.c (Fmake_network_process) [HAVE_GETADDRINFO]: Clear | ||
| 29 | immediate_quit before calling freeaddrinfo. Add BLOCK_INPUT | ||
| 30 | around freeaddrinfo. | ||
| 31 | |||
| 32 | * term.c: Include blockinput.h. | ||
| 33 | (write_glyphs, insert_glyphs): Add BLOCK_INPUT around fwrite. | ||
| 34 | |||
| 35 | 2007-03-19 Richard Stallman <rms@gnu.org> | ||
| 36 | |||
| 37 | * keyboard.c (NUM_RECENT_KEYS): Bump up to 300. | ||
| 38 | |||
| 39 | * buffer.c (syms_of_buffer): Doc fix. | ||
| 40 | |||
| 41 | 2007-03-18 Chong Yidong <cyd@stupidchicken.com> | ||
| 42 | |||
| 43 | * image.c (pbm_load): Signal error for invalid image size. | ||
| 44 | |||
| 45 | 2007-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 46 | |||
| 47 | * macterm.c (note_mouse_movement): Don't return immediately for | ||
| 48 | LeaveNotify case. | ||
| 49 | |||
| 50 | * macmenu.c (popup_activated_flag): New variable. | ||
| 51 | (x_activate_menubar, mac_menu_show): Set it during menu tracking. | ||
| 52 | (popup_activated): New function. | ||
| 53 | |||
| 54 | * xdisp.c (redisplay_internal, note_mouse_highlight): Check | ||
| 55 | popup_activated for MAC_OS. | ||
| 56 | |||
| 57 | 2007-03-17 Juanma Barranquero <lekktu@gmail.com> | ||
| 58 | |||
| 59 | * buffer.c (syms_of_buffer) <buffer-display-table>: Doc fix. | ||
| 60 | Reported by Nikolaj Schumacher <n_schumacher@web.de>. | ||
| 61 | |||
| 62 | 2007-03-17 Richard Stallman <rms@gnu.org> | ||
| 63 | |||
| 64 | * dired.c (file_name_completion): gcpro NAME. | ||
| 65 | |||
| 66 | 2007-03-17 Chong Yidong <cyd@stupidchicken.com> | ||
| 67 | |||
| 68 | * xdisp.c (try_window_id): Increment matrix positions if the | ||
| 69 | buffer's byte count has increased, but not the character count. | ||
| 70 | |||
| 71 | 2007-03-12 Andreas Schwab <schwab@suse.de> | ||
| 72 | |||
| 73 | * lisp.h: Declare check_obarray. | ||
| 74 | |||
| 75 | * process.c (Fdelete_process): Properly handle deletion of first | ||
| 76 | element of deleted_pid_list. | ||
| 77 | (create_process): Declare pid as pid_t. | ||
| 78 | |||
| 79 | 2007-03-12 Kim F. Storm <storm@cua.dk> | ||
| 80 | |||
| 81 | * process.c (sigchld_handler): Change type of pid to pid_t. | ||
| 82 | Scan deleted_pid_list explicitly to avoid using Fmember which don't | ||
| 83 | know about mark bits and make_fixnum_or_float which may malloc. | ||
| 84 | Reported by Andreas Schwab. | ||
| 85 | |||
| 86 | * keyboard.c (read_key_sequence): Store original event into keybuf | ||
| 87 | when replaying sequence with local keymap(s) from string. | ||
| 88 | |||
| 89 | 2007-03-12 Glenn Morris <rgm@gnu.org> | ||
| 90 | |||
| 91 | * editfns.c (Fdecode_time, Fencode_time): Doc fix ("daylight | ||
| 92 | savings" to "daylight saving"). | ||
| 93 | |||
| 94 | 2007-03-11 Sam Steingold <sds@gnu.org> | ||
| 95 | |||
| 96 | * process.c (sigchld_handler): Sleep before wait3 to avoid a busyloop. | ||
| 97 | |||
| 98 | 2007-03-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 99 | |||
| 100 | * macfns.c (Fx_server_vendor): Change vendor string to "Apple Inc.". | ||
| 101 | |||
| 102 | 2007-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 103 | |||
| 104 | * macterm.c [USE_CARBON_EVENTS] (mac_handle_mouse_event): | ||
| 105 | Ignore mouse wheel movement on title bar or tool bar. | ||
| 106 | |||
| 107 | 2007-03-10 Chong Yidong <cyd@stupidchicken.com> | ||
| 108 | |||
| 109 | * keyboard.c (help_form_saved_window_configs): New var. | ||
| 110 | (read_char_help_form_unwind): New function. | ||
| 111 | (read_char): Don't restore window configuration if a mouse click | ||
| 112 | arrives while the help form is being displayed. | ||
| 113 | |||
| 114 | 2007-03-10 Kim F. Storm <storm@cua.dk> | ||
| 115 | |||
| 116 | * xdisp.c (redisplay_window): Don't automatically select a new window | ||
| 117 | start for a contination line during mouse-click. | ||
| 118 | |||
| 119 | 2007-03-09 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 120 | |||
| 121 | * xterm.c (handle_one_xevent): Ignore buttons > 3 for the tool bar. | ||
| 122 | |||
| 123 | 2007-03-09 Juanma Barranquero <lekktu@gmail.com> | ||
| 124 | |||
| 125 | * keymap.c (Fdescribe_buffer_bindings): Check that BUFFER is valid. | ||
| 126 | |||
| 127 | 2007-03-08 Richard Stallman <rms@gnu.org> | ||
| 128 | |||
| 129 | * keyboard.c (syms_of_keyboard): Doc fix. | ||
| 130 | |||
| 131 | 2007-03-08 Chong Yidong <cyd@stupidchicken.com> | ||
| 132 | |||
| 133 | * minibuf.c (Ftry_completion): Don't short circuit if | ||
| 134 | completion-ignore-case is non-nil. | ||
| 135 | |||
| 136 | 2007-03-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 137 | |||
| 138 | * macfns.c (mac_set_scroll_bar_width, mac_frame_parm_handlers): | ||
| 139 | Undo 2006-03-06 changes. | ||
| 140 | |||
| 141 | * macterm.c (XTset_vertical_scroll_bar) [MAC_OSX]: Don't show scroll | ||
| 142 | bar if its width is smaller than that of Aqua small scroll bar. | ||
| 143 | |||
| 144 | 2007-03-07 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 145 | |||
| 146 | * minibuf.c (read_minibuf): Bind inhibit-read-only a bit longer so as | ||
| 147 | to handle correctly prompts with read-only property. | ||
| 148 | |||
| 149 | 2007-03-06 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 150 | |||
| 151 | * sound.c (wav_play): Check header->data_length to see how much we | ||
| 152 | shall read. | ||
| 153 | (alsa_period_size): Convert ALSA period size in frames to bytes. | ||
| 154 | (alsa_write): Return if frames is zero. | ||
| 155 | |||
| 156 | 2007-03-06 Kenichi Handa <handa@m17n.org> | ||
| 157 | |||
| 158 | * xselect.c (Vselection_coding_system): Documentation improved. | ||
| 159 | |||
| 160 | 2007-03-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 161 | |||
| 162 | * macterm.c (x_scroll_bar_create, XTread_socket): Replace #if | ||
| 163 | USE_TOOLKIT_SCROLL_BARS with #ifdef USE_TOOLKIT_SCROLL_BARS. | ||
| 164 | (x_set_window_size): Call SET_FRAME_GARBAGED. Clear window if | ||
| 165 | internal border width has changed. | ||
| 166 | |||
| 167 | * macterm.h (struct mac_output): New member `internal_border_width'. | ||
| 168 | |||
| 169 | 2007-03-04 Richard Stallman <rms@gnu.org> | ||
| 170 | |||
| 171 | * window.c (Fdisplay_buffer): Doc fix. | ||
| 172 | |||
| 173 | 2007-03-03 Glenn Morris <rgm@gnu.org> | ||
| 174 | |||
| 175 | * Makefile.in: Don't clear out LIB_X11_LIB, since XFT_LIBS does | ||
| 176 | not include -lX11 on Solaris. | ||
| 177 | |||
| 178 | 2007-03-02 Stuart D. Herring <herring@lanl.gov> | ||
| 179 | |||
| 180 | * keymap.c (Fkey_binding): Don't consider one-element lists as events. | ||
| 5 | 181 | ||
| 6 | 2007-03-01 Kenichi Handa <handa@m17n.org> | 182 | 2007-03-01 Kenichi Handa <handa@m17n.org> |
| 7 | 183 | ||
| @@ -30,8 +206,8 @@ | |||
| 30 | (x_scroll_bar_create, XTset_vertical_scroll_bar) | 206 | (x_scroll_bar_create, XTset_vertical_scroll_bar) |
| 31 | [USE_TOOLKIT_SCROLL_BARS]: Initialize bar->min_handle. | 207 | [USE_TOOLKIT_SCROLL_BARS]: Initialize bar->min_handle. |
| 32 | 208 | ||
| 33 | * macterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: New | 209 | * macterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: |
| 34 | member `min_handle'. | 210 | New member `min_handle'. |
| 35 | 211 | ||
| 36 | 2007-02-23 Kim F. Storm <storm@cua.dk> | 212 | 2007-02-23 Kim F. Storm <storm@cua.dk> |
| 37 | 213 | ||
| @@ -54,11 +230,11 @@ | |||
| 54 | (mac_flush_display_optional) [USE_CG_DRAWING]: New function. | 230 | (mac_flush_display_optional) [USE_CG_DRAWING]: New function. |
| 55 | (x_redisplay_interface) [USE_CG_DRAWING]: Set it as handler for | 231 | (x_redisplay_interface) [USE_CG_DRAWING]: Set it as handler for |
| 56 | flush_display_optional. | 232 | flush_display_optional. |
| 57 | [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_press): New | 233 | [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_press): |
| 58 | argument MOUSE_POS. All uses changed. Set bar->dragging to | 234 | New argument MOUSE_POS. All uses changed. Set bar->dragging to |
| 59 | negative integer if scroll bar handle is pressed. | 235 | negative integer if scroll bar handle is pressed. |
| 60 | [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_release): Negative | 236 | [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_release): |
| 61 | bar->dragging means scroll bar handle is not dragged. | 237 | Negative bar->dragging means scroll bar handle is not dragged. |
| 62 | [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_drag): Get initial | 238 | [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_drag): Get initial |
| 63 | offset of scroll bar handle from negative bar->dragging. | 239 | offset of scroll bar handle from negative bar->dragging. |
| 64 | (XTread_socket) [USE_TOOLKIT_SCROLL_BARS]: Modifiers for scroll | 240 | (XTread_socket) [USE_TOOLKIT_SCROLL_BARS]: Modifiers for scroll |
| @@ -93,8 +269,7 @@ | |||
| 93 | 269 | ||
| 94 | * w32menu.c (current_popup_menu): Make available globally. | 270 | * w32menu.c (current_popup_menu): Make available globally. |
| 95 | (menubar_selection_callback): Free menu strings before pushing the | 271 | (menubar_selection_callback): Free menu strings before pushing the |
| 96 | menu event into the keyboard buffer. Remove | 272 | menu event into the keyboard buffer. Remove menu_command_in_progress. |
| 97 | menu_command_in_progress. | ||
| 98 | 273 | ||
| 99 | * w32fns.c (current_popup_menu): Use from w32menu.c. | 274 | * w32fns.c (current_popup_menu): Use from w32menu.c. |
| 100 | (w32_wnd_proc) [WM_EXITMENULOOP, WM_TIMER]: Use menubar_active | 275 | (w32_wnd_proc) [WM_EXITMENULOOP, WM_TIMER]: Use menubar_active |
| @@ -364,8 +539,8 @@ | |||
| 364 | 539 | ||
| 365 | 2007-01-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 540 | 2007-01-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 366 | 541 | ||
| 367 | * macmenu.c (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Use | 542 | * macmenu.c (create_and_show_dialog) [TARGET_API_MAC_CARBON]: |
| 368 | DisableControl for disabled items. Set default button to first | 543 | Use DisableControl for disabled items. Set default button to first |
| 369 | enabled one. Use icon of application in execution. | 544 | enabled one. Use icon of application in execution. |
| 370 | 545 | ||
| 371 | 2007-01-13 Eli Zaretskii <eliz@gnu.org> | 546 | 2007-01-13 Eli Zaretskii <eliz@gnu.org> |