projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
f3b7b53
)
regcomp.c: Add comments; no code changes
author
Karl Williamson <public@khwilliamson.com>
Tue, 22 Jan 2013 20:32:01 +0000 (13:32 -0700)
committer
Karl Williamson <public@khwilliamson.com>
Thu, 24 Jan 2013 02:35:34 +0000 (19:35 -0700)
regcomp.c
patch
|
blob
|
blame
|
history
diff --git
a/regcomp.c
b/regcomp.c
index
6299a4d
..
daf310f
100644
(file)
--- a/
regcomp.c
+++ b/
regcomp.c
@@
-10781,9
+10781,10
@@
tryagain:
ckWARN3reg(p + len, "Unrecognized escape \\%.*s passed through", len, p);
}
goto normal_default;
- }
+ } /* End of switch on '\' */
break;
- default:
+ default: /* A literal character */
+
normal_default:
if (UTF8_IS_START(*p) && UTF) {
STRLEN numlen;