Skip to content

Commit

Permalink
Allow other after-change-functions to run
Browse files Browse the repository at this point in the history
  • Loading branch information
yyoncho committed Aug 28, 2019
1 parent 3803f24 commit 83bdea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aggressive-indent.el
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ or messages."
"Indent the regions in `aggressive-indent--changed-list'."
(unless (or (run-hook-wrapped 'aggressive-indent--internal-dont-indent-if #'eval)
(aggressive-indent--run-user-hooks))
(let ((inhibit-modification-hooks t)
(let ((after-change-functions (remove 'aggressive-indent--keep-track-of-changes after-change-functions))
(inhibit-point-motion-hooks t)
(indent-function
(if (cl-member-if #'derived-mode-p aggressive-indent-modes-to-prefer-defun)
Expand Down

0 comments on commit 83bdea4

Please sign in to comment.