diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-21 23:38:09 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-21 23:38:09 +0200 |
commit | bfe222288e02472bff0e1ab5ba7ef26af6a2769a (patch) | |
tree | e3c79fb1621de447ad1b0c2d5a580275422a71f5 /lisp/emacs-lisp/bytecomp.el | |
parent | efd95300c7ce5fcd565bb891b8559c1430873072 (diff) | |
download | emacs-bfe222288e02472bff0e1ab5ba7ef26af6a2769a.tar.gz emacs-bfe222288e02472bff0e1ab5ba7ef26af6a2769a.tar.bz2 emacs-bfe222288e02472bff0e1ab5ba7ef26af6a2769a.zip |
Make the generalized buffer-local-variable obsolete
* lisp/paren.el (show-paren-local-mode):
* lisp/electric.el (electric-indent-local-mode)
(electric-layout-local-mode, electric-quote-local-mode):
* lisp/elec-pair.el (electric-pair-local-mode): Don't use it.
* lisp/emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Autoload.
* lisp/emacs-lisp/gv.el (buffer-local-variable): Make obsolete
(bug#26624).
* lisp/emacs-lisp/gv.el (make-obsolete-generalized-variable): Move
to allow usage.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5dde2d2bfbb..ebc9aa75e56 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1355,6 +1355,7 @@ FORMAT and ARGS are as in `byte-compile-warn'." (let ((byte-compile-form-stack (cons arg byte-compile-form-stack))) (apply #'byte-compile-warn format args))) +;;;###autoload (defun byte-compile-warn-obsolete (symbol type) "Warn that SYMBOL (a variable, function or generalized variable) is obsolete. TYPE is a string that say which one of these three types it is." |