emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/llm f90b046738 1/2: Use split-string instead of string-


From: ELPA Syncer
Subject: [elpa] externals/llm f90b046738 1/2: Use split-string instead of string-split in llm-fake
Date: Sun, 18 Feb 2024 12:58:08 -0500 (EST)

branch: externals/llm
commit f90b046738c8e9383bb066c9e7465cf70d1f48cc
Author: Sergey Kostyaev <kostyaev.sergey2@wb.ru>
Commit: Sergey Kostyaev <kostyaev.sergey2@wb.ru>

    Use split-string instead of string-split in llm-fake
---
 llm-fake.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llm-fake.el b/llm-fake.el
index 804ccdeb6f..8fb62a5a34 100644
--- a/llm-fake.el
+++ b/llm-fake.el
@@ -89,7 +89,7 @@ message cons. If nil, the response will be a simple vector."
               (setq accum (concat accum word " "))
               (funcall partial-callback accum)
               (sleep-for 0 100))
-            (string-split text))
+            (split-string text))
       (setf (llm-chat-prompt-interactions prompt)
             (append (llm-chat-prompt-interactions prompt)
                     (list (make-llm-chat-prompt-interaction :role 'assistant 
:content text))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]