]> code.delx.au - gnu-emacs-elpa/commitdiff
Fix #70 - Do indent on empty line
authorArtur Malabarba <bruce.connor.am@gmail.com>
Fri, 26 Feb 2016 18:45:22 +0000 (15:45 -0300)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Fri, 26 Feb 2016 18:46:50 +0000 (15:46 -0300)
I have no idea why this was disabled in the first place, but now we have
a reason to re-enable it.

aggressive-indent.el

index 187b76dd49fd56931b141d2356538dc5fdda86e9..764a33224c3ba581e389b2228a588c7e4673c7f8 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Artur Malabarba <emacs@endlessparentheses.com>
 ;; URL: https://github.com/Malabarba/aggressive-indent-mode
-;; Version: 1.5
+;; Version: 1.5.1
 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
 ;; Keywords: indent lisp maint tools
 ;; Prefix: aggressive-indent
@@ -190,14 +190,13 @@ change."
     (null (buffer-modified-p))
     (and (boundp 'smerge-mode) smerge-mode)
     (let ((line (thing-at-point 'line)))
-      (when (stringp line)
-        (or (string-match "\\`[[:blank:]]*\n?\\'" line)
-            ;; If the user is starting to type a comment.
-            (and (stringp comment-start)
-                 (string-match (concat "\\`[[:blank:]]*"
-                                       (substring comment-start 0 1)
-                                       "[[:blank:]]*$")
-                               line)))))
+      (and (stringp line)
+           ;; If the user is starting to type a comment.
+           (stringp comment-start)
+           (string-match (concat "\\`[[:blank:]]*"
+                                 (substring comment-start 0 1)
+                                 "[[:blank:]]*$")
+                         line)))
     (let ((sp (syntax-ppss)))
       ;; Comments.
       (or (and (not aggressive-indent-comments-too) (elt sp 4))