; * lisp/electric.el (electric-indent-can-reindent-p): Fix typo.

This commit is contained in:
Matthew Batson 2026-06-13 14:53:09 +10:00 committed by Paul Eggert
parent 4a86a530de
commit d22d2ea4c8

View file

@ -241,7 +241,7 @@ not try to reindent lines. It is normally better to make the major
mode set `electric-indent-inhibit', but this can be used as a workaround.")
(defun electric-indent-can-reindent-p ()
"Return t if `electric-indent-mode' can performs reindentation."
"Return t if `electric-indent-mode' can perform reindentation."
(not (or (memq indent-line-function
electric-indent-functions-without-reindent)
electric-indent-inhibit)))