branch: externals/llm commit 9057a50df4b92eacebae1620cf06404b97367d3f Author: Andrew Hyatt <ahy...@gmail.com> Commit: Andrew Hyatt <ahy...@gmail.com>
Fix indenting in llm--run-async-as-sync --- llm.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llm.el b/llm.el index f513489f09..d9468ceaba 100644 --- a/llm.el +++ b/llm.el @@ -81,11 +81,11 @@ The return value will be the value passed into the success callback." (apply f (append args (list (lambda (result) - (setq response result) - (condition-notify cv)) - (lambda (type msg) - (signal type msg) - (condition-notify cv))))) + (setq response result) + (condition-notify cv)) + (lambda (type msg) + (signal type msg) + (condition-notify cv))))) response)) (cl-defgeneric llm-chat-response (provider prompt)