From cc515226efa8cc9c7827bf3edb940325ee2b13ec Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 29 Mar 2001 13:58:30 +0000 Subject: [PATCH] (Fsubr_interactive_form): New function. (syms_of_data): Defsubr it. --- src/data.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/data.c b/src/data.c index b635cb5619b..f84ee1b03ca 100644 --- a/src/data.c +++ b/src/data.c @@ -731,6 +731,20 @@ function with `&rest' args, or `unevalled' for a special form.") return Fcons (make_number (minargs), make_number (maxargs)); } +DEFUN ("subr-interactive-form", Fsubr_interactive_form, Ssubr_interactive_form, 1, 1, 0, + "Return the interactive form of SUBR or nil if none.\n\ +SUBR must be a built-in function. Value, if non-nil, is a list\n\ +\(interactive SPEC).") + (subr) + Lisp_Object subr; +{ + if (!SUBRP (subr)) + wrong_type_argument (Qsubrp, subr); + if (XSUBR (subr)->prompt) + return list2 (Qinteractive, build_string (XSUBR (subr)->prompt)); + return Qnil; +} + /* Getting and setting values of symbols */ @@ -3000,6 +3014,7 @@ syms_of_data () staticpro (&Qbool_vector); staticpro (&Qhash_table); + defsubr (&Ssubr_interactive_form); defsubr (&Seq); defsubr (&Snull); defsubr (&Stype_of); -- 2.39.2