diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3f9b6d85e51..aa3721d9106 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,105 @@ | |||
| 1 | 2004-08-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * macmenu.c (ENCODE_MENU_STRING): Added to handle multibyte | ||
| 4 | strings in menu items. | ||
| 5 | (single_submenu): Use ENCODE_MENU_STRING | ||
| 6 | (mac_menu_show): Use ENCODE_MENU_STRING. Reset grabbed because | ||
| 7 | button release isn't passed to event loop | ||
| 8 | (add_menu_item): Use SetMenuItemWithCFString | ||
| 9 | |||
| 10 | 2004-08-26 Steven Tamm <steventamm@mac.com> | ||
| 11 | |||
| 12 | * fileio.c (Fread_file_name): Call x_file_dialog on carbon on | ||
| 13 | tool-bar/menu click | ||
| 14 | * macfns.c (Fx_file_dialog): Implemented using NavServices | ||
| 15 | |||
| 16 | 2004-08-24 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 17 | |||
| 18 | * xterm.c (x_catch_errors_unwind): Do not XSync if display has closed. | ||
| 19 | |||
| 20 | * xfns.c (x_window_to_frame, x_any_window_to_frame) | ||
| 21 | (x_non_menubar_window_to_frame, x_menubar_window_to_frame) | ||
| 22 | (x_top_window_to_frame): Return 0 if wdesc is None. | ||
| 23 | |||
| 24 | 2004-08-22 Richard M. Stallman <rms@gnu.org> | ||
| 25 | |||
| 26 | * process.c (process_send_signal) [SIGNALS_VIA_CHARACTERS, | ||
| 27 | HAVE_TERMIOS]: If there's no char for this signal, drop through | ||
| 28 | and use system calls. | ||
| 29 | |||
| 30 | * bytecode.c (Fbyte_code) <unwind-protect>: Cannot GC. | ||
| 31 | |||
| 32 | 2004-08-20 Kim F. Storm <storm@cua.dk> | ||
| 33 | |||
| 34 | * process.c (wait_reading_process_output): Rename from | ||
| 35 | wait_reading_process_input. All uses changed. | ||
| 36 | (wait_reading_process_output_1): Rename from | ||
| 37 | wait_reading_process_input_1. All uses changed. | ||
| 38 | |||
| 39 | * dispnew.c (Fsleep_for): Remove obsolete code. | ||
| 40 | |||
| 41 | 2004-08-20 Kenichi Handa <handa@m17n.org> | ||
| 42 | |||
| 43 | * syntax.c (skip_chars): Fix for unibyte case. | ||
| 44 | |||
| 45 | 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 46 | |||
| 47 | * syntax.c (char_quoted): Mixup byte/char pos. | ||
| 48 | (back_comment): Fixup globals in all cases. | ||
| 49 | |||
| 50 | 2004-08-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 51 | |||
| 52 | * xfns.c (x_set_name, x_set_title): Encode title to UTF8 before | ||
| 53 | passing it to gtk_window_set_title. | ||
| 54 | |||
| 55 | 2004-08-19 Kim F. Storm <storm@cua.dk> | ||
| 56 | |||
| 57 | * process.c (wait_reading_process_input): Clean up. | ||
| 58 | Add wait_for_cell, wait_proc, and just_wait_proc args | ||
| 59 | to avoid overloading `read_kbd' and `do_display' args. | ||
| 60 | Change read_kbd arg to int. All callers changed. | ||
| 61 | |||
| 62 | * process.c (process_send_signal): Use CDISABLE. | ||
| 63 | |||
| 64 | * sysdep.c (child_setup_tty, init_sys_modes): Use CDISABLE. | ||
| 65 | |||
| 66 | 2004-08-18 Kim F. Storm <storm@cua.dk> | ||
| 67 | |||
| 68 | * process.c (Faccept_process_output): Add arg JUST-THIS-ONE; | ||
| 69 | forward to wait_reading_process_input via DO_DISPLAY arg. | ||
| 70 | (wait_reading_process_input): If DO_DISPLAY < 0 for a process | ||
| 71 | object, only process output from that process; also inhibit | ||
| 72 | running timers if DO_DISPLAY==-2. | ||
| 73 | |||
| 74 | 2004-08-17 Kim F. Storm <storm@cua.dk> | ||
| 75 | |||
| 76 | * process.c (process_send_signal): Fix last change--use | ||
| 77 | _POSIX_VDISABLE instead of CVDISABLE when available. | ||
| 78 | |||
| 79 | 2004-08-16 Richard M. Stallman <rms@gnu.org> | ||
| 80 | |||
| 81 | * sysdep.c (child_setup_tty) [SIGNALS_VIA_CHARACTERS]: | ||
| 82 | Set VQUIT and VINTR chars to the standard ones if they are unset. | ||
| 83 | [AIX]: Don't do that here. And don't force VINTR to standard | ||
| 84 | when SIGNALS_VIA_CHARACTERS. | ||
| 85 | |||
| 86 | * process.c (process_send_signal) | ||
| 87 | [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up. | ||
| 88 | Do nothing if the character is CVDISABLE. | ||
| 89 | |||
| 90 | * xfaces.c (merge_face_ref): Specifying `unspecified' is a no-op. | ||
| 91 | |||
| 92 | * intervals.c (move_if_not_intangible): | ||
| 93 | Force POSITION to be between BEGV and ZV. | ||
| 94 | |||
| 95 | 2004-08-14 John Paul Wallington <jpw@gnu.org> | ||
| 96 | |||
| 97 | * buffer.c (Frestore_buffer_modified_p): Doc fix. | ||
| 98 | |||
| 99 | * fileio.c (Fread_file_name): Doc fix. | ||
| 100 | |||
| 101 | * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix. | ||
| 102 | |||
| 1 | 2004-08-09 Luc Teirlinck <teirllm@auburn.edu> | 103 | 2004-08-09 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 104 | ||
| 3 | * keymap.c (Fmake_keymap, Fmap_keymap, Fwhere_is_internal): Doc fixes. | 105 | * keymap.c (Fmake_keymap, Fmap_keymap, Fwhere_is_internal): Doc fixes. |
| @@ -66,6 +168,10 @@ | |||
| 66 | 168 | ||
| 67 | * callint.c (Fcall_interactively): Doc fix. | 169 | * callint.c (Fcall_interactively): Doc fix. |
| 68 | 170 | ||
| 171 | 2004-07-30 Richard M. Stallman <rms@gnu.org> | ||
| 172 | |||
| 173 | * abbrev.c (Fexpand_abbrev): Undo previous change. | ||
| 174 | |||
| 69 | 2004-07-30 Kim F. Storm <storm@cua.dk> | 175 | 2004-07-30 Kim F. Storm <storm@cua.dk> |
| 70 | 176 | ||
| 71 | * editfns.c (Fformat): Allocate extra (dummy) element in info. | 177 | * editfns.c (Fformat): Allocate extra (dummy) element in info. |