mirror of
https://github.com/vim/vim.git
synced 2025-10-06 05:44:14 -04:00
patch 8.2.2196: :version output has extra spaces in compile and link command
Problem: :version output has extra spaces in compile and link command. Solution: Adjust QUOTESED. (closes #7505)
This commit is contained in:
4
src/auto/configure
vendored
4
src/auto/configure
vendored
@@ -5006,9 +5006,9 @@ esac
|
||||
fi
|
||||
|
||||
if test "$zOSUnix" = "yes"; then
|
||||
QUOTESED="sed -e 's/[\\\\\"]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/'"
|
||||
QUOTESED="sed -e 's/[\\\\\"]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/' -e 's/ */ /g'"
|
||||
else
|
||||
QUOTESED="sed -e 's/[\\\\\"]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/'"
|
||||
QUOTESED="sed -e 's/[\\\\\"]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/' -e 's/ */ /g'"
|
||||
fi
|
||||
|
||||
|
||||
|
@@ -437,9 +437,9 @@ fi
|
||||
|
||||
dnl Set QUOTESED. Needs additional backslashes on zOS
|
||||
if test "$zOSUnix" = "yes"; then
|
||||
QUOTESED="sed -e 's/[[\\\\\"]]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/'"
|
||||
QUOTESED="sed -e 's/[[\\\\\"]]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/' -e 's/ */ /g'"
|
||||
else
|
||||
QUOTESED="sed -e 's/[[\\\\\"]]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/'"
|
||||
QUOTESED="sed -e 's/[[\\\\\"]]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/' -e 's/ */ /g'"
|
||||
fi
|
||||
AC_SUBST(QUOTESED)
|
||||
|
||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2196,
|
||||
/**/
|
||||
2195,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user