gdb
[deliverable/binutils-gdb.git] / gdb / jv-exp.y
index f91e5bd55684d4360ffb4fbad833ca0a9ff96aec..a904c3295f5e971c34ab16429393f2d74c6a1979 100644 (file)
@@ -898,7 +898,7 @@ yylex (void)
       lexptr++;
       c = *lexptr++;
       if (c == '\\')
-       c = parse_escape (&lexptr);
+       c = parse_escape (parse_gdbarch, &lexptr);
       else if (c == '\'')
        error (_("Empty character constant"));
 
@@ -1061,7 +1061,7 @@ yylex (void)
            break;
          case '\\':
            tokptr++;
-           c = parse_escape (&tokptr);
+           c = parse_escape (parse_gdbarch, &tokptr);
            if (c == -1)
              {
                continue;
This page took 0.023884 seconds and 4 git commands to generate.