From: Benno Schulenberg Date: Sun, 12 Jul 2015 19:31:08 +0000 (+0000) Subject: Removing a stray space from a statusbar message. X-Git-Tag: v2.5.0~167 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=badbc676fb656cdf3b134e9e8f6eb696313c8e10;p=nano.git Removing a stray space from a statusbar message. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5295 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 54d1b9d7..f3a90483 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ 'added_magicline', as it will always be FALSE and thus does nothing. * src/text.c (do_alt_speller): Rename the variable 'totsize_save' to 'size_of_surrounding', to better describe what it contains. + * src/files.c (read_file): Remove a stray space from a message. 2015-07-10 Benno Schulenberg * src/nano.c (delete_opennode): Plug a small memory leak. diff --git a/src/files.c b/src/files.c index 53a34e55..42e1b95e 100644 --- a/src/files.c +++ b/src/files.c @@ -880,7 +880,7 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkw statusbar(P_("Read %lu line", "Read %lu lines", (unsigned long)num_lines), (unsigned long)num_lines); else - statusbar(P_("Read %lu line ( Warning: No write permission)", + statusbar(P_("Read %lu line (Warning: No write permission)", "Read %lu lines (Warning: No write permission)", (unsigned long)num_lines), (unsigned long)num_lines); }