comparison src/fns.c @ 58379:0f1b514dc439

(Fyes_or_no_p): Call Fread_from_minibuffer with extra argument.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 21 Nov 2004 00:57:49 +0000
parents 491080266027
children 834b3aeb850f
comparison
equal deleted inserted replaced
58378:da1fdf9e696b 58379:0f1b514dc439
3302 3302
3303 while (1) 3303 while (1)
3304 { 3304 {
3305 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil, 3305 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil,
3306 Qyes_or_no_p_history, Qnil, 3306 Qyes_or_no_p_history, Qnil,
3307 Qnil)); 3307 Qnil, Qnil));
3308 if (SCHARS (ans) == 3 && !strcmp (SDATA (ans), "yes")) 3308 if (SCHARS (ans) == 3 && !strcmp (SDATA (ans), "yes"))
3309 { 3309 {
3310 UNGCPRO; 3310 UNGCPRO;
3311 return Qt; 3311 return Qt;
3312 } 3312 }