branch: externals/ellama
commit be789a67b922774ad103a6a6bcfbb15b4b225e97
Author: Sergey Kostyaev <[email protected]>
Commit: Sergey Kostyaev <[email protected]>
Remove unused function `ellama-set-markers`
Removed the unused function `ellama-set-markers` from ellama.el as it is no
longer used in the codebase. This cleanup helps maintain a cleaner and more
efficient codebase.
---
ellama.el | 7 -------
1 file changed, 7 deletions(-)
diff --git a/ellama.el b/ellama.el
index dec44e44f9..68dec2ec72 100644
--- a/ellama.el
+++ b/ellama.el
@@ -1374,13 +1374,6 @@ failure (with BUFFER current).
(with-current-buffer buffer
(setq ellama--current-request request)))))))
-(defun ellama-set-markers (start end point)
- "Set markers for START and END positions at POINT."
- (set-marker start point)
- (set-marker end point)
- (set-marker-insertion-type start nil)
- (set-marker-insertion-type end t))
-
(defun ellama-chain (initial-prompt forms &optional acc)
"Call chain of FORMS on INITIAL-PROMPT.
ACC will collect responses in reverse order (previous answer will be on top).