]> git.wh0rd.org Git - nano.git/commitdiff
Also showing the name of the affected file when finding a lock file,
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 15 Feb 2015 16:20:09 +0000 (16:20 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sun, 15 Feb 2015 16:20:09 +0000 (16:20 +0000)
for when many files are opened at once.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5117 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/files.c

index 891c32d82b5469e8c916e6a9e3efe0dfc7b7947c..adec01247792a1a9757767ca1df316b2a005eaee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,13 @@
+2015-02-15  Benno Schulenberg  <bensberg@justemail.net>
+       * src/file.c (do_lockfile): Also show the name of the affected file
+       when finding a lock file, for when many files are opened at once.
+
 2015-02-09  Chris Allegretta <chrisa@asty.org>
        * nano.spec.in: Add dependency on texinfo, docdir files for
        RPM file creation.
 
 GNU nano 2.3.99pre2 - 2015.02.06
-2015-02-03 Alex Henrie <alexhenrie24@gmail.com>
+2015-02-03  Alex Henrie  <alexhenrie24@gmail.com>
        * src/cut.c (do_cut_text): Make sure to set modified even when
        using --enable-tiny.
 
index 20d16dc72267bfeb58f5a25c139b138a6e99d38c..5885358a02b6730b3817d0fd6d77d568c9559b79 100644 (file)
@@ -293,8 +293,8 @@ int do_lockfile(const char *filename)
         fprintf(stderr, "user which created this lock file should be %s\n",
                 lockuser);
 #endif
-        sprintf(promptstr, _("File is being edited (by %s, PID %d, user %s); continue?"),
-                              lockprog, lockpid, lockuser);
+        sprintf(promptstr, _("File %s is being edited (by %s, PID %d, user %s); continue?"),
+                              filename, lockprog, lockpid, lockuser);
         ans = do_yesno_prompt(FALSE, promptstr);
         if (ans < 1) {
             blank_statusbar();