[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/svg-tag-mode f01307dd77 2/2: Fix for org-mode (appendin
|
From: |
ELPA Syncer |
|
Subject: |
[elpa] externals/svg-tag-mode f01307dd77 2/2: Fix for org-mode (appending) |
|
Date: |
Mon, 22 Jan 2024 09:59:08 -0500 (EST) |
branch: externals/svg-tag-mode
commit f01307dd7720ed952355db0a552ae555c13ced13
Author: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Commit: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Fix for org-mode (appending)
---
svg-tag-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/svg-tag-mode.el b/svg-tag-mode.el
index b50284fb5e..fa6d9976ee 100644
--- a/svg-tag-mode.el
+++ b/svg-tag-mode.el
@@ -290,9 +290,9 @@ attribute from ``svg-tag-default-face''."
(mapcar #'svg-tag--build-keywords svg-tag--active-tags)))
;; Install tags
- (when svg-tag-tags
+ (dolist (tag svg-tag-tags)
(font-lock-add-keywords nil
- (mapcar #'svg-tag--build-keywords svg-tag-tags)))
+ (list (svg-tag--build-keywords tag)) 'append))
;; Make a copy of newly installed tags
(setq svg-tag--active-tags (copy-sequence svg-tag-tags))