branch: elpa/crux commit b5eac2ab85772b9102740354656fb96837ed5100 Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
Code style --- crux.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crux.el b/crux.el index 01f60e8..64120f6 100644 --- a/crux.el +++ b/crux.el @@ -213,9 +213,9 @@ point reaches the beginning or end of the buffer, stop there." (defun crux-cleanup-buffer-or-region () "Cleanup a region if selected, otherwise the whole buffer." (interactive) - (call-interactively 'untabify) + (call-interactively #'untabify) (unless (member major-mode crux-indent-sensitive-modes) - (call-interactively 'indent-region)) + (call-interactively #'indent-region)) (whitespace-cleanup)) (defun crux-eval-and-replace ()