]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak Fdocumentation's error for an undefined function
authorGlenn Morris <rgm@gnu.org>
Fri, 20 Oct 2017 23:18:23 +0000 (19:18 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 20 Oct 2017 23:18:23 +0000 (19:18 -0400)
* src/doc.c (Fdocumentation): Restore the pre-25 behavior
of signalling a void-function error for an undefined function.
This seems cleaner than Emacs 25's "invalid-function: nil" error,
which was (probably) an unintended consequence of changes to
Findirect_function.

src/doc.c

index 3286c12675a2f43fcec3e64a80bfb118c4e7406a..e81740bfc1ccc0ec9aaa9f58515fada566f755db 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -336,6 +336,8 @@ string is passed through `substitute-command-keys'.  */)
     }
 
   fun = Findirect_function (function, Qnil);
+  if (NILP (fun))
+    xsignal1 (Qvoid_function, function);
   if (CONSP (fun) && EQ (XCAR (fun), Qmacro))
     fun = XCDR (fun);
   if (SUBRP (fun))