aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1997-05-16 00:43:22 +0000
committerKenichi Handa1997-05-16 00:43:22 +0000
commit4b9171878a806e4999c3022a42866d2bdcdeeba3 (patch)
treed03a214618bb79c617f4381a848d2845c82d7680 /src
parent1177ecf6791ba62b496c37a4d68b5c9f342c3d05 (diff)
downloademacs-4b9171878a806e4999c3022a42866d2bdcdeeba3.tar.gz
emacs-4b9171878a806e4999c3022a42866d2bdcdeeba3.zip
Declare Fcopy_keymap as Lisp_Object in advance to
avoid compiler error.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/keymap.c b/src/keymap.c
index dbeae522928..5885e8ba199 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -98,6 +98,7 @@ static Lisp_Object define_as_prefix ();
98static Lisp_Object describe_buffer_bindings (); 98static Lisp_Object describe_buffer_bindings ();
99static void describe_command (), describe_translation (); 99static void describe_command (), describe_translation ();
100static void describe_map (); 100static void describe_map ();
101Lisp_Object Fcopy_keymap ();
101 102
102/* Keymap object support - constructors and predicates. */ 103/* Keymap object support - constructors and predicates. */
103 104