Fix set-pretty-symbols! not merging properties w/ old rules

This removes the :merge property, as merging is now its default
behavior.
This commit is contained in:
Henrik Lissner 2020-01-04 04:55:57 -05:00
parent d1beb47e90
commit e0b8b4f190
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 14 additions and 18 deletions

View file

@ -66,7 +66,7 @@ BODY."
;;;###autoload
(defun doom-plist-merge (from-plist to-plist)
"Destructively merge FROM-PLIST onto TO-PLIST"
"Non-destructively merge FROM-PLIST onto TO-PLIST"
(let ((plist (copy-sequence from-plist)))
(while plist
(plist-put! to-plist (pop plist) (pop plist)))