Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2005-04-17 16:55:18 +0000
committerDani Megert2005-04-17 16:55:18 +0000
commit03c4d99ec68fc218557f5bf48647681050209574 (patch)
treea49b2892acd029bb7f54b73981e15f5c649bd949 /org.eclipse.jface.text/src
parent580e3289aa219ada595dc2c350bd3ea82539c312 (diff)
downloadeclipse.platform.text-03c4d99ec68fc218557f5bf48647681050209574.tar.gz
eclipse.platform.text-03c4d99ec68fc218557f5bf48647681050209574.tar.xz
eclipse.platform.text-03c4d99ec68fc218557f5bf48647681050209574.zip
Added link to bug.
Diffstat (limited to 'org.eclipse.jface.text/src')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/internal/text/link/contentassist/HTML2TextReader.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/link/contentassist/HTML2TextReader.java b/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/link/contentassist/HTML2TextReader.java
index 05d83d9e602..4beb42f66a1 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/link/contentassist/HTML2TextReader.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/link/contentassist/HTML2TextReader.java
@@ -170,8 +170,10 @@ class HTML2TextReader extends SubstitutionTextReader {
if ("dd".equals(html)) //$NON-NLS-1$
return "\t"; //$NON-NLS-1$
- if ("li".equals(html)) //$NON-NLS-1$
+ if ("li".equals(html)) { //$NON-NLS-1$
+ // FIXME: this hard-coded prefix does not work for RTL languages, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=91682
return LINE_DELIM + ContentAssistMessages.getString("HTML2TextReader.listItemPrefix"); //$NON-NLS-1$ //$NON-NLS-2$
+ }
if ("/b".equals(html)) { //$NON-NLS-1$
stopBold();

Back to the top