Index: /applications/editors/josm/plugins/comfort0/src/net/simon04/comfort0/level0l/Level0LParser.jj
===================================================================
--- /applications/editors/josm/plugins/comfort0/src/net/simon04/comfort0/level0l/Level0LParser.jj	(revision 35585)
+++ /applications/editors/josm/plugins/comfort0/src/net/simon04/comfort0/level0l/Level0LParser.jj	(revision 35586)
@@ -33,5 +33,5 @@
 
 <COMMENT>
-SKIP: { < ~["\n", "\r"] > }
+SKIP: { < ["\u0020"-"\uffff"] > }
 
 <COMMENT>
@@ -43,5 +43,5 @@
 TOKEN: {
     <V_EOL: ("\n" | "\r" | "\r\n") > : DEFAULT
-    | <TEXT: (~["\n", "\r"])+ >
+    | <TEXT: (["\u0020"-"\uffff"])+ >
 }
 
Index: /applications/editors/josm/plugins/comfort0/test/data/example.osm
===================================================================
--- /applications/editors/josm/plugins/comfort0/test/data/example.osm	(revision 35585)
+++ /applications/editors/josm/plugins/comfort0/test/data/example.osm	(revision 35586)
@@ -25,5 +25,5 @@
     <!--...-->
     <member type="node" ref="249673494" role=""/>
-    <tag k="name" v="Küstenbus Linie 123"/>
+    <tag k="name" v="Küstenbus Linie 123–124"/>
     <tag k="network" v="VVW"/>
     <tag k="operator" v="Regionalverkehr Küste"/>
Index: /applications/editors/josm/plugins/comfort0/test/unit/net/simon04/comfort0/OsmToLevel0LTest.java
===================================================================
--- /applications/editors/josm/plugins/comfort0/test/unit/net/simon04/comfort0/OsmToLevel0LTest.java	(revision 35585)
+++ /applications/editors/josm/plugins/comfort0/test/unit/net/simon04/comfort0/OsmToLevel0LTest.java	(revision 35586)
@@ -61,6 +61,6 @@
                     "  nd 261728686 #261728686 (54.0906309, 12.2441924)\n" +
                     "\n" +
-                    "relation 56688 #route (\"Küstenbus Linie 123\", 4 members, incomplete)\n" +
-                    "  name = Küstenbus Linie 123\n" +
+                    "relation 56688 #route (\"Küstenbus Linie 123–124\", 4 members, incomplete)\n" +
+                    "  name = Küstenbus Linie 123–124\n" +
                     "  network = VVW\n" +
                     "  operator = Regionalverkehr Küste\n" +
Index: /applications/editors/josm/plugins/comfort0/test/unit/net/simon04/comfort0/level0l/parsergen/Level0LParserTest.java
===================================================================
--- /applications/editors/josm/plugins/comfort0/test/unit/net/simon04/comfort0/level0l/parsergen/Level0LParserTest.java	(revision 35585)
+++ /applications/editors/josm/plugins/comfort0/test/unit/net/simon04/comfort0/level0l/parsergen/Level0LParserTest.java	(revision 35586)
@@ -8,4 +8,6 @@
 import java.util.List;
 
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
+import org.junit.Rule;
 import org.junit.Test;
 import org.openstreetmap.josm.data.osm.NodeData;
@@ -14,6 +16,15 @@
 import org.openstreetmap.josm.data.osm.RelationData;
 import org.openstreetmap.josm.data.osm.WayData;
+import org.openstreetmap.josm.testutils.JOSMTestRules;
 
 public class Level0LParserTest {
+
+    /**
+     * Setup rule
+     */
+    @Rule
+    @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
+    public JOSMTestRules test = new JOSMTestRules().preferences();
+
     @Test
     public void testNode() throws Exception {
@@ -59,5 +70,5 @@
                 "  wy 4579143 forward\n" +
                 "  nd 249673494 stop # the end\n" +
-                "  name = Küstenbus Linie 123\n" +
+                "  name = Küstenbus Linie 123–124\n" +
                 "  network = VVW\n" +
                 "  operator = Regionalverkehr Küste\n" +
@@ -67,4 +78,5 @@
         final RelationData relation = new Level0LParser(new StringReader(level0l)).relation();
         assertThat(relation.getId(), is(56688L));
+        assertThat(relation.getName(), is("Küstenbus Linie 123–124"));
         assertThat(relation.getMembersCount(), is(4));
         assertThat(relation.getMembers().get(0).getMemberId(), is(294942404L));
