Skip to content

Commit

Permalink
[Emacs] Fix sass-indent-p.
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Jun 15, 2010
1 parent d252dff commit b654327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extra/sass-mode.el
Expand Up @@ -195,8 +195,8 @@ LIMIT is the limit of the search."
(defun sass-indent-p ()
"Return non-nil if the current line can have lines nested beneath it."
(loop for opener in sass-non-block-openers
unless (looking-at opener) return t
return nil))
if (looking-at opener) return nil
finally return t))

;;;###autoload
(add-to-list 'auto-mode-alist '("\\.sass$" . sass-mode))
Expand Down

0 comments on commit b654327

Please sign in to comment.