aboutsummaryrefslogtreecommitdiff
path: root/hcel-utils.el
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2022-09-29 14:57:49 +1000
committerYuchen Pei <hi@ypei.me>2022-09-29 14:57:49 +1000
commit485026c5f20a109022f68200e43146f5dd7dc5cc (patch)
treef6a08714da7362f8c740c78fbb10aa75544e4b4e /hcel-utils.el
parent7f73da1356d141d35047523a8ed0764a95385f7d (diff)
Fixing clean compiling warning.
Diffstat (limited to 'hcel-utils.el')
-rw-r--r--hcel-utils.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/hcel-utils.el b/hcel-utils.el
index 7f8fa86..d5b75cf 100644
--- a/hcel-utils.el
+++ b/hcel-utils.el
@@ -17,6 +17,9 @@
;; You should have received a copy of the GNU Affero General Public
;; License along with hcel. If not, see <https://www.gnu.org/licenses/>.
+(require 'dom)
+(require 'shr)
+
;; data conversions
(defun hcel-parse-package-id (package-id &optional divider)
(unless (stringp divider) (setq divider " "))
@@ -145,7 +148,7 @@ Example of an idSrcSpan:
(alist-get 'exprType (alist-get 'info expr)))))
(cons expression type)))
-(defun hcel-render-html (html &optional action)
+(defun hcel-render-html (html action)
(unless action (setq action 'hcel-tag-span-button-load-source))
(when html
;; (hcel-debug-html html)
@@ -178,11 +181,6 @@ Example of an idSrcSpan:
)))
(dom-attributes dom)))))
-(defun hcel-tag-span-button-load-source (marker)
- (hcel-load-module-location-info
- (hcel-to-exact-location
- (get-text-property marker 'location-info))))
-
(defun hcel-tag-div (dom)
(if (equal (dom-attr dom 'class) "source-code")
(shr-tag-pre dom)