diff options
| author | Ken Raeburn | 2002-07-16 19:55:46 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-16 19:55:46 +0000 |
| commit | bd66096aeacfb4a64d5d5ab27ae90770c85dec92 (patch) | |
| tree | 1b7f16389056a8a571a319d6f9427e412f9ee917 /src | |
| parent | 59ab1dc7ee118716dc5382cde7b6189f7184cbe1 (diff) | |
| download | emacs-bd66096aeacfb4a64d5d5ab27ae90770c85dec92.tar.gz emacs-bd66096aeacfb4a64d5d5ab27ae90770c85dec92.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9aa092b084b..8b48296d342 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,60 @@ | |||
| 1 | 2002-07-16 Ken Raeburn <raeburn@gnu.org> | 1 | 2002-07-16 Ken Raeburn <raeburn@gnu.org> |
| 2 | 2 | ||
| 3 | * alloc.c (xstrdup, make_string, make_unibyte_string) | ||
| 4 | (make_multibyte_string, build_string): String pointer args now | ||
| 5 | point to const. | ||
| 6 | * charset.c (find_charset_in_text, c_string_width): | ||
| 7 | (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte): | ||
| 8 | * fileio.c (report_file_error): | ||
| 9 | * insdel.c (copy_text, count_size_as_multibyte, insert_1): | ||
| 10 | (count_combining_before, count_combining_after, insert_1_both): | ||
| 11 | (insert, insert_and_inherit, insert_string): | ||
| 12 | (insert_before_markers, insert_before_markers_and_inherit): | ||
| 13 | * lread.c (intern, oblookup, hash_string): | ||
| 14 | * minibuf.c (temp_echo_area_glyphs): | ||
| 15 | * search.c (fast_c_string_match_ignore_case): | ||
| 16 | * sysdep.c (emacs_open, set_file_times): | ||
| 17 | * xfaces.c (xstricmp): | ||
| 18 | * xdisp.c (store_frame_title, string_char_and_length): | ||
| 19 | (message_dolog, message2, message2_nolog, set_message): Likewise. | ||
| 20 | (set_message_1): Cast message string argument to const pointer. | ||
| 21 | * editfns.c (general_insert_function): Insertion function now | ||
| 22 | takes pointer to const for input data. | ||
| 23 | * charset.h (find_charset_in_text, c_string_width): | ||
| 24 | (parse_str_as_multibyte): Declarations updated. | ||
| 25 | * dispextern.h (xstricmp): Declaration updated. | ||
| 26 | * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text): | ||
| 27 | (count_size_as_multibyte, count_combining_before): | ||
| 28 | (count_combining_after, insert_1, insert_1_both, message_dolog): | ||
| 29 | (insert, insert_and_inherit, insert_before_markers) | ||
| 30 | (insert_before_markers_and_inherit, set_message, message2): | ||
| 31 | (message2_dolog, build_string, make_string, make_unibyte_string): | ||
| 32 | (make_multibyte_string, intern, oblookup, report_file_error): | ||
| 33 | (fast_c_string_match_ignore_case, temp_echo_area_glyphs): | ||
| 34 | (emacs_open, xstrdup): Declarations updated. | ||
| 35 | * systime.h (set_file_times): Declaration updated. | ||
| 36 | |||
| 37 | * charset.c (find_charset_in_text, lisp_string_width): Use const | ||
| 38 | for pointer to lisp string data. | ||
| 39 | * charset.h (FETCH_STRING_CHAR_ADVANCE): | ||
| 40 | (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): | ||
| 41 | * coding.c (Ffind_coding_systems_region_interval): | ||
| 42 | * fileio.c (Ffile_name_directory, Ffile_name_nondirectory): | ||
| 43 | (Fmake_directory_internal, Fdelete_directory): | ||
| 44 | (Ffile_name_absolute_p, Fwrite_region, double_dollars): | ||
| 45 | * fontset.c (font_family_registry, fs_query_fontset): | ||
| 46 | (list_fontsets): | ||
| 47 | * frame.c (Fframe_parameter): | ||
| 48 | * keyboard.c (cmd_error_internal): | ||
| 49 | * keymap.c (Fdescribe_buffer_bindings): | ||
| 50 | * lread.c (complete_filename_p, openp): | ||
| 51 | * minibuf.c (Fminibuffer_complete_word): | ||
| 52 | * xdisp.c (string_pos_nchars_ahead, init_from_display_pos): | ||
| 53 | (face_before_or_after_it_pos, next_element_from_string): | ||
| 54 | (get_overlay_arrow_glyph_row, display_mode_element): | ||
| 55 | (decode_mode_spec_coding): | ||
| 56 | * xterm.c (same_x_server): Likewise. | ||
| 57 | |||
| 3 | * buffer.c (reset_buffer_local_variables): Delete "#if 0" | 58 | * buffer.c (reset_buffer_local_variables): Delete "#if 0" |
| 4 | settings of non-existent fields. | 59 | settings of non-existent fields. |
| 5 | 60 | ||