]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/cc-vars.el: Mark unused args
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 5 Jul 2017 02:26:20 +0000 (22:26 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 5 Jul 2017 02:26:20 +0000 (22:26 -0400)
lisp/progmodes/cc-vars.el

index ccd4fd29940fa016176db1bb05f41057d62603f5..2ae90ce4236f52d78ef8de0dd5cb80c2021f7df5 100644 (file)
@@ -87,7 +87,7 @@ use c-constant-symbol instead."
   :value nil
   :tag "Symbol"
   :format "%t: %v\n%d"
-  :match (lambda (widget value) (symbolp value))
+  :match (lambda (_widget value) (symbolp value))
   :value-to-internal
   (lambda (widget value)
     (let ((s (if (symbolp value)
@@ -98,7 +98,7 @@ use c-constant-symbol instead."
          (setq s (concat s (make-string (- l (length s)) ?\ ))))
       s))
   :value-to-external
-  (lambda (widget value)
+  (lambda (_widget value)
     (if (stringp value)
        (intern (progn
                  (string-match "\\`[^ ]*" value)
@@ -109,14 +109,14 @@ use c-constant-symbol instead."
   "An integer or the value nil."
   :value nil
   :tag "Optional integer"
-  :match (lambda (widget value) (or (integerp value) (null value))))
+  :match (lambda (_widget value) (or (integerp value) (null value))))
 
 (define-widget 'c-symbol-list 'sexp
   "A single symbol or a list of symbols."
   :tag "Symbols separated by spaces"
   :validate 'widget-field-validate
   :match
-  (lambda (widget value)
+  (lambda (_widget value)
     (or (symbolp value)
        (catch 'ok
          (while (listp value)
@@ -125,7 +125,7 @@ use c-constant-symbol instead."
            (setq value (cdr value)))
          (null value))))
   :value-to-internal
-  (lambda (widget value)
+  (lambda (_widget value)
     (cond ((null value)
           "")
          ((symbolp value)
@@ -138,7 +138,7 @@ use c-constant-symbol instead."
          (t
           value)))
   :value-to-external
-  (lambda (widget value)
+  (lambda (_widget value)
     (if (stringp value)
        (let (list end)
          (while (string-match "\\S +" value end)