]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_interactively): Pass extra arg to Fread_string.
authorRichard M. Stallman <rms@gnu.org>
Thu, 15 May 1997 02:28:34 +0000 (02:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 15 May 1997 02:28:34 +0000 (02:28 +0000)
src/callint.c

index 150e70e6526f81cf72b0dfe551b442e9f050c22d..819a39ad38e232716dd61df43aeb2ec7414176d8 100644 (file)
@@ -634,12 +634,13 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
          break;
 
        case 's':               /* String read via minibuffer.  */
-         args[i] = Fread_string (build_string (callint_message), Qnil, Qnil);
+         args[i] = Fread_string (build_string (callint_message),
+                                 Qnil, Qnil, Qnil);
          break;
 
        case 'S':               /* Any symbol.  */
          visargs[i] = Fread_string (build_string (callint_message),
-                                    Qnil, Qnil);
+                                    Qnil, Qnil, Qnil);
          /* Passing args[i] directly stimulates compiler bug */
          teml = visargs[i];
          args[i] = Fintern (teml, Qnil);