nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit dcb4e3a66d68484333591d077d969781f4f05c8b
parent 00762ffaeb3bd3a9bd394477d53ed8b4c866b380
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri,  8 Apr 2005 20:27:02 +0000

clarify comment


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2456 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/winio.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/winio.c b/src/winio.c @@ -3649,11 +3649,11 @@ int do_yesno(bool all, const char *msg) const char *allstr; /* And all, surprise! */ /* yesstr, nostr, and allstr are strings of any length. Each string - * consists of all characters accepted as a valid character for that - * value. The first value will be the one displayed in the - * shortcuts. Translators: if possible, specify both the shortcuts - * for your language and English. For example, in French: "OoYy" - * for "Oui". */ + * consists of all single-byte characters accepted as valid + * characters for that value. The first value will be the one + * displayed in the shortcuts. Translators: if possible, specify + * both the shortcuts for your language and English. For example, + * in French: "OoYy" for "Oui". */ yesstr = _("Yy"); nostr = _("Nn"); allstr = _("Aa");