diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-30 00:02:46 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-05-01 19:27:10 +0200 |
commit | 3852fd6e318b9860958c4a2b3c72d69e63ac2fbf (patch) | |
tree | 010dd640014400890da658e94aa3f67ee8473811 | |
parent | db20f89634287e903f0900ccc632b536a13af455 (diff) | |
download | emacs-3852fd6e318b9860958c4a2b3c72d69e63ac2fbf.tar.gz |
Minor doc clarification
* lisp/subr.el (y-or-n-p): Document the return value from "n"
(bug#18024).
(cherry picked from commit 5d1f3192d484edee92caa46cd7d699da3e920259)
-rw-r--r-- | lisp/subr.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index ce49604f811..00a947397ae 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2312,7 +2312,8 @@ floating point support." (declare-function x-popup-dialog "menu.c" (position contents &optional header)) (defun y-or-n-p (prompt) - "Ask user a \"y or n\" question. Return t if answer is \"y\". + "Ask user a \"y or n\" question. +Return t if answer is \"y\" and nil if it is \"n\". PROMPT is the string to display to ask the question. It should end in a space; `y-or-n-p' adds \"(y or n) \" to it. |