From: Paul Eggert Date: Mon, 14 Mar 2011 05:55:38 +0000 (-0700) Subject: * keyboard.h (mark_kboards): Move decl here ... X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~554^2~114 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da2f2dd9c2fac1bb1e3d5e5c4a3b38cad3c20ad5;p=emacs.git * keyboard.h (mark_kboards): Move decl here ... * alloc.c (mark_kboards): ... from here. --- diff --git a/src/ChangeLog b/src/ChangeLog index a90b5f6e247..9cddd389b58 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -5,6 +5,8 @@ (poll_for_input, handle_async_input): Now static. * keyboard.h (make_ctrl_char): New decl. + (mark_kboards): Move decl here ... + * alloc.c (mark_kboards): ... from here. * lisp.h (force_auto_save_soon): New decl. diff --git a/src/alloc.c b/src/alloc.c index 6c92f36ca7d..d6b64de5af9 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -270,7 +270,6 @@ Lisp_Object Qpost_gc_hook; static void mark_buffer (Lisp_Object); static void mark_terminals (void); -extern void mark_kboards (void); extern void mark_backtrace (void); static void gc_sweep (void); static void mark_glyph_matrix (struct glyph_matrix *); diff --git a/src/keyboard.h b/src/keyboard.h index 9f8f1ff7476..765979b3997 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -518,3 +518,4 @@ extern void add_user_signal (int, const char *); extern int tty_read_avail_input (struct terminal *, int, struct input_event *); extern EMACS_TIME timer_check (int); +extern void mark_kboards (void);