mirror of
https://github.com/golang/go
synced 2024-11-25 06:37:58 -07:00
'\Ucafebabe'
SVN=121562
This commit is contained in:
parent
fc184ef887
commit
b6218e6907
@ -387,7 +387,7 @@ void lexinit(void);
|
|||||||
char* lexname(int);
|
char* lexname(int);
|
||||||
long getr(void);
|
long getr(void);
|
||||||
int getnsc(void);
|
int getnsc(void);
|
||||||
long escchar(long, int*);
|
ulong escchar(int, int*);
|
||||||
int getc(void);
|
int getc(void);
|
||||||
void ungetc(int);
|
void ungetc(int);
|
||||||
void mkpackage(char*);
|
void mkpackage(char*);
|
||||||
|
@ -171,7 +171,7 @@ cannedimports(void)
|
|||||||
long
|
long
|
||||||
yylex(void)
|
yylex(void)
|
||||||
{
|
{
|
||||||
long c, c1;
|
ulong c, c1;
|
||||||
char *cp;
|
char *cp;
|
||||||
Rune rune;
|
Rune rune;
|
||||||
int escflag;
|
int escflag;
|
||||||
@ -696,10 +696,10 @@ getnsc(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
long
|
ulong
|
||||||
escchar(long e, int *escflg)
|
escchar(int e, int *escflg)
|
||||||
{
|
{
|
||||||
long c, l;
|
ulong c, l;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
*escflg = 0;
|
*escflg = 0;
|
||||||
@ -753,7 +753,7 @@ loop:
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
if(c != e)
|
if(c != e)
|
||||||
warn("unknown escape sequence: %c", c);
|
warn("unknown escape sequence: %c", c);
|
||||||
}
|
}
|
||||||
return c;
|
return c;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user