From d22d2ea4c84fd74fec92745961f5a4576c69b12a Mon Sep 17 00:00:00 2001 From: Matthew Batson Date: Sat, 13 Jun 2026 14:53:09 +1000 Subject: [PATCH] ; * lisp/electric.el (electric-indent-can-reindent-p): Fix typo. --- lisp/electric.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/electric.el b/lisp/electric.el index 3e5b81c86a7..c4f89158b0c 100644 --- a/lisp/electric.el +++ b/lisp/electric.el @@ -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)))