]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/*.el: Fix some warnings
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 29 Jan 2017 18:34:35 +0000 (19:34 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 29 Jan 2017 18:34:35 +0000 (19:34 +0100)
* 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'.

lisp/battery.el
lisp/dired-aux.el
lisp/net/zeroconf.el
lisp/progmodes/hideshow.el
lisp/progmodes/sql.el

index 71268e59ecd0784b9fc638235e5fc27b9dd1be1a..b1834f06ff8d4de18fa39df5db0334f4e7e14eb9 100644 (file)
@@ -542,6 +542,9 @@ The following %-sequences are provided:
                     (t "N/A"))))))
 
 \f
+(declare-function dbus-get-property "dbus.el"
+                  (bus service path interface property))
+
 ;;; `upowerd' interface.
 (defsubst battery-upower-prop (pname &optional device)
   (dbus-get-property
index cabcfcdbd3fdf0e8c188278898b7340fc1f54288..caa3b45705b513450be1d25c41a2a26ee3b6f6c8 100644 (file)
@@ -987,6 +987,8 @@ corresponding command.
 Within CMD, %i denotes the input file(s), and %o denotes the
 output file. %i path(s) are relative, while %o is absolute.")
 
+(declare-function format-spec "format-spec.el" (format specification))
+
 ;;;###autoload
 (defun dired-do-compress-to ()
   "Compress selected files and directories to an archive.
index 37816bb8881f0aaa59dca01046461bc061794b27..393f3a549f9bcbc90114e4966c2757907ccc6ce1 100644 (file)
@@ -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)
index 0e4e67018eddae5ce250bf19209ecaced11b92d2..5328526abd9c93b48543db86a7839103543e3dbd 100644 (file)
@@ -582,7 +582,7 @@ and then further adjusted to be at the end of the line."
          (setq p (line-end-position)))
        ;; `q' is the point at the end of the block
        (hs-forward-sexp mdata 1)
-       (setq q (if (looking-back hs-block-end-regexp)
+       (setq q (if (looking-back hs-block-end-regexp nil)
                    (match-beginning 0)
                  (point)))
         (when (and (< p q) (> (count-lines p q) 1))
index 71563486ecdfb1b52eb98c47e7e6c0712f7d9fe8..8868343129060730eaccfb42a993750ae2d6837d 100644 (file)
@@ -2790,7 +2790,7 @@ local variable."
     ;; Iterate until we've moved the desired number of stmt ends
     (while (not (= (cl-signum arg) 0))
       ;; if we're looking at the terminator, jump by 2
-      (if (or (and (> 0 arg) (looking-back term))
+      (if (or (and (> 0 arg) (looking-back term nil))
               (and (< 0 arg) (looking-at term)))
           (setq n 2)
         (setq n 1))