aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2011-01-08 14:32:31 +0100
committerAndreas Schwab2011-01-08 14:32:31 +0100
commit0d23ffb5f840ff2d4d7180fa959af067276c3c56 (patch)
treebfb921df2e9a7056e95e19b2e20374db1f5f3bc4 /src
parent6c7ec17145ca8998bc74151bbe0d52e9b7f73a2f (diff)
downloademacs-0d23ffb5f840ff2d4d7180fa959af067276c3c56.tar.gz
emacs-0d23ffb5f840ff2d4d7180fa959af067276c3c56.zip
* src/fns.c (Fyes_or_no_p): Add usage.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fns.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1e38db4fd61..aad0050f0bd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-01-08 Andreas Schwab <schwab@linux-m68k.org>
2
3 * fns.c (Fyes_or_no_p): Add usage.
4
12011-01-08 Glenn Morris <rgm@gnu.org> 52011-01-08 Glenn Morris <rgm@gnu.org>
2 6
3 * makefile.w32-in ($(EMACS)): 7 * makefile.w32-in ($(EMACS)):
diff --git a/src/fns.c b/src/fns.c
index 3282b300f49..ddc193d85e4 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1,7 +1,7 @@
1/* Random utility Lisp functions. 1/* Random utility Lisp functions.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 3 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010 4 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc. 5 Free Software Foundation, Inc.
6 6
7This file is part of GNU Emacs. 7This file is part of GNU Emacs.
@@ -2468,7 +2468,8 @@ The user must confirm the answer with RET,
2468and can edit it until it has been confirmed. 2468and can edit it until it has been confirmed.
2469 2469
2470Under a windowing system a dialog box will be used if `last-nonmenu-event' 2470Under a windowing system a dialog box will be used if `last-nonmenu-event'
2471is nil, and `use-dialog-box' is non-nil. */) 2471is nil, and `use-dialog-box' is non-nil.
2472usage: (yes-or-no-p PROMPT &rest ARGS) */)
2472 (int nargs, Lisp_Object *args) 2473 (int nargs, Lisp_Object *args)
2473{ 2474{
2474 register Lisp_Object ans; 2475 register Lisp_Object ans;