Function: editorconfig-core--hash-merge
editorconfig-core--hash-merge is a byte-compiled function defined in
editorconfig-core.el.gz.
Signature
(editorconfig-core--hash-merge INTO UPDATE)
Documentation
Merge two hashes INTO and UPDATE.
This is a destructive function, hash INTO will be modified. When the same key exists in both two hashes, values of UPDATE takes precedence.
Source Code
;; Defined in /usr/src/emacs/lisp/editorconfig-core.el.gz
(defun editorconfig-core--hash-merge (into update)
"Merge two hashes INTO and UPDATE.
This is a destructive function, hash INTO will be modified.
When the same key exists in both two hashes, values of UPDATE takes precedence."
(maphash (lambda (key value) (puthash key value into)) update)
into)