diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 936b14089b4..f0f504e6e64 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,194 @@ | |||
| 1 | 2006-04-18 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xmenu.c (restore_menu_items, save_menu_items): New fns. | ||
| 4 | (set_frame_menubar): Use save_menu_items. Save updated vector in | ||
| 5 | the frame before unwinding it. Don't use unuse_menu_items. Don't | ||
| 6 | use discard_menu_items. | ||
| 7 | (digest_single_submenu): Abort if an item is not in a pane. | ||
| 8 | (init_menu_items): Put the error check at the top. | ||
| 9 | |||
| 10 | * keymap.c (describe_map): Make "shadowed" warning more verbose. | ||
| 11 | |||
| 12 | * window.c (adjust_window_trailing_edge): Correctly distinguish | ||
| 13 | series vs parallel cases, even when window has no parent. | ||
| 14 | |||
| 15 | * abbrev.c (record_symbol): New function. | ||
| 16 | (Finsert_abbrev_table_description): Sort the abbrevs alphabetically. | ||
| 17 | |||
| 18 | 2006-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 19 | |||
| 20 | * image.c (x_create_bitmap_from_data) [MAC_OS]: Don't check return | ||
| 21 | value of xmalloc. | ||
| 22 | |||
| 23 | * mac.c (mac_coerce_file_name_ptr, mac_coerce_file_name_desc) | ||
| 24 | (create_apple_event_from_event_ref, xrm_get_preference_database) | ||
| 25 | (cfstring_create_normalized): Don't check return value of xmalloc. | ||
| 26 | |||
| 27 | * macselect.c (get_scrap_target_type_list, defer_apple_events) | ||
| 28 | (copy_scrap_flavor_data, mac_handle_service_event): Don't check | ||
| 29 | return value of xmalloc/xrealloc. | ||
| 30 | |||
| 31 | * macterm.c (XCreateGC, x_per_char_metric, xlfdpat_create) | ||
| 32 | (init_font_name_table, init_font_name_table, mac_do_list_fonts) | ||
| 33 | (XLoadQueryFont, mac_store_apple_event): Don't check | ||
| 34 | return value of xmalloc. | ||
| 35 | |||
| 36 | 2006-04-17 Kim F. Storm <storm@cua.dk> | ||
| 37 | |||
| 38 | * window.c (coordinates_in_window): On the vertical border, | ||
| 39 | calculate the row number measured from the top of the window, not | ||
| 40 | the top of the frame. | ||
| 41 | (window_loop): Test w->dedicated with !NILP instead of EQ Qt. | ||
| 42 | (window_scroll_pixel_based): Fix off-by-one bug in 2002-12-23 change. | ||
| 43 | |||
| 44 | 2006-04-16 Eli Zaretskii <eliz@gnu.org> | ||
| 45 | |||
| 46 | * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Reduce to 24000. | ||
| 47 | |||
| 48 | 2006-04-16 Romain Francoise <romain@orebokech.com> | ||
| 49 | |||
| 50 | * puresize.h (BASE_PURESIZE): Decrement back to 1200000. | ||
| 51 | |||
| 52 | 2006-04-16 Andreas Schwab <schwab@suse.de> | ||
| 53 | |||
| 54 | * puresize.h (PURESIZE_RATIO): Reduce to 10/6. | ||
| 55 | |||
| 56 | 2006-04-15 Romain Francoise <romain@orebokech.com> | ||
| 57 | |||
| 58 | * puresize.h (BASE_PURESIZE): Increment to 1210000. | ||
| 59 | |||
| 60 | 2006-04-13 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> (tiny change) | ||
| 61 | |||
| 62 | * print.c (Fprin1_to_string): Mention in the `doc' that the | ||
| 63 | behavior is modified by `print-level' and `print-length'. | ||
| 64 | |||
| 65 | 2006-04-13 Kenichi Handa <handa@m17n.org> | ||
| 66 | |||
| 67 | * coding.c (setup_coding_system): If eol-type is not yet decided | ||
| 68 | and system_eol_type is not LF, set CODING_REQUIRE_ENCODING_MASK. | ||
| 69 | If coding_system is nil, return 0. | ||
| 70 | (code_convert_region1): Even if coding_system is nil, don't skip | ||
| 71 | conversion if system_eol_type is not LF. | ||
| 72 | (code_convert_string1): Likewise. | ||
| 73 | (code_convert_string_norecord): Likewise. | ||
| 74 | |||
| 75 | 2006-04-13 Kenichi Handa <handa@m17n.org> | ||
| 76 | |||
| 77 | * coding.c (setup_coding_system): Fix previous change. | ||
| 78 | (encode_coding): If eol_type is not yet decided, use | ||
| 79 | system_eol_type. | ||
| 80 | (shrink_encoding_region): If eol_type is not yet decided and | ||
| 81 | system_eol_type is not LF, don't shrink. | ||
| 82 | |||
| 83 | 2006-04-13 Nick Roberts <nickrob@snap.net.nz> | ||
| 84 | |||
| 85 | * xdisp.c (note_mouse_highlight): Add help echo for dragging vertical | ||
| 86 | line. | ||
| 87 | |||
| 88 | 2006-04-12 Richard Stallman <rms@gnu.org> | ||
| 89 | |||
| 90 | * keyboard.c (read_key_sequence): Explicitly avoid keybuf[-1]. | ||
| 91 | |||
| 92 | * process.c (conv_lisp_to_sockaddr): If FAMILY unknown, just return. | ||
| 93 | (Fprocess_send_eof): Abort if fail to open null device. | ||
| 94 | |||
| 95 | 2006-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 96 | |||
| 97 | * fns.c [HAVE_MENUS && MAC_OS]: Include macterm.h. | ||
| 98 | |||
| 99 | * image.c [MAC_OS] (xpm_load_image): Add parentheses around | ||
| 100 | assignment used as truth value. Add explicit braces to avoid | ||
| 101 | ambiguous `else'. | ||
| 102 | [MAC_OS] (gif_load): Remove unused variable `gcpro1'. | ||
| 103 | |||
| 104 | * lisp.h (syms_of_fontset, Fset_fontset_font): Put extern and | ||
| 105 | EXFUN in #ifdef HAVE_WINDOW_SYSTEM. | ||
| 106 | (syms_of_xfns, syms_of_xsmfns, syms_of_xselect, syms_of_xterm): | ||
| 107 | Put externs in #ifdef HAVE_X_WINDOWS. | ||
| 108 | (syms_of_macfns, syms_of_macselect, syms_of_macterm) | ||
| 109 | (syms_of_macmenu, syms_of_mac) [MAC_OS]: Add externs. | ||
| 110 | (init_mac_osx_environment) [MAC_OSX]: Add extern. | ||
| 111 | |||
| 112 | * mac.c (init_process): Remove undef. | ||
| 113 | (select) [MAC_OSX]: Undefine before including sysselect.h. | ||
| 114 | (posix_pathname_to_fsspec, fsspec_to_posix_pathname) [MAC_OSX]: | ||
| 115 | Remove functions and prototypes. | ||
| 116 | (parse_value): Add parentheses around + inside shift. | ||
| 117 | (path_from_vol_dir_name): Make static. | ||
| 118 | (get_temp_dir_name): Remove unused variables `cpb' and `dir_name'. | ||
| 119 | [!MAC_OSX] (get_path_to_system_folder): Likewise. | ||
| 120 | (Fmac_get_file_creator, Fmac_get_file_type): Remove unused | ||
| 121 | variable `cCode'. | ||
| 122 | (Fmac_coerce_ae_data): Remove unused variables `fref' and `fs'. | ||
| 123 | (Fmac_get_preference): Add explicit braces to avoid ambiguous `else'. | ||
| 124 | |||
| 125 | * macfns.c (x_to_mac_color): Remove unused variable `tail'. | ||
| 126 | (x_set_mouse_color): Remove unused variable `dpy'. | ||
| 127 | (Fx_create_frame): Remove unused variable `x_frame_count'. | ||
| 128 | (Fx_server_version): Add explicit braces to avoid ambiguous `else'. | ||
| 129 | (x_sync): Move from macterm.c. | ||
| 130 | (Fx_file_dialog): Remove unused variable `default_filter_index'. | ||
| 131 | |||
| 132 | * macmenu.c (min_menu_id): Make element type explicit. | ||
| 133 | |||
| 134 | * macselect.c (get_flavor_type_from_symbol): Remove unused | ||
| 135 | variable `val'. | ||
| 136 | (get_scrap_private_timestamp, x_get_foreign_selection) | ||
| 137 | (copy_scrap_flavor_data): Add explicit braces to avoid ambiguous `else'. | ||
| 138 | (Fmac_process_deferred_apple_events): Remove unused variables | ||
| 139 | `keyword', `reply', `apple_event', `count', and `err'. | ||
| 140 | |||
| 141 | * macterm.c: Don't include gnu.h. | ||
| 142 | (x_io_error_quitter, x_draw_image_foreground_1): Remove prototypes. | ||
| 143 | (x_sync): Move to macfns.c. | ||
| 144 | [USE_CG_DRAWING] (mac_define_fringe_bitmap): Remove unused | ||
| 145 | variable `mask_bits'. | ||
| 146 | (mac_compute_glyph_string_overhangs): Avoid ambiguous `else'. | ||
| 147 | (x_draw_image_glyph_string): Remove unused variable `pixmap'. | ||
| 148 | (x_mac_to_emacs_modifiers): Remove function. | ||
| 149 | (XTset_vertical_scroll_bar, mac_handle_visibility_change) | ||
| 150 | (x_make_frame_visible, xlfdpat_create, mac_handle_command_event): | ||
| 151 | Add explicit braces to avoid ambiguous `else'. | ||
| 152 | (x_make_frame_visible): Remove unused variables `type', | ||
| 153 | `original_top', and `original_left'. | ||
| 154 | (mac_do_list_fonts, XTread_socket): Add parentheses around && within ||. | ||
| 155 | (x_load_font): Remove unused variables `full_name', and `value'. | ||
| 156 | (do_get_menus, do_init_managers, do_check_ram_size) [!MAC_OS8]: | ||
| 157 | Remove functions. | ||
| 158 | (do_zoom_window): Reorganize variables with respect to conditionals. | ||
| 159 | (init_command_handler): Remove unused variable `err'. | ||
| 160 | [MAC_OSX] (mac_check_bundle): Remove unused variable `child'. | ||
| 161 | |||
| 162 | * macterm.h (x_set_mouse_position, x_set_mouse_pixel_position) | ||
| 163 | (x_make_frame_invisible, x_iconify_frame, x_free_frame_resources) | ||
| 164 | (x_destroy_window, x_wm_set_size_hint, x_delete_display, XFreeGC) | ||
| 165 | (do_menu_choice, have_menus_p, x_real_positions) | ||
| 166 | (x_set_menu_bar_lines, x_pixel_width, x_pixel_height, x_char_width) | ||
| 167 | (x_char_height, x_sync, x_set_tool_bar_lines, x_activate_menubar) | ||
| 168 | (free_frame_menubar): Add externs. | ||
| 169 | |||
| 170 | * unexmacosx.c: Include config.h before using HAVE_MALLOC_MALLOC_H. | ||
| 171 | (malloc, realloc, free): Add undefs. | ||
| 172 | (read_load_commands): Remove unused variable `n' and `j'. | ||
| 173 | (copy_data_segment): Remove unused variable `r'. | ||
| 174 | |||
| 175 | * xdisp.c (get_glyph_string_clip_rects): Add parentheses around && | ||
| 176 | within ||. Add explicit braces to avoid ambiguous `else'. | ||
| 177 | (dump_glyph_row): Remove label for `inverse_p' from legend. | ||
| 178 | |||
| 179 | * xfaces.c (Finternal_merge_in_global_face, try_font_list): Add | ||
| 180 | explicit braces to avoid ambiguous `else'. | ||
| 181 | |||
| 182 | 2006-04-11 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> (tiny change) | ||
| 183 | |||
| 184 | * dispnew.c (init_display): Don't init X display if the user asked | ||
| 185 | for a non-X display. | ||
| 186 | |||
| 187 | 2006-04-12 Kenichi Handa <handa@m17n.org> | ||
| 188 | |||
| 189 | * coding.c (setup_coding_system): Use system_eol_type for default | ||
| 190 | coding->eol_type. | ||
| 191 | |||
| 1 | 2006-04-11 Dan Nicolaescu <dann@ics.uci.edu> | 192 | 2006-04-11 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 193 | ||
| 3 | * lisp.h (wrong_type_argument): Mark as NO_RETURN. | 194 | * lisp.h (wrong_type_argument): Mark as NO_RETURN. |