summaryrefslogtreecommitdiff
path: root/lisp/url/url-auth.el
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2016-10-31 19:55:17 -0400
committerMark Oteiza <mvoteiza@udel.edu>2016-10-31 19:55:17 -0400
commit05729e5ac2648324d70e454b25123f370d5c0571 (patch)
tree5d16a1674ee3671c2825cb8f651f31be434ccc3f /lisp/url/url-auth.el
parentdec329aefc02302075f10feaecc3a0f4f1ccf076 (diff)
downloademacs-05729e5ac2648324d70e454b25123f370d5c0571.tar.gz
Turn on lexical-binding in some url libs
* lisp/url/url-auth.el: * lisp/url/url-expand.el: * lisp/url/url-future.el: * lisp/url/url-parse.el: * lisp/url/url-util.el: Turn on lexical-binding.
Diffstat (limited to 'lisp/url/url-auth.el')
-rw-r--r--lisp/url/url-auth.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el
index b2eceb0da10..a2aa97c2799 100644
--- a/lisp/url/url-auth.el
+++ b/lisp/url/url-auth.el
@@ -1,4 +1,4 @@
-;;; url-auth.el --- Uniform Resource Locator authorization modules
+;;; url-auth.el --- Uniform Resource Locator authorization modules -*- lexical-binding: t -*-
;; Copyright (C) 1996-1999, 2004-2016 Free Software Foundation, Inc.
@@ -53,7 +53,7 @@ lists. The first assoc list is keyed by the server name. The cdr of
this is an assoc list based on the \"directory\" specified by the URL we
are looking up.")
-(defun url-basic-auth (url &optional prompt overwrite realm args)
+(defun url-basic-auth (url &optional prompt overwrite realm _args)
"Get the username/password for the specified URL.
If optional argument PROMPT is non-nil, ask for the username/password
to use for the url and its descendants. If optional third argument