projects
/
p5sagit/Function-Parameters.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
426a4d6
)
detect sigils without strchr()
Lukas Mai [Wed, 20 Jun 2012 06:56:26 +0000 (08:56 +0200)]
Parameters.xs
patch
|
blob
|
blame
|
history
diff --git
a/Parameters.xs
b/Parameters.xs
index
0900901
..
52c0bdb
100644
(file)
--- a/
Parameters.xs
+++ b/
Parameters.xs
@@
-175,7
+175,7
@@
static int parse_fun(pTHX_ OP **pop, const char *keyword_ptr, STRLEN keyword_len
for (;;) {
c = lex_peek_unichar(0);
- if (c && strchr("$@%", c)) {
+ if (c == '$' || c == '@' || c == '%') {
sv_catpvf(params, "%c", (int)c);
lex_read_unichar(0);
lex_read_space(0);