]> git.wh0rd.org Git - nano.git/commitdiff
Giving audible feedback when flipping the new buffer to off
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 23 Jun 2014 20:30:23 +0000 (20:30 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 23 Jun 2014 20:30:23 +0000 (20:30 +0000)
is not allowed in view mode.

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

ChangeLog
src/files.c

index a7c6acc5b60549b2cbadbd0f642ebe91385e9028..4a888534de5ebba3d7ce64d3a83b105d872f45e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,8 @@
        the description of 'gototext' (not being about the file browser).
        * doc/syntax/nanorc.nanorc: Show Ins and Del as valid rebindable keys.
        * src/help.c (do_help): Normalize the indentation.
+       * src/files.c (do_insertfile): Give audible feedback when flipping
+       the new buffer to off is not allowed in view mode.
 
 2014-06-22  Benno Schulenberg  <bensberg@justemail.net>
        * src/browser.c (parse_browser_input), src/help.c (parse_help_input):
index da2cc469c1f2a355cda2e5c7fa00c8449da5fabf..9867c40b7b45a0058602e9bdc1b958c665471c27 100644 (file)
@@ -1080,6 +1080,8 @@ void do_insertfile(
                /* Don't allow toggling if we're in view mode. */
                if (!ISSET(VIEW_MODE))
                    TOGGLE(MULTIBUFFER);
+               else
+                   beep();
                continue;
            }
 #endif