aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-08-29 03:03:15 +0000
committerJim Blandy1992-08-29 03:03:15 +0000
commit99dc4745e668aa682d58dd9347d3e903588d0b03 (patch)
tree21aa82552851266db1359f6decca9ff76e54dde9 /src
parent2fd3c56b6cc8355f637e8a46862acfb29f5879f9 (diff)
downloademacs-99dc4745e668aa682d58dd9347d3e903588d0b03.tar.gz
emacs-99dc4745e668aa682d58dd9347d3e903588d0b03.zip
* fns.c (Fyes_or_no_p): Call Fsleep_for with the appropriate
number of arguments.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 855e20b78b4..e0b43bd436e 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1185,7 +1185,7 @@ and can edit it until it as been confirmed.")
1185 Fding (Qnil); 1185 Fding (Qnil);
1186 Fdiscard_input (); 1186 Fdiscard_input ();
1187 message ("Please answer yes or no."); 1187 message ("Please answer yes or no.");
1188 Fsleep_for (make_number (2)); 1188 Fsleep_for (make_number (2), Qnil);
1189 } 1189 }
1190 UNGCPRO; 1190 UNGCPRO;
1191} 1191}