]> git.wh0rd.org Git - nano.git/commitdiff
Making a message equal to another one.
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 20 Mar 2015 11:37:53 +0000 (11:37 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Fri, 20 Mar 2015 11:37:53 +0000 (11:37 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5142 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 697a36a977871fca91380efe85d4cad43d7c4072..88aa545819467d1a56c1d55bb6369e48c52093cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,9 @@
 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
        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>
        * src/text.c (do_alt_speller): Do not set the modified flag when
index b096fdba16a8bc5dd792f4feb3692ea4cab7e147..9b2153e358b71dcf278e49e81e39708157e6044b 100644 (file)
@@ -442,7 +442,7 @@ void do_undo(void)
 
     filestruct *f = fsfromline(u->mark_begin_lineno);
     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;
     }
 #ifdef DEBUG