]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete redundant declarations of 'electric' variables
authorStefan Kangas <stefankangas@gmail.com>
Sat, 21 Sep 2024 12:44:06 +0000 (14:44 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 23 Sep 2024 10:45:27 +0000 (12:45 +0200)
* lisp/progmodes/js.el (electric-layout-rules):
* lisp/progmodes/octave.el (electric-layout-rules):
* lisp/progmodes/python.el (electric-indent-inhibit):
* lisp/textmodes/rst.el (electric-indent-inhibit): Delete redundant
declarations; 'electric' is preloaded since Emacs 24.4.

(cherry picked from commit dac1a48240a14c41e2d2792443eac62ea50e1f66)

lisp/progmodes/python.el
lisp/textmodes/rst.el

index 2fd392c27563a84bb6a08b0737dfacb187fc45a5..7ee45b4bb7c523e0569f2878355a62898748b210 100644 (file)
@@ -7049,7 +7049,6 @@ Add import for undefined name `%s' (empty to skip): "
              (eq (char-after) last-command-event))
     (save-excursion (insert (make-string 2 last-command-event)))))
 
-(defvar electric-indent-inhibit)
 (defvar prettify-symbols-alist)
 (defvar python--installed-grep-hook nil)
 
index 06e7b337d6d1226f9117028b9d5cfb274cd1abbe..25b04e55253c2d424156371e49df89e5b37737e0 100644 (file)
@@ -1323,8 +1323,6 @@ The hook for `text-mode' is run before this one."
 ;; Pull in variable definitions silencing byte-compiler.
 (require 'newcomment)
 
-(defvar electric-indent-inhibit)
-
 ;; Use rst-mode for *.rst and *.rest files.  Many ReStructured-Text files
 ;; use *.txt, but this is too generic to be set as a default.
 ;;;###autoload (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode)))