mu4e-helpers: make mu4e-plist-put-many non-destructive
This commit is contained in:
@ -625,7 +625,7 @@ Returns the updated PLIST."
|
|||||||
PLIST is a property list, and KEYVALS are key value ... ."
|
PLIST is a property list, and KEYVALS are key value ... ."
|
||||||
(let (p)
|
(let (p)
|
||||||
(while keyvals
|
(while keyvals
|
||||||
(setq p (plist-put plist (car keyvals) (cadr keyvals)))
|
(setq p (plist-put p (car keyvals) (cadr keyvals)))
|
||||||
(setq keyvals (cddr keyvals)))
|
(setq keyvals (cddr keyvals)))
|
||||||
p))
|
p))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user