]> git.eshelyaron.com Git - emacs.git/commitdiff
Suppress compilation warnings in netrc.el
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 4 Aug 2022 15:46:14 +0000 (17:46 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 4 Aug 2022 15:46:14 +0000 (17:46 +0200)
* lisp/obsolete/netrc.el (netrc-machine-user-or-password)
(netrc-credentials): Suppress some warnings.

lisp/obsolete/netrc.el

index 9d3ae315141d7933411e88bc0e558807c49b7fa4..f664a77a9b16bbfd86093066dbf1f94a7492151d 100644 (file)
@@ -164,7 +164,8 @@ default ports DEFAULTS to `netrc-machine'.
 MODE can be \"login\" or \"password\", suitable for passing to
 `netrc-get'."
   (let ((authinfo-list (if (stringp authinfo-file-or-list)
-                          (netrc-parse authinfo-file-or-list)
+                           (with-suppressed-warnings ((obsolete netrc-parse))
+                            (netrc-parse authinfo-file-or-list))
                         authinfo-file-or-list))
        (ports (or ports '(nil)))
        (defaults (or defaults '(nil)))
@@ -227,7 +228,8 @@ MODE can be \"login\" or \"password\", suitable for passing to
   "Return a user name/password pair.
 Port specifications will be prioritized in the order they are
 listed in the PORTS list."
-  (let ((list (netrc-parse))
+  (let ((list (with-suppressed-warnings ((obsolete netrc-parse))
+                (netrc-parse)))
        found)
     (if (not ports)
        (setq found (netrc-machine list machine))