diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2017-01-29 19:34:35 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2017-01-29 19:34:35 +0100 |
commit | 2f90bbb5febd44bc9ff8dbff9267f535f907c307 (patch) | |
tree | dd2b69ffaa8046b54172537f6330e100bc6fb413 /lisp/net/zeroconf.el | |
parent | 9bf94639b8f674d2c7894df35f26f09d0ecc67f5 (diff) | |
download | emacs-2f90bbb5febd44bc9ff8dbff9267f535f907c307.tar.gz emacs-2f90bbb5febd44bc9ff8dbff9267f535f907c307.tar.bz2 emacs-2f90bbb5febd44bc9ff8dbff9267f535f907c307.zip |
lisp/*.el: Fix some warnings
* lisp/battery.el (dbus-get-property):
* lisp/dired-aux.el (format-spec): Declare function.
* lisp/net/zeroconf.el (zeroconf-list-service-names)
(zeroconf-list-service-types, zeroconf-list-services):
Mark unused lexical arg.
* lisp/progmodes/hideshow.el (hs-hide-block-at-point):
* lisp/progmodes/sql.el (sql-end-of-statement):
Pass LIMIT to 'looking-back'.
Diffstat (limited to 'lisp/net/zeroconf.el')
-rw-r--r-- | lisp/net/zeroconf.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/zeroconf.el b/lisp/net/zeroconf.el index 37816bb8881..393f3a549f9 100644 --- a/lisp/net/zeroconf.el +++ b/lisp/net/zeroconf.el @@ -256,7 +256,7 @@ supported keys depend on the service type.") "Returns all discovered Avahi service names as list." (let (result) (maphash - (lambda (key value) (add-to-list 'result (zeroconf-service-name value))) + (lambda (_key value) (add-to-list 'result (zeroconf-service-name value))) zeroconf-services-hash) result)) @@ -264,7 +264,7 @@ supported keys depend on the service type.") "Returns all discovered Avahi service types as list." (let (result) (maphash - (lambda (key value) (add-to-list 'result (zeroconf-service-type value))) + (lambda (_key value) (add-to-list 'result (zeroconf-service-type value))) zeroconf-services-hash) result)) @@ -276,7 +276,7 @@ The service type is one of the returned values of format of SERVICE." (let (result) (maphash - (lambda (key value) + (lambda (_key value) (when (equal type (zeroconf-service-type value)) (add-to-list 'result value))) zeroconf-services-hash) |