(erc-put-text-properties): Replace use of cl mapcar*.
This commit is contained in:
parent
4741f7d4e5
commit
eb89b1a26f
2 changed files with 7 additions and 3 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2008-04-27 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* erc.el (erc-put-text-properties): Replace use of cl mapcar*.
|
||||
|
||||
2008-04-14 Michael Olson <mwolson@gnu.org>
|
||||
|
||||
* erc.el (erc-remove-text-properties-region): Disable this command
|
||||
|
|
|
|||
|
|
@ -5043,9 +5043,9 @@ each property to the corresponding value in VALUE-LIST."
|
|||
(setq value-list (mapcar (lambda (x)
|
||||
t)
|
||||
properties)))
|
||||
(mapcar* (lambda (prop value)
|
||||
(erc-put-text-property start end prop value object))
|
||||
properties value-list))
|
||||
(dotimes (i (min (length properties) (length value-list)))
|
||||
(erc-put-text-property start end (nth i properties)
|
||||
(nth i value-list) object)))
|
||||
|
||||
;;; Input area handling:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue