From: Kim F. Storm Date: Wed, 6 Feb 2002 22:58:23 +0000 (+0000) Subject: (Fkey_binding, Fwhere_is_internal): Update prototype. X-Git-Tag: ttn-vms-21-2-B4~16804 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cc0d001d9e80907ff192192d2eb3c20fc03fbe4a;p=emacs.git (Fkey_binding, Fwhere_is_internal): Update prototype. (is_command_symbol): Added prototype. --- diff --git a/src/keymap.h b/src/keymap.h index 61e33834c8c..00d1c0387b9 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -28,10 +28,11 @@ EXFUN (Fmake_sparse_keymap, 1); EXFUN (Fkeymap_prompt, 1); EXFUN (Fdefine_key, 3); EXFUN (Flookup_key, 3); -EXFUN (Fkey_binding, 2); +EXFUN (Fkey_binding, 3); EXFUN (Fkey_description, 1); EXFUN (Fsingle_key_description, 2); -EXFUN (Fwhere_is_internal, 4); +EXFUN (Fwhere_is_internal, 5); +extern int is_command_symbol P_ ((Lisp_Object)); extern Lisp_Object access_keymap P_ ((Lisp_Object, Lisp_Object, int, int, int)); extern Lisp_Object get_keyelt P_ ((Lisp_Object, int)); extern Lisp_Object get_keymap P_ ((Lisp_Object, int, int));