From: Dan Nicolaescu Date: Mon, 12 Jul 2010 16:56:59 +0000 (-0700) Subject: Convert function definitions to standard C and some cleanups. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~51^2~73 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e31d424a10785a5459ad603044b52f010d5ac77;p=emacs.git 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. --- diff --git a/src/ChangeLog b/src/ChangeLog index 7e6b67cc176..8a13298b61d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,17 @@ 2010-07-12 Dan Nicolaescu + + * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT. + + * 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 ... + * s/ms-w32.h (SYMS_SYSTEM): ... here and ... + * s/msdos.h (SYMS_SYSTEM): ... here. Remove. + (HAVE_VOLATILE): Remove, unused. + Convert more function definitions to standard C. * xdisp.c (window_box_edges, handle_single_display_spec) (display_string): Convert definition to standard C. diff --git a/src/emacs.c b/src/emacs.c index e00c49b8d24..f94e71b16d8 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -606,11 +606,11 @@ static char dump_tz[] = "UtC0"; (We don't have any real constructors or destructors.) */ #ifdef __GNUC__ #ifndef GCC_CTORS_IN_LIBC -void __do_global_ctors () +void __do_global_ctors (void) {} -void __do_global_ctors_aux () +void __do_global_ctors_aux (void) {} -void __do_global_dtors () +void __do_global_dtors (void) {} /* GNU/Linux has a bug in its library; avoid an error. */ #ifndef GNU_LINUX @@ -618,7 +618,7 @@ char * __CTOR_LIST__[2] = { (char *) (-1), 0 }; #endif char * __DTOR_LIST__[2] = { (char *) (-1), 0 }; #endif /* GCC_CTORS_IN_LIBC */ -void __main () +void __main (void) {} #endif /* __GNUC__ */ #endif /* ORDINARY_LINK */ @@ -957,12 +957,6 @@ main (int argc, char **argv) } #endif /* MSDOS */ -#ifdef SET_EMACS_PRIORITY - if (emacs_priority) - nice (emacs_priority); - setuid (getuid ()); -#endif /* SET_EMACS_PRIORITY */ - /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case. The build procedure uses this while dumping, to ensure that the dumped Emacs does not have its system locale tables initialized, @@ -1646,6 +1640,9 @@ main (int argc, char **argv) #ifdef MSDOS syms_of_xmenu (); + syms_of_dosfns(); + syms_of_msdos(); + syms_of_win16select(); #endif /* MSDOS */ #ifdef HAVE_NS @@ -1660,13 +1657,9 @@ main (int argc, char **argv) syms_of_dbusbind (); #endif /* HAVE_DBUS */ -#ifdef SYMS_SYSTEM - SYMS_SYSTEM; -#endif - -#ifdef SYMS_MACHINE - SYMS_MACHINE; -#endif +#ifdef WINDOWSNT + syms_of_ntterm (); +#endif /* WINDOWSNT */ keys_of_casefiddle (); keys_of_cmds (); diff --git a/src/s/ms-w32.h b/src/s/ms-w32.h index a87e22b338c..b3e9db8be8a 100644 --- a/src/s/ms-w32.h +++ b/src/s/ms-w32.h @@ -40,7 +40,6 @@ along with GNU Emacs. If not, see . */ /* SYSTEM_TYPE should indicate the kind of system you are using. It sets the Lisp variable system-type. */ #define SYSTEM_TYPE "windows-nt" -#define SYMS_SYSTEM syms_of_ntterm () #define NO_MATHERR 1 diff --git a/src/s/msdos.h b/src/s/msdos.h index 78a38c86059..b76b583250c 100644 --- a/src/s/msdos.h +++ b/src/s/msdos.h @@ -38,14 +38,8 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */ It sets the Lisp variable system-type. */ #define SYSTEM_TYPE "ms-dos" -#define SYMS_SYSTEM syms_of_dosfns();syms_of_msdos();syms_of_win16select() - #define SYSV_SYSTEM_DIR -/* Define this is the compiler understands `volatile'. */ -#define HAVE_VOLATILE - - /* subprocesses should be defined if you want to have code for asynchronous subprocesses (as used in M-x compile and M-x shell). This is the only system that needs this. */