comparison src/callint.c @ 70940:0143e273eaa8

(Fcall_interactively): Fread_from_minibuffer now takes only seven args.
author Luc Teirlinck <teirllm@auburn.edu>
date Thu, 25 May 2006 23:17:17 +0000
parents 3bd95f4f2941
children 68b2027cba70 46b1096093f5 a8190f7e546e
comparison
equal deleted inserted replaced
70939:10be917a42fa 70940:0143e273eaa8
728 } 728 }
729 first = 0; 729 first = 0;
730 730
731 tem = Fread_from_minibuffer (build_string (callint_message), 731 tem = Fread_from_minibuffer (build_string (callint_message),
732 Qnil, Qnil, Qnil, Qnil, Qnil, 732 Qnil, Qnil, Qnil, Qnil, Qnil,
733 Qnil, Qnil); 733 Qnil);
734 if (! STRINGP (tem) || SCHARS (tem) == 0) 734 if (! STRINGP (tem) || SCHARS (tem) == 0)
735 args[i] = Qnil; 735 args[i] = Qnil;
736 else 736 else
737 args[i] = Fread (tem); 737 args[i] = Fread (tem);
738 } 738 }