summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-cmpl.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-09-17 21:48:00 -0400
committerGlenn Morris <rgm@gnu.org>2013-09-17 21:48:00 -0400
commit49a053fc5b27c7d1a32c42301fc66657dfc396ae (patch)
treecdea9c4b74ae44743f76c0ea43f906b9bed9b9c0 /lisp/eshell/em-cmpl.el
parent35cc47373edddb3642a8486b3052f6530ab9a778 (diff)
downloademacs-49a053fc5b27c7d1a32c42301fc66657dfc396ae.tar.gz
Address some "unused lexical variable" warnings
* lisp/dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare. * lisp/eshell/esh-io.el (x-select-enable-clipboard): Declare. * lisp/erc/erc-button.el (erc-button-add-buttons): * lisp/eshell/em-cmpl.el (eshell-complete-parse-arguments): * lisp/eshell/em-hist.el (eshell/history, eshell-isearch-backward): * lisp/eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time): Remove unused local variables.
Diffstat (limited to 'lisp/eshell/em-cmpl.el')
-rw-r--r--lisp/eshell/em-cmpl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el
index a940eb5cd36..5cb5d931700 100644
--- a/lisp/eshell/em-cmpl.el
+++ b/lisp/eshell/em-cmpl.el
@@ -370,7 +370,7 @@ to writing a completion function."
(cl-assert (= (length args) (length posns)))
(let ((a args)
(i 0)
- l final)
+ l)
(while a
(if (and (consp (car a))
(eq (caar a) 'eshell-operator))