Commit 6c5781ba authored by Chris Allegretta's avatar Chris Allegretta
Browse files

removed update_line call in do_up, fix for marker set update?

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@308 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 3 deletions
+4 -3
...@@ -14,6 +14,9 @@ CVS code - ...@@ -14,6 +14,9 @@ CVS code -
do_replace() do_replace()
- Copy back the previous value of last_replace into answer if - Copy back the previous value of last_replace into answer if
using PICO_MODE and answer == "" using PICO_MODE and answer == ""
- winio.c:
do_up()
- Deleted first update_line() call, screws up display when marker is set.
- nano.1, nano.1.html - nano.1, nano.1.html
- Updated man page for new -p definition. - Updated man page for new -p definition.
......
...@@ -168,8 +168,6 @@ int do_up(void) ...@@ -168,8 +168,6 @@ int do_up(void)
{ {
wrap_reset(); wrap_reset();
if (current->prev != NULL) { if (current->prev != NULL) {
update_line(current, 0);
if (placewewant > 0) if (placewewant > 0)
current_x = actual_x(current->prev, placewewant); current_x = actual_x(current->prev, placewewant);
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-11-21 07:49-0500\n" "POT-Creation-Date: 2000-11-22 20:20-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment