diff options
author | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:58:55 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:58:55 (GMT) |
commit | 33d9f1c5366b091e6dc1ac66b3e8da6c022a050f (patch) | |
tree | 5aa7b08168c7338c2c03832954309a1834a52e6f /abs/extra/mc/mc-4.6.1-bash-all.patch | |
parent | 35848eb77301fe20bc9808caade9d2f3a0e966ba (diff) | |
download | linhes_pkgbuild-33d9f1c5366b091e6dc1ac66b3e8da6c022a050f.zip linhes_pkgbuild-33d9f1c5366b091e6dc1ac66b3e8da6c022a050f.tar.gz linhes_pkgbuild-33d9f1c5366b091e6dc1ac66b3e8da6c022a050f.tar.bz2 |
mc: 4.8.6
Diffstat (limited to 'abs/extra/mc/mc-4.6.1-bash-all.patch')
-rw-r--r-- | abs/extra/mc/mc-4.6.1-bash-all.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/abs/extra/mc/mc-4.6.1-bash-all.patch b/abs/extra/mc/mc-4.6.1-bash-all.patch deleted file mode 100644 index e3e2afc..0000000 --- a/abs/extra/mc/mc-4.6.1-bash-all.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- /src/subshell.c.000 2006-05-08 23:11:48.000000000 +0200 -+++ /src/subshell.c 2006-10-28 15:40:46.000000000 +0200 -@@ -745,29 +745,13 @@ subshell_name_quote (const char *s) - memcpy (d, cmd_start, len); - d += len; - -- /* -- * Print every character in octal format with the leading backslash. -- * tcsh and zsh may require 4-digit octals, bash < 2.05b doesn't like them. -- */ -- if (subshell_type == BASH) { - for (; *s; s++) { -- /* Must quote numbers, so that they are not glued to octals */ - if (isalpha ((unsigned char) *s)) { - *d++ = (unsigned char) *s; - } else { -- sprintf (d, "\\%03o", (unsigned char) *s); -- d += 4; -- } -- } -- } else { -- for (; *s; s++) { -- if (isalnum ((unsigned char) *s)) { -- *d++ = (unsigned char) *s; -- } else { - sprintf (d, "\\0%03o", (unsigned char) *s); - d += 5; - } -- } - } - - memcpy (d, common_end, sizeof (common_end)); - |