emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil b27997b693: Remove make-variable-buffer-local from va


From: ELPA Syncer
Subject: [nongnu] elpa/evil b27997b693: Remove make-variable-buffer-local from variables (fixes #1416)
Date: Thu, 13 Oct 2022 17:58:23 -0400 (EDT)

branch: elpa/evil
commit b27997b693dca40a08bfea00ae961f10bf839c0c
Author: Ghosty <ghosty141@gmail.com>
Commit: Tom Dalziel <33435574+tomdl89@users.noreply.github.com>

     Remove make-variable-buffer-local from variables (fixes #1416)
    
    - make-variable-buffer-local should not be used for user-option
    variables according to the emacs elisp manual.
    See 12.11.2 Command: make-variable-buffer-local
---
 evil-vars.el | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/evil-vars.el b/evil-vars.el
index ba127202e0..036faa50b8 100644
--- a/evil-vars.el
+++ b/evil-vars.el
@@ -165,7 +165,6 @@ Whether to auto-indent when opening lines with 
\\[evil-open-below] \
 and \\[evil-open-above]."
   :type  'boolean
   :group 'evil)
-(make-variable-buffer-local 'evil-auto-indent)
 
 (defcustom evil-shift-width 4
   "\\<evil-normal-state-map>
@@ -174,7 +173,6 @@ This applies to the shifting operators \\[evil-shift-right] 
and \
 \\[evil-shift-left]."
   :type 'integer
   :group 'evil)
-(make-variable-buffer-local 'evil-shift-width)
 
 (defcustom evil-shift-round t
   "\\<evil-normal-state-map>
@@ -183,7 +181,6 @@ If non-nil, \\[evil-shift-right] and \\[evil-shift-left] 
adjust line
 indentation to the nearest multiple of `evil-shift-width'."
   :type 'boolean
   :group 'evil)
-(make-variable-buffer-local 'evil-shift-round)
 
 (defcustom evil-indent-convert-tabs t
   "\\<evil-normal-state-map>
@@ -335,7 +332,6 @@ expression.  By default, whitespace characters are 
considered
 WORD boundaries."
   :type 'string
   :group 'evil)
-(make-variable-buffer-local 'evil-bigword)
 
 (defcustom evil-want-fine-undo nil
   "Whether actions are undone in several steps.
@@ -1229,7 +1225,6 @@ be extended to contain full lines."
   "If nil then * and # search for words otherwise for symbols."
   :group 'evil
   :type 'boolean)
-(make-variable-buffer-local 'evil-symbol-word-search)
 
 (defcustom evil-magic t
   "Meaning which characters in a pattern are magic.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]