From 4097379a264ff47a756ce184adf4b0feed6ab838 Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Mon, 15 Jan 2001 20:25:24 +0000 Subject: [PATCH] Changed 'without NumLock on' to 'with NumLock off', more easy to understand? git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@480 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- faq.html | 4 ++-- nano.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/faq.html b/faq.html index 4e96418f..51abd758 100644 --- a/faq.html +++ b/faq.html @@ -68,7 +68,7 @@ my window.   How can I fix that? search string, the string I last searched for is already in front of my cursor! !What happened?!
4.6. I get the message "NumLock -glitch detected. Keypad will malfunction without NumLock on." What +glitch detected. Keypad will malfunction with NumLock off." What gives?
4.7. How do I make nano my default editor (in Pine, mutt, etc.)? @@ -427,7 +427,7 @@ details).

I get the message "NumLock glitch detected. Keypad -will malfunction without NumLock on." What gives?

+will malfunction with NumLock off." What gives?
Nano (actually almost all console editors do) has issues when cycling diff --git a/nano.c b/nano.c index 43468ebd..f1add813 100644 --- a/nano.c +++ b/nano.c @@ -2057,7 +2057,7 @@ void print_numlock_warning(void) { static int didmsg = 0; if (!didmsg) { - statusbar(_("NumLock glitch detected. Keypad will malfunction without NumLock on")); + statusbar(_("NumLock glitch detected. Keypad will malfunction with NumLock off")); didmsg = 1; } }