pike.git/
lib/
modules/
Parser.pmod/
Pike.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2001-10-23
2001-10-23 20:09:09 by Martin Nilsson <mani@lysator.liu.se>
1c9333c6bc16de14af2ef05e75663c4d49b114f7 (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed a bug when using the token '\''.
Rev: lib/modules/Parser.pmod/Pike.pmod:1.12
211:
case '\'': pos++; if(data[pos]=='\\') pos++;
+
if(data[pos..pos+1]=="''") pos++;
int end=search(data, "'", pos)+1; if (!end) { --pos;