mirror of
https://github.com/vim/vim.git
synced 2025-10-20 08:14:18 -04:00
patch 8.0.0729: the help for the terminal configure option is wrong
Problem: The help for the terminal configure option is wrong. Solution: Change "Disable" to "Enable". (E Kawashima, closes #1849) Improve alignment.
This commit is contained in:
4
src/auto/configure
vendored
4
src/auto/configure
vendored
@@ -1494,12 +1494,12 @@ Optional Features:
|
|||||||
--enable-workshop Include Sun Visual Workshop support.
|
--enable-workshop Include Sun Visual Workshop support.
|
||||||
--disable-netbeans Disable NetBeans integration support.
|
--disable-netbeans Disable NetBeans integration support.
|
||||||
--disable-channel Disable process communication support.
|
--disable-channel Disable process communication support.
|
||||||
--enable-terminal Disable terminal emulation support.
|
--enable-terminal Enable terminal emulation support.
|
||||||
--enable-multibyte Include multibyte editing support.
|
--enable-multibyte Include multibyte editing support.
|
||||||
--enable-hangulinput Include Hangul input support.
|
--enable-hangulinput Include Hangul input support.
|
||||||
--enable-xim Include XIM input support.
|
--enable-xim Include XIM input support.
|
||||||
--enable-fontset Include X fontset output support.
|
--enable-fontset Include X fontset output support.
|
||||||
--enable-gui=OPTS X11 GUI default=auto OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon
|
--enable-gui=OPTS X11 GUI. default=auto OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon
|
||||||
--enable-gtk2-check If auto-select GUI, check for GTK+ 2 default=yes
|
--enable-gtk2-check If auto-select GUI, check for GTK+ 2 default=yes
|
||||||
--enable-gnome-check If GTK GUI, check for GNOME default=no
|
--enable-gnome-check If GTK GUI, check for GNOME default=no
|
||||||
--enable-gtk3-check If auto-select GUI, check for GTK+ 3 default=yes
|
--enable-gtk3-check If auto-select GUI, check for GTK+ 3 default=yes
|
||||||
|
@@ -2030,7 +2030,7 @@ fi
|
|||||||
|
|
||||||
AC_MSG_CHECKING(--enable-terminal argument)
|
AC_MSG_CHECKING(--enable-terminal argument)
|
||||||
AC_ARG_ENABLE(terminal,
|
AC_ARG_ENABLE(terminal,
|
||||||
[ --enable-terminal Disable terminal emulation support.],
|
[ --enable-terminal Enable terminal emulation support.],
|
||||||
[enable_terminal="yes"], )
|
[enable_terminal="yes"], )
|
||||||
if test "$enable_terminal" = "yes"; then
|
if test "$enable_terminal" = "yes"; then
|
||||||
if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
|
if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
|
||||||
@@ -2214,7 +2214,7 @@ test "x$with_x" = xno -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && enable_gui
|
|||||||
|
|
||||||
AC_MSG_CHECKING(--enable-gui argument)
|
AC_MSG_CHECKING(--enable-gui argument)
|
||||||
AC_ARG_ENABLE(gui,
|
AC_ARG_ENABLE(gui,
|
||||||
[ --enable-gui[=OPTS] X11 GUI [default=auto] [OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon]], , enable_gui="auto")
|
[ --enable-gui[=OPTS] X11 GUI. [default=auto] [OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon]], , enable_gui="auto")
|
||||||
|
|
||||||
dnl Canonicalize the --enable-gui= argument so that it can be easily compared.
|
dnl Canonicalize the --enable-gui= argument so that it can be easily compared.
|
||||||
dnl Do not use character classes for portability with old tools.
|
dnl Do not use character classes for portability with old tools.
|
||||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
729,
|
||||||
/**/
|
/**/
|
||||||
728,
|
728,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user