aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-09 17:28:06 -0800
committerPaul Eggert2011-03-09 17:28:06 -0800
commit7e3ab3026e9b0f783b8aacead1fad668c792e8ab (patch)
tree572dc8843e38136cf7845f29ea125355d785417b /src/ChangeLog
parent06b0c8a0ddcb60b00fcf60a3dcd8b7193bca3cc7 (diff)
downloademacs-7e3ab3026e9b0f783b8aacead1fad668c792e8ab.tar.gz
emacs-7e3ab3026e9b0f783b8aacead1fad668c792e8ab.zip
* lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
so that the caller can use some name other than gcpro1. (GCPRO1, UNGCPRO): Reimplement in terms of the new macros. (Fx_create_frame, x_create_tip_frame, Fx_show_tip): (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing. Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR macros.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 51724faf9c7..33fa9806be2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,10 +1,17 @@
12011-03-10 Paul Eggert <eggert@cs.ucla.edu> 12011-03-10 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
4 so that the caller can use some name other than gcpro1.
5 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
3 * xfns.c (x_decode_color, x_set_name, x_window): Now static. 6 * xfns.c (x_decode_color, x_set_name, x_window): Now static.
4 (Fx_create_frame): Add braces to silence GCC warning. 7 (Fx_create_frame): Add braces to silence GCC warning.
5 (Fx_file_dialog, Fx_select_font): Fix pointer signedness. 8 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
6 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame): 9 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
7 Remove unused locals. 10 Remove unused locals.
11 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
12 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
13 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
14 macros.
8 15
92011-03-09 Paul Eggert <eggert@cs.ucla.edu> 162011-03-09 Paul Eggert <eggert@cs.ucla.edu>
10 17