aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-02-05 01:26:46 -0800
committerPaul Eggert2011-02-05 01:26:46 -0800
commit9bcaafce5351d270ac514e23cb69ff1a5fd35229 (patch)
tree00e222af83578d0fec4a453fb92e8ba89633a069 /src/ChangeLog
parent03fc768bf7d870eff13ece309da2ce6e747aa5bf (diff)
downloademacs-9bcaafce5351d270ac514e23cb69ff1a5fd35229.tar.gz
emacs-9bcaafce5351d270ac514e23cb69ff1a5fd35229.zip
* xdisp.c: conform to C89 pointer rules
(store_mode_line_noprop, display_string, reseat_to_string): (c_string_pos, number_of_chars, message_dolog): (message_log_check_duplicate, set_message_1, store_mode_line_noprop): (display_mode_element, display_string): Switch between char * and unsigned char * to stay compatible wth C89 pointer rules.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 75113bb3c09..9765bdc18d8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,13 @@
12011-02-05 Paul Eggert <eggert@cs.ucla.edu> 12011-02-05 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * xdisp.c: conform to C89 pointer rules
4 (store_mode_line_noprop, display_string, reseat_to_string):
5 (c_string_pos, number_of_chars, message_dolog):
6 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
7 (display_mode_element, display_string):
8 Switch between char * and unsigned char * to stay compatible wth
9 C89 pointer rules.
10
3 * regex.c: conform to C89 pointer rules 11 * regex.c: conform to C89 pointer rules
4 (re_wctype): Add cast, as C89 does not allow assigning between 12 (re_wctype): Add cast, as C89 does not allow assigning between
5 char * and unsigned char *. 13 char * and unsigned char *.