aboutsummaryrefslogtreecommitdiff
path: root/hcel-utils.el
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2022-09-21 13:51:30 +1000
committerYuchen Pei <hi@ypei.me>2022-09-21 13:51:30 +1000
commit73bd6e9bd92fa57877f2d894f43725a4a0abf1a8 (patch)
tree34e7e09e62886750b52e3742ac6801198976cb15 /hcel-utils.el
parent8e23867beeaa4f6b786fd6a046ba52fe5d38df67 (diff)
fix a fixme Make sure all definitions have an `hcel-' prefix.
Diffstat (limited to 'hcel-utils.el')
-rw-r--r--hcel-utils.el17
1 files changed, 8 insertions, 9 deletions
diff --git a/hcel-utils.el b/hcel-utils.el
index 686da8d..2c3d51f 100644
--- a/hcel-utils.el
+++ b/hcel-utils.el
@@ -75,11 +75,10 @@ Example of an idSrcSpan:
(col-beg (alist-get 'column (alist-get 'start span)))
(line-end (alist-get 'line (alist-get 'end span)))
(col-end (alist-get 'column (alist-get 'end span))))
- (buffer-substring-line-column line-beg (1- col-beg) line-end (1- col-end))))
+ (hcel- buffer-substring-line-column line-beg (1- col-beg) line-end (1- col-end))))
-;; FIXME: Make sure all your definitions have an `hcel-' prefix!
;; buffers and strings manipulation
-(defun goto-line-column (line column)
+(defun hcel-goto-line-column (line column)
(goto-line line)
(move-to-column column))
@@ -95,13 +94,13 @@ Example of an idSrcSpan:
(replace-regexp-in-string
"&lt;" "<" html))))))
-(defun buffer-substring-line-column (line-beg col-beg line-end col-end)
+(defun hcel-buffer-substring-line-column (line-beg col-beg line-end col-end)
(save-excursion
(buffer-substring
- (progn (goto-line-column line-beg col-beg) (point))
- (progn (goto-line-column line-end col-end) (point)))))
+ (progn (hcel-goto-line-column line-beg col-beg) (point))
+ (progn (hcel-goto-line-column line-end col-end) (point)))))
-(defun fontify-with-haskell-mode ()
+(defun hcel-fontify-with-haskell-mode ()
"Fontify using haskell-mode"
(require 'haskell)
(let ((text (buffer-string)))
@@ -115,12 +114,12 @@ Example of an idSrcSpan:
(erase-buffer)
(insert text)))
-(defun remove-html-markup (html)
+(defun hcel-remove-html-markup (html)
(replace-regexp-in-string
"<.*?>" ""
(replace-regexp-in-string "</p>" "\n\n" html)))
-(defun fill-string (text)
+(defun hcel-fill-string (text)
(with-temp-buffer
(insert text)
(fill-region (point-min) (point-max))