From 67f10864df04e6a789dcca03e8cf7637b571098b Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Wed, 24 Nov 2021 15:13:41 +0800 Subject: [PATCH] (fix)node: fix wrong string-glyph-* aliases (#1985) --- org-roam-node.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org-roam-node.el b/org-roam-node.el index abbd44d..0d60076 100644 --- a/org-roam-node.el +++ b/org-roam-node.el @@ -154,8 +154,8 @@ It takes a single argument REF, which is a propertized string." ;; The functions were introduced in emacs commit 3f096eb3405b2fce7c35366eb2dcf025dda55783 and the ;; (original) functions behind them aren't autoloaded anymore. (dolist (sym.replace - '((string-glyph-compose . ucs-normalize-NFC-region) - (string-glyph-decompose . ucs-normalize-NFD-region))) + '((string-glyph-compose . ucs-normalize-NFC-string) + (string-glyph-decompose . ucs-normalize-NFD-string))) (let ((emacs-29-symbol (car sym.replace)) (previous-implementation (cdr sym.replace))) (unless (fboundp emacs-29-symbol)