(sregex--char-aux): Use mapc' rather than
mapcar'.
This commit is contained in:
parent
d74d9a81f6
commit
415741a73e
1 changed files with 1 additions and 1 deletions
|
@ -565,7 +565,7 @@ has one of the following forms:
|
|||
(let ((chars (make-bool-vector 256 nil))) ; Yeah, right!
|
||||
(dolist (arg args)
|
||||
(cond ((integerp arg) (aset chars arg t))
|
||||
((stringp arg) (mapcar (lambda (c) (aset chars c t)) arg))
|
||||
((stringp arg) (mapc (lambda (c) (aset chars c t)) arg))
|
||||
((consp arg)
|
||||
(let ((start (car arg))
|
||||
(end (cdr arg)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue