summaryrefslogtreecommitdiff
path: root/scripts/code-style.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/code-style.pl')
-rw-r--r--scripts/code-style.pl11
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/code-style.pl b/scripts/code-style.pl
index f7d773e54..5418941f9 100644
--- a/scripts/code-style.pl
+++ b/scripts/code-style.pl
@@ -88,12 +88,13 @@ while (<>) {
elsif (/^\s*{/ && $program) {
$msg = "take '{' to previous line";
}
- elsif (/function ([a-zA-Z_][a-zA-Z_0-9]*[A-Z][a-zA-Z_0-9]*)\(/) {
- $msg = "no mixedcase, use lowercase and _";
+ elsif (/([a-z])([A-Z])/) {
+ $msg = "no mixed case function or variable names, use lower case and _";
}
-# elsif (/<[\/]*[A-Z]+[^>]*>/) {
-# $msg = "XHTML demands tags to be lowercase";
-# }
+ elsif (/<[\/]*[A-Z]+[^>]*>/) {
+ $msg = "XHTML demands tags to be lowercase";
+ }
+
# trying to recognize splitted lines
# there are only a few valid last characters in programming mode,
# only sometimes it is ( if you use if/else with a single statement