emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 1c84b18: Fix builds without modules


From: Glenn Morris
Subject: master 1c84b18: Fix builds without modules
Date: Sun, 13 Sep 2020 20:19:53 -0400 (EDT)

branch: master
commit 1c84b187abc3ca60ae1a93522ddbad5af6cfd595
Author: Glenn Morris <rgm@gnu.org>
Commit: Glenn Morris <rgm@gnu.org>

    Fix builds without modules
    
    * src/data.c (Finteractive_form):
    * src/eval.c (Fcommandp): Fix builds without modules.
---
 src/data.c | 2 ++
 src/eval.c | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/data.c b/src/data.c
index dae8b10..6558985 100644
--- a/src/data.c
+++ b/src/data.c
@@ -906,6 +906,7 @@ Value, if non-nil, is a list (interactive SPEC).  */)
       if (PVSIZE (fun) > COMPILED_INTERACTIVE)
        return list2 (Qinteractive, AREF (fun, COMPILED_INTERACTIVE));
     }
+#ifdef HAVE_MODULES
   else if (MODULE_FUNCTIONP (fun))
     {
       Lisp_Object form
@@ -913,6 +914,7 @@ Value, if non-nil, is a list (interactive SPEC).  */)
       if (! NILP (form))
         return form;
     }
+#endif
   else if (AUTOLOADP (fun))
     return Finteractive_form (Fautoload_do_load (fun, cmd, Qnil));
   else if (CONSP (fun))
diff --git a/src/eval.c b/src/eval.c
index fdc3cd1..5d3c323 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1948,12 +1948,14 @@ then strings and vectors are not accepted.  */)
   else if (COMPILEDP (fun))
     return (PVSIZE (fun) > COMPILED_INTERACTIVE ? Qt : if_prop);
 
+#ifdef HAVE_MODULES
   /* Module functions are interactive if their `interactive_form'
      field is non-nil. */
   else if (MODULE_FUNCTIONP (fun))
     return NILP (module_function_interactive_form (XMODULE_FUNCTION (fun)))
              ? if_prop
              : Qt;
+#endif
 
   /* Strings and vectors are keyboard macros.  */
   if (STRINGP (fun) || VECTORP (fun))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]