X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/f94daca2487f73330315b06debd2cefe9fce7cae..4c77f20e144dc409e3c59abdb7105fb0db41ee54:/packages/aggressive-indent/aggressive-indent.el diff --git a/packages/aggressive-indent/aggressive-indent.el b/packages/aggressive-indent/aggressive-indent.el index 481e7efe9..9c1f7d7b2 100644 --- a/packages/aggressive-indent/aggressive-indent.el +++ b/packages/aggressive-indent/aggressive-indent.el @@ -1,6 +1,6 @@ ;;; aggressive-indent.el --- Minor mode to aggressively keep your code always indented -*- lexical-binding:t -*- -;; Copyright (C) 2014, 2015 Free Software Foundation, Inc +;; Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc ;; Author: Artur Malabarba ;; URL: https://github.com/Malabarba/aggressive-indent-mode @@ -300,8 +300,7 @@ messages. L and R passed to `aggressive-indent-indent-defun'." Call `indent-region' between L and R, and then keep indenting until nothing more happens." (interactive "r") - (let ((p (point-marker)) - was-begining-of-line) + (let ((p (point-marker))) (set-marker-insertion-type p t) (unwind-protect (progn @@ -349,10 +348,6 @@ or messages." "List of (left right) limit of regions changed in the last command loop.") (make-variable-buffer-local 'aggressive-indent--changed-list) -(defvar aggressive-indent--balanced-parens t - "Non-nil if the current-buffer has balanced parens.") -(make-variable-buffer-local 'aggressive-indent--balanced-parens) - (defun aggressive-indent--proccess-changed-list-and-indent () "Indent the regions in `aggressive-indent--changed-list'." (let ((inhibit-modification-hooks t) @@ -372,7 +367,7 @@ or messages." (defun aggressive-indent--indent-if-changed () "Indent any region that changed in the last command loop." - (when (and aggressive-indent--changed-list aggressive-indent--balanced-parens) + (when aggressive-indent--changed-list (save-excursion (save-selected-window (unless (or (run-hook-wrapped 'aggressive-indent--internal-dont-indent-if #'eval) @@ -381,19 +376,10 @@ or messages." (redisplay) (aggressive-indent--proccess-changed-list-and-indent))))))) -(defun aggressive-indent--check-parens () - "Check if parens are balanced in the current buffer. -Store result in `aggressive-indent--balanced-parens'." - (setq aggressive-indent--balanced-parens - (save-excursion - (ignore-errors - (zerop (car (syntax-ppss (point-max)))))))) - (defun aggressive-indent--keep-track-of-changes (l r &rest _) "Store the limits (L and R) of each change in the buffer." (when aggressive-indent-mode - (push (list l r) aggressive-indent--changed-list) - (aggressive-indent--check-parens))) + (push (list l r) aggressive-indent--changed-list))) ;;; Minor modes ;;;###autoload