components/ksh93/patches/165-CR7186440_ksh93_disable_predictive_editing.patch
author Norm Jacobs <Norm.Jacobs@Oracle.COM>
Mon, 27 Apr 2015 10:19:50 -0500
changeset 4196 d697072a92f5
parent 1045 components/ksh93/patches/CR7186440_ksh93_disable_predictive_editing.patch@2dbef0a33dc7
permissions -rw-r--r--
19782029 userland should be able to build from SCM repositories
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1045
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     1
--- a/src/cmd/ksh93/Makefile
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     2
+++ b/src/cmd/ksh93/Makefile
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     3
@@ -28,7 +28,7 @@ SHOPT_COSHELL == 1		/* build with connection to coshell */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     4
 SHOPT_CRNL ==			/* accept <cr><nl> for <nl> */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     5
 SHOPT_DYNAMIC == 1		/* dynamic loading for builtins */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     6
 SHOPT_ECHOPRINT ==		/* make echo equivalent to print */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     7
-SHOPT_EDPREDICT == 1		/* predictive editing  */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     8
+SHOPT_EDPREDICT == 0		/* predictive editing  */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
     9
 SHOPT_ESH == 1			/* emacs/gmacs edit mode */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
    10
 SHOPT_FILESCAN == 1		/* fast file scan */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
    11
 SHOPT_FIXEDARRAY == 1		/* fixed dimension indexed array */
2dbef0a33dc7 15805759 SUNBT7186440 ksh93: an initial pound sign (#) no longer treated as comment but s
Tomas Klacko <tomas.klacko@oracle.com>
parents:
diff changeset
    12