diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:22:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:22:04 +0000 |
commit | 91bb3b7bce2297f022a7d48604b1d8e3b9c54a8a (patch) | |
tree | 4633b3b9fc6b0a65333f51545214f29a3d0fd1b0 /debian/patches/2987.patch | |
parent | Adding upstream version 3:4.8.30. (diff) | |
download | mc-91bb3b7bce2297f022a7d48604b1d8e3b9c54a8a.tar.xz mc-91bb3b7bce2297f022a7d48604b1d8e3b9c54a8a.zip |
Adding debian version 3:4.8.30-1.debian/3%4.8.30-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/2987.patch')
-rw-r--r-- | debian/patches/2987.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/patches/2987.patch b/debian/patches/2987.patch new file mode 100644 index 0000000..62e31c8 --- /dev/null +++ b/debian/patches/2987.patch @@ -0,0 +1,25 @@ +Last-Update: 2017-06-29 +Forwarded: https://www.midnight-commander.org/ticket/2110#comment:11 +Author: Dmitry Borisyuk" <q1werty@i.com.ua> +Reviewed-by: Dmitry Smirnov <onlyjob@member.fsf.org> +Bug-MC: https://www.midnight-commander.org/ticket/2987 +Bug-MC: https://www.midnight-commander.org/ticket/2110 +Bug-Debian: http://bugs.debian.org/703741 +Description: clear unfinished text before 'cd' to avoid accidental execution + send C-k C-u to the shell before sending 'cd' command to erase previous + unfinished text (C-k is needed for bash if the cursor is in the middle of + the line). + +--- a/src/subshell/common.c ++++ b/src/subshell/common.c +@@ -1715,9 +1715,9 @@ + } + } + /* The initial space keeps this out of the command history (in bash + because we set "HISTCONTROL=ignorespace") */ +- write_all (mc_global.tty.subshell_pty, " cd ", 4); ++ write_all (mc_global.tty.subshell_pty, "\013\025 cd ", 6); + + if (vpath == NULL) + write_all (mc_global.tty.subshell_pty, "/", 1); + else |