diff options
author | LEVAI Daniel <leva@ecentrum.hu> | 2013-11-30 16:42:55 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-12-02 00:58:15 -0600 |
commit | 1a30de88fe6537a8506de07aa14992cfa83f831d (patch) | |
tree | 828d40e569781b7adb2c9de436c73167fc99ea12 /system/ksh-openbsd/patches/04-ksh-vi-make-Ctrl-f-in-command-mode-behave-the-same-a.diff | |
parent | e05c1f08183764abce6384f1938cefee2960ba5b (diff) |
system/ksh-openbsd: Updated for version 20131129.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/ksh-openbsd/patches/04-ksh-vi-make-Ctrl-f-in-command-mode-behave-the-same-a.diff')
-rw-r--r-- | system/ksh-openbsd/patches/04-ksh-vi-make-Ctrl-f-in-command-mode-behave-the-same-a.diff | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/system/ksh-openbsd/patches/04-ksh-vi-make-Ctrl-f-in-command-mode-behave-the-same-a.diff b/system/ksh-openbsd/patches/04-ksh-vi-make-Ctrl-f-in-command-mode-behave-the-same-a.diff deleted file mode 100644 index 6978789ec949a..0000000000000 --- a/system/ksh-openbsd/patches/04-ksh-vi-make-Ctrl-f-in-command-mode-behave-the-same-a.diff +++ /dev/null @@ -1,26 +0,0 @@ -From 90f648bf6182d558ff6489caefb52240fb2eab4e Mon Sep 17 00:00:00 2001 -From: Alexander Polakov <polachok@gmail.com> -Date: Sun, 29 May 2011 15:34:55 +0400 -Subject: [PATCH 4/8] ksh/vi: make Ctrl-f in command mode behave the same as - in insert. - ---- - vi.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git vi.c vi.c -index d0de478..6eb5d8c 100644 ---- vi.c -+++ vi.c -@@ -1132,7 +1132,7 @@ vi_cmd(int argcnt, const char *cmd) - return -1; - case '\\': /* at&t ksh */ - case Ctrl('f'): /* Nonstandard vi/ksh */ -- complete_word(1, argcnt, 0); -+ complete_word(1, argcnt, XCF_FORCE_COMMAND); - break; - - --- -1.7.5 - |