diff options
author | Glenn Morris <rgm@gnu.org> | 2013-09-17 21:48:00 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-09-17 21:48:00 -0400 |
commit | 49a053fc5b27c7d1a32c42301fc66657dfc396ae (patch) | |
tree | cdea9c4b74ae44743f76c0ea43f906b9bed9b9c0 /lisp/dframe.el | |
parent | 35cc47373edddb3642a8486b3052f6530ab9a778 (diff) | |
download | emacs-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/dframe.el')
-rw-r--r-- | lisp/dframe.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/dframe.el b/lisp/dframe.el index 3ef30d055b6..c75287bbc32 100644 --- a/lisp/dframe.el +++ b/lisp/dframe.el @@ -243,6 +243,9 @@ Local to those buffers, as a function called that created it.") "Return non-nil if FRAME is currently available." (and frame (frame-live-p frame) (frame-visible-p frame))) +(defvar x-sensitive-text-pointer-shape) +(defvar x-pointer-shape) + (defun dframe-frame-mode (arg frame-var cache-var buffer-var frame-name local-mode-fn &optional |