diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-11-18 08:57:00 -0800 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-11-18 08:57:00 -0800 |
commit | 50c7742814aafd5a540f521d9662648ea2ac8f54 (patch) | |
tree | 376bb95b9f4bb72719cd20f61f8faf55d5b0a1c6 /src/insdel.c | |
parent | 654ef137a33c238befb60a27e0df1d3855fb025e (diff) | |
download | emacs-50c7742814aafd5a540f521d9662648ea2ac8f54.tar.gz |
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/insdel.c')
-rw-r--r-- | src/insdel.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/insdel.c b/src/insdel.c index ff380ada192..b62889082fd 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -73,9 +73,6 @@ Lisp_Object combine_after_change_list; Lisp_Object combine_after_change_buffer; Lisp_Object Qinhibit_modification_hooks; - -extern Lisp_Object Vselect_active_regions, Vsaved_region_selection, Qonly; - /* Check all markers in the current buffer, looking for something invalid. */ @@ -2395,5 +2392,3 @@ as well as hooks attached to text properties and overlays. */); defsubr (&Scombine_after_change_execute); } -/* arch-tag: 9b34b886-47d7-465e-a234-299af411b23d - (do not change this comment) */ |