diff options
| author | Dan Nicolaescu | 2010-11-18 08:57:00 -0800 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-11-18 08:57:00 -0800 |
| commit | 50c7742814aafd5a540f521d9662648ea2ac8f54 (patch) | |
| tree | 376bb95b9f4bb72719cd20f61f8faf55d5b0a1c6 /src/process.c | |
| parent | 654ef137a33c238befb60a27e0df1d3855fb025e (diff) | |
| download | emacs-50c7742814aafd5a540f521d9662648ea2ac8f54.tar.gz emacs-50c7742814aafd5a540f521d9662648ea2ac8f54.zip | |
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.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index c38b94a9cb1..f8ca0958dd1 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -113,8 +113,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 113 | #include "nsterm.h" | 113 | #include "nsterm.h" |
| 114 | #endif | 114 | #endif |
| 115 | 115 | ||
| 116 | extern int timers_run; | ||
| 117 | |||
| 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; |
| @@ -7744,5 +7742,3 @@ The variable takes effect when `start-process' is called. */); | |||
| 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) */ | ||