]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/map.el (map-into): Fix a byte-compiler warning.
authorNicolas Petton <nicolas@petton.fr>
Tue, 16 Jun 2015 21:04:03 +0000 (23:04 +0200)
committerNicolas Petton <nicolas@petton.fr>
Tue, 16 Jun 2015 21:04:03 +0000 (23:04 +0200)
lisp/emacs-lisp/map.el

index dd7fb9174ef7be9f9ae707b0e0d5b1c81810f087..f5a9fd9ee1277f211904af1960b09b474142a25a 100644 (file)
@@ -218,7 +218,7 @@ MAP can be a list, hash-table or array."
              map))
 
 (defun map-filter (pred map)
-  "Return an alist of the key/val pairs for which (PRED key val) is non-nil in MAP.
+  "Return an alist of key/val pairs for which (PRED key val) is non-nil in MAP.
 
 MAP can be a list, hash-table or array."
   (delq nil (map-apply (lambda (key val)
@@ -297,7 +297,7 @@ MAP can be a list, hash-table or array."
   (pcase type
     (`list (map-pairs map))
     (`hash-table (map--into-hash-table map))
-    (t (error "Not a map type name: %S" type))))
+    (_ (error "Not a map type name: %S" type))))
 
 (defun map--apply-alist (function map)
   "Private function used to apply FUNCTION over MAP, MAP being an alist."