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