branch: elpa/tablist
commit 73802272e12def2ee1076079713ef1daf2189ddf
Author: Andreas Politz <[email protected]>
Commit: Andreas Politz <[email protected]>
Fix compiler warnings.
* lisp/tablist-filter.el: Using require non-toplevel may confuse the
compiler (?): Declare imported wisent identifier.
---
tablist-filter.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tablist-filter.el b/tablist-filter.el
index b72ea21..6a6f058 100644
--- a/tablist-filter.el
+++ b/tablist-filter.el
@@ -28,6 +28,9 @@
;;; Code:
+(defvar wisent-eoi-term)
+(declare-function wisent-parse "semantic/wisent/wisent.el")
+
(defvar tablist-filter-binary-operator
'((== . tablist-filter-op-equal)
(=~ . tablist-filter-op-regexp)
@@ -103,7 +106,7 @@
(when interactive
(message "Parser reinitialized."))
nil)
-
+
(defun tablist-filter-wisent-lexer ()
(cl-destructuring-bind (unary-op binary-op keywords)
tablist-filter-lexer-regexps