aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mh-e
diff options
context:
space:
mode:
authorStefan Kangas2024-10-04 01:36:41 +0200
committerStefan Kangas2024-10-04 01:38:11 +0200
commite20ce5fcc53593db5400596afee783d966ad2b2d (patch)
tree3a9fabd2a8feae4a66d1172d955fd932f3bf136b /lisp/mh-e
parentbde00266db42213ca5da3fd8cde882c13b0dfdfb (diff)
downloademacs-e20ce5fcc53593db5400596afee783d966ad2b2d.tar.gz
emacs-e20ce5fcc53593db5400596afee783d966ad2b2d.zip
Prefer defcustom :local specifier
* lisp/dirtrack.el (dirtrack-list): * lisp/emacs-lisp/lisp.el (defun-prompt-regexp): * lisp/emulation/viper-init.el (viper-related-files-and-buffers-ring): * lisp/emulation/viper-util.el (viper-syntax-preference): * lisp/erc/erc.el (erc-ignore-list): * lisp/files.el (buffer-offer-save, backup-by-copying-when-mismatch): * lisp/find-file.el (ff-pre-find-hook, ff-pre-load-hook) (ff-post-load-hook, ff-not-found-hook, ff-file-created-hook) (ff-case-fold-search, ff-always-in-other-window) (ff-ignore-include, ff-quiet-mode, ff-other-file-alist) (ff-search-directories): * lisp/mh-e/mh-e.el (mh-scan-prog): * lisp/newcomment.el (comment-column): * lisp/obsolete/rlogin.el (rlogin-directory-tracking-mode): * lisp/play/decipher.el (decipher-ignore-spaces): * lisp/plstore.el (plstore-encrypt-to): * lisp/proced.el (proced-format, proced-filter, proced-sort) (proced-descend, proced-auto-update-flag, proced-tree-flag): * lisp/progmodes/fortran.el (fortran-line-length): * lisp/shell.el (shell-history-file-name): * lisp/simple.el (goal-column, fill-prefix): * lisp/vc/ediff-init.el (ediff-use-faces) (ediff-highlight-all-diffs, ediff-autostore-merges): * lisp/vc/ediff-merg.el (ediff-show-clashes-only) (ediff-skip-merge-regions-that-differ-from-default): Prefer defcustom :local specifier to using 'make-variable-buffer-local' directly.
Diffstat (limited to 'lisp/mh-e')
-rw-r--r--lisp/mh-e/mh-e.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el
index 3d686b4a777..0a72773549e 100644
--- a/lisp/mh-e/mh-e.el
+++ b/lisp/mh-e/mh-e.el
@@ -2008,9 +2008,9 @@ absolute pathname, it is assumed to be in the `mh-progs'
2008directory. You may link another program to `scan' (see 2008directory. You may link another program to `scan' (see
2009\"mh-profile(5)\") to produce a different type of listing." 2009\"mh-profile(5)\") to produce a different type of listing."
2010 :type 'string 2010 :type 'string
2011 :local t
2011 :group 'mh-scan-line-formats 2012 :group 'mh-scan-line-formats
2012 :package-version '(MH-E . "6.0")) 2013 :package-version '(MH-E . "6.0"))
2013(make-variable-buffer-local 'mh-scan-prog)
2014 2014
2015;;; Searching (:group 'mh-search) 2015;;; Searching (:group 'mh-search)
2016 2016