aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorAndreas Schwab1998-04-14 12:25:56 +0000
committerAndreas Schwab1998-04-14 12:25:56 +0000
commitdfcf069d565c347abf3cb7cec80e6ed8432037ba (patch)
treecd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/keymap.c
parent0f94f94657ad7a6a68e64c612285a5e06152def2 (diff)
downloademacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz
emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip
Fix -Wimplicit warnings.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index c0a0f21a126..8739326a733 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -21,6 +21,9 @@ Boston, MA 02111-1307, USA. */
21 21
22#include <config.h> 22#include <config.h>
23#include <stdio.h> 23#include <stdio.h>
24#ifdef STDC_HEADERS
25#include <stdlib.h>
26#endif
24#undef NULL 27#undef NULL
25#include "lisp.h" 28#include "lisp.h"
26#include "commands.h" 29#include "commands.h"
@@ -102,7 +105,6 @@ static Lisp_Object define_as_prefix ();
102static Lisp_Object describe_buffer_bindings (); 105static Lisp_Object describe_buffer_bindings ();
103static void describe_command (), describe_translation (); 106static void describe_command (), describe_translation ();
104static void describe_map (); 107static void describe_map ();
105Lisp_Object Fcopy_keymap ();
106 108
107/* Keymap object support - constructors and predicates. */ 109/* Keymap object support - constructors and predicates. */
108 110
@@ -3168,6 +3170,7 @@ Return list of symbols found.")
3168 return apropos_accumulate; 3170 return apropos_accumulate;
3169} 3171}
3170 3172
3173void
3171syms_of_keymap () 3174syms_of_keymap ()
3172{ 3175{
3173 Lisp_Object tem; 3176 Lisp_Object tem;
@@ -3305,6 +3308,7 @@ and applies even for keys that have ordinary bindings.");
3305 defsubr (&Sapropos_internal); 3308 defsubr (&Sapropos_internal);
3306} 3309}
3307 3310
3311void
3308keys_of_keymap () 3312keys_of_keymap ()
3309{ 3313{
3310 Lisp_Object tem; 3314 Lisp_Object tem;