to the string converted from number with `Fnumber_to_string'.
Fixes: debbugs:14254
+2013-05-07 Juri Linkov <juri@jurta.org>
+
+ * callint.c (Fcall_interactively): Set `visargs[i]' for code 'n'
+ to the string converted from number with `Fnumber_to_string'.
+ (Bug#14254)
+
2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
* xfns.c (x_get_net_workarea): Define only if !GTK || GTK<3.4.
goto have_prefix_arg;
case 'n': /* Read number from minibuffer. */
args[i] = call1 (Qread_number, callint_message);
+ /* Passing args[i] directly stimulates compiler bug. */
+ teml = args[i];
+ visargs[i] = Fnumber_to_string (teml);
break;
case 'P': /* Prefix arg in raw form. Does no I/O. */