Suppress compilation warning in supercite.el

* lisp/mail/supercite.el (curline): Suppress warning about
non-prefixed variable used by forms in the `sc-mail-glom-frame'
variable.
This commit is contained in:
Lars Ingebrigtsen 2019-06-15 16:59:21 +02:00
parent e10e48896f
commit 4d2b3bcd03

View file

@ -702,7 +702,11 @@ the list should be unique."
"Regi frame for glomming mail header information.")
(put 'sc-mail-glom-frame 'risky-local-variable t)
(defvar curline) ; dynamic bondage
;; This variable is bound dynamically before calling the forms in the
;; `sc-mail-glom-frame' variable, and is part of the advertised
;; interface.
(with-suppressed-warnings ((lexical curline))
(defvar curline))
;; regi functions