- The keypad does not work when nano runs in the Gnome terminal (43). [FIXED]
- When reading in a file, if the file is a directory the contents of the
file being edited are blown away (discovered by Chris Pimlot) (44). [FIXED]
+- In replace, hitting the Goto line shortcut key does nothing after a
+ search string is entered (discovered by Rocco Corsi) (46) [FIXED].
** Open BUGS **
replace_abort()
- Add reset of placewewant, stops cursor from jumping when moving
cursor after a replace.
+ do_replace()
+ - Added code for Gotoline key after entering the search term.
+ Fixes bug #46.
- winio.c
nanogetstr()
- Added check for 343 in while loop to get rid of getting "locked"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-10-26 08:48-0400\n"
+"POT-Creation-Date: 2000-10-27 00:34-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "Replaced 1 occurence"
msgstr ""
-#: search.c:392 search.c:421 search.c:446
+#: search.c:392 search.c:421 search.c:449
msgid "Replace Cancelled"
msgstr ""
msgstr ""
#. last_search is empty
-#: search.c:444
+#: search.c:447
msgid "Replace with"
msgstr ""
-#: search.c:487
+#: search.c:493
msgid "Replace this instance?"
msgstr ""
#. Ask for it
-#: search.c:548
+#: search.c:554
msgid "Enter line number"
msgstr ""
-#: search.c:550
+#: search.c:556
msgid "Aborted"
msgstr ""
-#: search.c:570
+#: search.c:576
msgid "Come on, be reasonable"
msgstr ""
-#: search.c:575
+#: search.c:581
#, c-format
msgid "Only %d lines available, skipping to last line"
msgstr ""
do_replace();
return 0;
+ } else if (i == NANO_FROMSEARCHTOGOTO_KEY) { /* oops... */
+ do_gotoline_void();
+ return 0;
} else if (i != -2) { /* First page, last page, for example could get here */
do_early_abort();
do_replace();
return -1;
+ } else if (i == NANO_FROMSEARCHTOGOTO_KEY) { /* oops... */
+ do_gotoline_void();
+ return 0;
} else if (i == NANO_NULL_KEY)
strcpy(last_replace, "");
else { /* First line key, etc. */