Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix indenting after last merge commit
  • Loading branch information
renormalist committed May 14, 2010
1 parent 3316628 commit 59290d4
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions cperl-mode.el
Expand Up @@ -7500,23 +7500,23 @@ indentation and initial hashes. Behaves usually outside of comment."
"\\(^\\|[^$@%&\\]\\)\\<\\("
(mapconcat
'identity
(append
(append
cperl-sub-keywords
'("if" "until" "while" "elsif" "else" "unless" "for"
"given" "when" "default" "break"
"foreach" "continue" "exit" "die" "last" "loop" "goto" "next"
"redo" "return" "local" "exec" "sub" "do" "dump" "use" "our" "state"
"require" "package" "eval" "my" "BEGIN" "END" "CHECK"
"INIT" "START" "FIRST" "ENTER" "LEAVE" "KEEP"
"UNDO" "NEXT" "LAST" "PRE" "POST" "CATCH" "CONTROL"
"given" "when" "default" "has" "returns" "of" "is" "does"
"class" "module" "role" "try")
"foreach" "continue" "exit" "die" "last" "goto" "next"
"redo" "return" "local" "exec"
"do" "dump"
"use" "our"
"require" "package" "eval" "my" "state"
"BEGIN" "END" "CHECK" "INIT" "UNITCHECK"))
'("if" "until" "while" "elsif" "else" "unless" "for"
"given" "when" "default" "break"
"foreach" "continue" "exit" "die" "last" "loop" "goto" "next"
"redo" "return" "local" "exec" "sub" "do" "dump" "use" "our" "state"
"require" "package" "eval" "my" "BEGIN" "END" "CHECK"
"INIT" "START" "FIRST" "ENTER" "LEAVE" "KEEP"
"UNDO" "NEXT" "LAST" "PRE" "POST" "CATCH" "CONTROL"
"given" "when" "default" "has" "returns" "of" "is" "does"
"class" "module" "role" "try")
"foreach" "continue" "exit" "die" "last" "goto" "next"
"redo" "return" "local" "exec"
"do" "dump"
"use" "our"
"require" "package" "eval" "my" "state"
"BEGIN" "END" "CHECK" "INIT" "UNITCHECK"))
"\\|") ; Flow control
"\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]"
; In what follows we use `type' style
Expand Down

0 comments on commit 59290d4

Please sign in to comment.