Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-11-20 21:55:18 +0000
committerMichael Valenta2002-11-20 21:55:18 +0000
commit3eb8a576856b27ae801cf18e417e5c3365547373 (patch)
tree1b011d04ff57711b373697ac2bcde8f6cd3d7c57
parentacaf3db17afc3ad3d2d04f5d0629403acb1597d6 (diff)
downloadeclipse.platform.team-3eb8a576856b27ae801cf18e417e5c3365547373.tar.gz
eclipse.platform.team-3eb8a576856b27ae801cf18e417e5c3365547373.tar.xz
eclipse.platform.team-3eb8a576856b27ae801cf18e417e5c3365547373.zip
22475: [CVS UI] keyword expansion is off by default, should be on
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
index e94d678b4..ca07c6f3a 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
@@ -75,7 +75,7 @@ public class CVSProviderPlugin extends Plugin {
// file transfer compression level (0 - 9)
public static final int DEFAULT_COMPRESSION_LEVEL = 0;
// default text keyword substitution mode
- public static final KSubstOption DEFAULT_TEXT_KSUBST_OPTION = Command.KSUBST_TEXT;
+ public static final KSubstOption DEFAULT_TEXT_KSUBST_OPTION = Command.KSUBST_TEXT_EXPAND;
// cvs plugin extension points and ids
public static final String ID = "org.eclipse.team.cvs.core"; //$NON-NLS-1$

Back to the top