comparison src/process.c @ 111629:6c24c5598611

Move declarations from .c files to .h files. * src/process.c (timers_run): * src/minibuf.c (quit_char): * src/lread.c (read_emacs_mule_char): * src/keyboard.c (minibuf_level, message_enable_multibyte) (pending_malloc_warning): * src/insdel.c (Vselect_active_regions, Vsaved_region_selection) (Qonly): Remove declarations. * src/lisp.h (pending_malloc_warning, Vsaved_region_selection) (Vselect_active_regions): * src/keyboard.h (timers_run): Add declarations.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 18 Nov 2010 08:57:00 -0800
parents 32e6d2b445ce
children a60f0af8cb39
comparison
equal deleted inserted replaced
111628:9937e00afbbc 111629:6c24c5598611
110 #include "xgselect.h" 110 #include "xgselect.h"
111 #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */ 111 #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
112 #ifdef HAVE_NS 112 #ifdef HAVE_NS
113 #include "nsterm.h" 113 #include "nsterm.h"
114 #endif 114 #endif
115
116 extern int timers_run;
117 115
118 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid; 116 Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid;
119 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime; 117 Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime;
120 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs; 118 Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs;
121 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime; 119 Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime;
7742 defsubr (&Sprocess_inherit_coding_system_flag); 7740 defsubr (&Sprocess_inherit_coding_system_flag);
7743 defsubr (&Slist_system_processes); 7741 defsubr (&Slist_system_processes);
7744 defsubr (&Sprocess_attributes); 7742 defsubr (&Sprocess_attributes);
7745 } 7743 }
7746 7744
7747 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
7748 (do not change this comment) */