Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-03-25 07:01:00 +0000
committerAlexander Kurtakov2017-03-25 07:05:46 +0000
commit2268403e0255795fc16e2669849ad4c8d46b41a5 (patch)
treedd4e336519f1d5a9ee54a443af2a588d36405135 /build/org.eclipse.cdt.autotools.ui
parent5e1208c12a883779dfdbb24fd18dae452691ea2c (diff)
downloadorg.eclipse.cdt-2268403e0255795fc16e2669849ad4c8d46b41a5.tar.gz
org.eclipse.cdt-2268403e0255795fc16e2669849ad4c8d46b41a5.tar.xz
org.eclipse.cdt-2268403e0255795fc16e2669849ad4c8d46b41a5.zip
autotools: Restore API.
It's unused but still we have to keep it. Change-Id: I9f23e09c0ce62bf88f6cc490a7c0c31852b6fd16 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'build/org.eclipse.cdt.autotools.ui')
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfMacroDamagerRepairer.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfMacroDamagerRepairer.java b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfMacroDamagerRepairer.java
index 83d3b6743f5..ae78e464096 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfMacroDamagerRepairer.java
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/AutoconfMacroDamagerRepairer.java
@@ -15,6 +15,11 @@ import org.eclipse.jface.text.rules.ITokenScanner;
public class AutoconfMacroDamagerRepairer extends DefaultDamagerRepairer {
+ public final static String UNMATCHED_RIGHT_PARENTHESIS = "UnmatchedRightParenthesis"; //$NON-NLS-1$
+ public final static String UNMATCHED_LEFT_PARENTHESIS = "UnmatchedLeftParenthesis"; //$NON-NLS-1$
+ public final static String UNMATCHED_RIGHT_QUOTE = "UnmatchedRightQuote"; //$NON-NLS-1$
+ public final static String UNMATCHED_LEFT_QUOTE = "UnmatchedLeftQuote"; //$NON-NLS-1$
+
/**
* Creates a damager/repairer that uses the given scanner. The scanner may
* not be <code>null</code> and is assumed to return only token that carry

Back to the top