Change input of hash
This commit is contained in:
parent
3e83061a21
commit
4ead4b8b05
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ note type."
|
||||||
;; Utilities
|
;; Utilities
|
||||||
|
|
||||||
(defun anki-editor--hash (type text)
|
(defun anki-editor--hash (type text)
|
||||||
(format "%s-%s" (symbol-name type) (sha1 text)))
|
(sha1 (format "%s %s" (symbol-name type) text)))
|
||||||
|
|
||||||
(defun anki-editor--find-ancestor (element test)
|
(defun anki-editor--find-ancestor (element test)
|
||||||
(let ((parent (org-element-property :parent element)))
|
(let ((parent (org-element-property :parent element)))
|
||||||
|
|
Loading…
Reference in a new issue