From 4577dcc8d0206bc321c307bffc13ead107cf5ee0 Mon Sep 17 00:00:00 2001 From: sympodius Date: Wed, 22 May 2024 13:12:50 +0100 Subject: [PATCH] Correcting bug with case being incorrectly corrected --- org-novelist.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-novelist.el b/org-novelist.el index 1d2cad0..13271cf 100644 --- a/org-novelist.el +++ b/org-novelist.el @@ -1921,7 +1921,7 @@ open buffer." (setq new-aliases-str (substring new-aliases-str 2))) ;; Regenerate file contents and rename it. (erase-buffer) - (insert (orgn--replace-string-in-string chosen-object new-object-name (org-file-contents object-file))) + (insert (orgn--replace-string-in-string chosen-object new-object-name (org-file-contents object-file) t)) (goto-char (point-max)) (insert appearances-subtree) (orgn--set-file-property-value "TITLE" new-object-name object-file)