aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorJuanma Barranquero2011-03-25 16:39:59 +0100
committerJuanma Barranquero2011-03-25 16:39:59 +0100
commit0f4a96b5d7de244a7be6fc98f6a66d3d1e6a7569 (patch)
treed378db1428c33eb26bcc78997af9f8db54f8c521 /src/ChangeLog
parentf9e771e246a981bb3d37c65beb89d18bb407e0cd (diff)
downloademacs-0f4a96b5d7de244a7be6fc98f6a66d3d1e6a7569.tar.gz
emacs-0f4a96b5d7de244a7be6fc98f6a66d3d1e6a7569.zip
nt/*.c, src/*.c: Remove unused variables.
* nt/addpm.c (main): Remove unused variable `retval'. * nt/preprep.c (main): Remove unused variable `ptr'. * src/dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef. * src/fileio.c (check_executable) [DOS_NT]: Remove unused variables `len' and `suffix'. (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration of variables specific to SELinux and computation of `encoded_absname'. * src/image.c (XPutPixel): Remove unused variable `height'. * src/keyboard.c (make_lispy_event): Remove unused variable `hpos'. * src/unexw32.c (get_section_info): Remove unused variable `section'. * src/w32.c (stat): Remove unused variables `drive_root' and `devtype'. (system_process_attributes): Remove unused variable `sess'. (sys_read): Remove unused variable `err'. * src/w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef. (w32_wnd_proc): Remove unused variable `isdead'. (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef. (Fx_server_max_request_size): Remove unused variable `dpyinfo'. (x_create_tip_frame): Remove unused variable `tem'. * src/w32inevt.c (w32_console_read_socket): Remove unused variable `no_events'. * src/w32term.c (x_draw_composite_glyph_string_foreground): Remove unused variable `width'.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog33
1 files changed, 32 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ae40e4638fa..3dfc86a4778 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,34 @@
12011-03-25 Juanma Barranquero <lekktu@gmail.com>
2
3 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
4
5 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
6 and `suffix'.
7 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
8 of variables specific to SELinux and computation of `encoded_absname'.
9
10 * image.c (XPutPixel): Remove unused variable `height'.
11
12 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
13
14 * unexw32.c (get_section_info): Remove unused variable `section'.
15
16 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
17 (system_process_attributes): Remove unused variable `sess'.
18 (sys_read): Remove unused variable `err'.
19
20 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
21 (w32_wnd_proc): Remove unused variable `isdead'.
22 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
23 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
24 (x_create_tip_frame): Remove unused variable `tem'.
25
26 * w32inevt.c (w32_console_read_socket):
27 Remove unused variable `no_events'.
28
29 * w32term.c (x_draw_composite_glyph_string_foreground):
30 Remove unused variable `width'.
31
12011-03-24 Juanma Barranquero <lekktu@gmail.com> 322011-03-24 Juanma Barranquero <lekktu@gmail.com>
2 33
3 * w32term.c (x_set_glyph_string_clipping): 34 * w32term.c (x_set_glyph_string_clipping):
@@ -40,7 +71,7 @@
40 * buffer.c (Fkill_all_local_variables): 71 * buffer.c (Fkill_all_local_variables):
41 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1): 72 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
42 Use Frun_hooks. 73 Use Frun_hooks.
43 (command_loop_1): Use Frun_hooks. Call safe_run_hooks 74 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
44 unconditionnaly since it does the check itself. 75 unconditionnaly since it does the check itself.
45 76
462011-03-23 Paul Eggert <eggert@cs.ucla.edu> 772011-03-23 Paul Eggert <eggert@cs.ucla.edu>