branch: elpa/idris-mode commit 3508be691901078a643c2db4def922f6b0e39db9 Author: Marek L <nospam.ke...@gmail.com> Commit: Marek L <nospam.ke...@gmail.com>
Comment out `if` statement in `idris-possibly-make-dirty` as both branches evaluate to `(idris-make-dirty)` --- idris-commands.el | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/idris-commands.el b/idris-commands.el index 556ed05f8a..d807ab9cf7 100644 --- a/idris-commands.el +++ b/idris-commands.el @@ -122,15 +122,16 @@ idris-set-current-pretty-print-width) :group 'idris) -(defun idris-possibly-make-dirty (beginning end _length) +(defun idris-possibly-make-dirty (_beginning _end _length) + (idris-make-dirty)) ;; If there is a load-to-here marker and a currently loaded region, only ;; make the buffer dirty when the change overlaps the loaded region. - (if (and idris-load-to-here idris-loaded-region-overlay) - (when (member idris-loaded-region-overlay - (overlays-in beginning end)) - (idris-make-dirty)) - ;; Otherwise just make it dirty. - (idris-make-dirty))) + ;; (if (and idris-load-to-here idris-loaded-region-overlay) + ;; (when (member idris-loaded-region-overlay + ;; (overlays-in beginning end)) + ;; (idris-make-dirty)) + ;; ;; Otherwise just make it dirty. + ;; (idris-make-dirty))) (defun idris-update-loaded-region (fc)