Skip to content

Commit

Permalink
Remove unnecessary 'let'
Browse files Browse the repository at this point in the history
  • Loading branch information
hinrik committed Oct 6, 2015
1 parent 6d4ef17 commit 564cbfa
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions perl6-font-lock.el
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,9 @@ LIMIT can be used to bound the search."
(opt (group (symbol type-property))))))
(lambda ()
(goto-char (match-beginning 0))
(let ((context (perl6-syntax-context)))
(and
(eq context nil)
(not (looking-back (rx (or (char ".^")
(and line-start (0+ space)))))))))
(and (eq (perl6-syntax-context) nil)
(not (looking-back (rx (or (char ".^")
(and line-start (0+ space))))))))
limit))

(defun perl6-match-property (property context limit)
Expand Down

0 comments on commit 564cbfa

Please sign in to comment.