do_yesno() comment fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1809 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
74af3a7419
commit
45eda52d7e
|
@ -2824,8 +2824,8 @@ int statusq(int allowtabs, const shortcut *s, const char *def,
|
||||||
int do_yesno(int all, const char *msg)
|
int do_yesno(int all, const char *msg)
|
||||||
{
|
{
|
||||||
int ok = -2, width = 16;
|
int ok = -2, width = 16;
|
||||||
const char *yesstr; /* String of yes characters accepted */
|
const char *yesstr; /* String of yes characters accepted. */
|
||||||
const char *nostr; /* Same for no */
|
const char *nostr; /* Same for no. */
|
||||||
const char *allstr; /* And all, surprise! */
|
const char *allstr; /* And all, surprise! */
|
||||||
|
|
||||||
/* Yes, no and all are strings of any length. Each string consists
|
/* Yes, no and all are strings of any length. Each string consists
|
||||||
|
@ -2835,8 +2835,6 @@ int do_yesno(int all, const char *msg)
|
||||||
nostr = _("Nn");
|
nostr = _("Nn");
|
||||||
allstr = _("Aa");
|
allstr = _("Aa");
|
||||||
|
|
||||||
/* Remove gettext() call for keybindings until we clear the thing
|
|
||||||
* up. */
|
|
||||||
if (!ISSET(NO_HELP)) {
|
if (!ISSET(NO_HELP)) {
|
||||||
char shortstr[3]; /* Temp string for Y, N, A. */
|
char shortstr[3]; /* Temp string for Y, N, A. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue