]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for Finteractive (only %s is allowed)
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Jul 2019 15:18:11 +0000 (17:18 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Jul 2019 15:18:11 +0000 (17:18 +0200)
* src/callint.c (Finteractive): Any other format spec than %s will
bug out with "Format specifier doesn’t match argument type", so
say explicitly that only %s is supported (bug#31314).

src/callint.c

index 88a3c348d0a1649c3c15b85dd8b7f8cedaf2e866..812287d365f2e7059b8a756f5e2fea3510b8a11b 100644 (file)
@@ -54,10 +54,12 @@ Usually the argument of `interactive' is a string containing a code
  arguments to the command, concatenate the individual strings,
  separating them by newline characters.
 
-Prompts are passed to `format', and may use % escapes to print the
+Prompts are passed to `format', and may use %s escapes to print the
  arguments that have already been read.
+
 If the argument is not a string, it is evaluated to get a list of
  arguments to pass to the command.
+
 Just `(interactive)' means pass no arguments to the command when
  calling interactively.