aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-12 09:56:59 -0700
committerDan Nicolaescu2010-07-12 09:56:59 -0700
commit2e31d424a10785a5459ad603044b52f010d5ac77 (patch)
treead1d8f01c8755680093dfc88758968a75a53c2c7 /src/ChangeLog
parent6f704c767571d03df1cb429aadccd60b82a5c47b (diff)
downloademacs-2e31d424a10785a5459ad603044b52f010d5ac77.tar.gz
emacs-2e31d424a10785a5459ad603044b52f010d5ac77.zip
Convert function definitions to standard C and some cleanups.
* src/emacs.c (__do_global_ctors, __do_global_ctors_aux) (__do_global_dtors, __main): Use void in definition. (main): Remove code dealing with SET_EMACS_PRIORITY, unused. Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline the only users from ... * src/s/ms-w32.h (SYMS_SYSTEM): ... here and ... * src/s/msdos.h (SYMS_SYSTEM): ... here. Remove. (HAVE_VOLATILE): Remove, unused.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7e6b67cc176..8a13298b61d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,17 @@
12010-07-12 Dan Nicolaescu <dann@ics.uci.edu> 12010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3
4 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
5
6 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
7 (__do_global_dtors, __main): Use void in definition.
8 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
9 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
10 the only users from ...
11 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
12 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
13 (HAVE_VOLATILE): Remove, unused.
14
3 Convert more function definitions to standard C. 15 Convert more function definitions to standard C.
4 * xdisp.c (window_box_edges, handle_single_display_spec) 16 * xdisp.c (window_box_edges, handle_single_display_spec)
5 (display_string): Convert definition to standard C. 17 (display_string): Convert definition to standard C.