Commit 532d55c8 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Making a message equal to another one.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5142 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 2 deletions
+4 -2
2015-03-20 Benno Schulenberg <bensberg@justemail.net> 2015-03-20 Benno Schulenberg <bensberg@justemail.net>
* src/nao.c (finish_stdin_pager, cancel_stdin_pager, stdin_pager): * src/nano.c (finish_stdin_pager, cancel_stdin_pager, stdin_pager):
Normalize the whitespace, remove an old comment, and place another Normalize the whitespace, remove an old comment, and place another
one better. one better.
* src/text.c (do_undo): Make a message equal to another one. It
was mistakenly changed in r4950. (This is translation-neutral.)
2015-03-17 Benno Schulenberg <bensberg@justemail.net> 2015-03-17 Benno Schulenberg <bensberg@justemail.net>
* src/text.c (do_alt_speller): Do not set the modified flag when * src/text.c (do_alt_speller): Do not set the modified flag when
......
...@@ -442,7 +442,7 @@ void do_undo(void) ...@@ -442,7 +442,7 @@ void do_undo(void)
filestruct *f = fsfromline(u->mark_begin_lineno); filestruct *f = fsfromline(u->mark_begin_lineno);
if (!f) { if (!f) {
statusbar(_("Internal error: can't match line %ld. Please save your work."), (long)u->mark_begin_lineno); statusbar(_("Internal error: can't match line %d. Please save your work."), u->mark_begin_lineno);
return; return;
} }
#ifdef DEBUG #ifdef DEBUG
......
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