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:
parent
e10e48896f
commit
4d2b3bcd03
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue