[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/minuet e0fff84721 53/97: fix: ensure symbol-value is on
From: |
ELPA Syncer |
Subject: |
[elpa] externals/minuet e0fff84721 53/97: fix: ensure symbol-value is only called on symbols in `minuet--eval-value`. |
Date: |
Mon, 24 Mar 2025 18:59:16 -0400 (EDT) |
branch: externals/minuet
commit e0fff8472187e6c6044bb3f3bab11b6ff94e6a72
Author: Milan Glacier <dev@milanglacier.com>
Commit: Milan Glacier <dev@milanglacier.com>
fix: ensure symbol-value is only called on symbols in `minuet--eval-value`.
---
minuet.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/minuet.el b/minuet.el
index faa3444d21..9e4af4be27 100644
--- a/minuet.el
+++ b/minuet.el
@@ -345,7 +345,7 @@ If value is a function (either lambda or a callable
symbol), eval the
function (with no argument) and return the result. Else if value is a
symbol, return its value. Else return itself."
(cond ((functionp value) (funcall value))
- ((boundp value) (symbol-value value))
+ ((and (symbolp value) (boundp value)) (symbol-value value))
(t value)))
(defun minuet--cancel-requests ()
- [elpa] externals/minuet 31e651d639 76/97: feat!: change claude default model to haiku-3.5., (continued)
- [elpa] externals/minuet 31e651d639 76/97: feat!: change claude default model to haiku-3.5., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet e0fdc2023b 22/97: chore: pass checkdoc lint., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 2767e12df9 25/97: chore: remove obsolete function call., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet b46da708c1 28/97: README: Use `:bind` instead of general-define-key for wider support, ELPA Syncer, 2025/03/24
- [elpa] externals/minuet e27348ea90 30/97: doc: Use `:bind` instead of general-define-key for wider accessibility (#7), ELPA Syncer, 2025/03/24
- [elpa] externals/minuet f4a49dc75d 33/97: chore: fix byte compiler warning., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 4ed8a466d5 29/97: README: Small indentation fix to match removal of `general-use-key`, ELPA Syncer, 2025/03/24
- [elpa] externals/minuet b92b1f07d9 46/97: feat: add chat input template. (#16), ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 3a342b44b3 52/97: feat: truncate incomplete lines at window boundaries for chat input, ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 58990620fe 48/97: doc: update number of completions recommendation., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet e0fff84721 53/97: fix: ensure symbol-value is only called on symbols in `minuet--eval-value`.,
ELPA Syncer <=
- [elpa] externals/minuet 126af4dc86 55/97: doc: update instruction for ollama user for choosing FIM models., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet df2478180b 56/97: refactor: improve fim provider error message., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet ab3dd8d06d 60/97: feat: add consult support for `minuet-complete-with-minibuffer`. (#20), ELPA Syncer, 2025/03/24
- [elpa] externals/minuet aa0920b5c9 62/97: docs: add server demand note for deepseek model, ELPA Syncer, 2025/03/24
- [elpa] externals/minuet cac38ebe2d 67/97: doc: update instruction on setting context_window for ollama., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 034317580d 68/97: feat!: change default gemini model to gemini-2.0-flash., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 99c8be561e 77/97: feat: add command `minuet-configure-provider`., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 346dbd3431 85/97: doc: update LLM provider example from Fireworks to Openrouter, ELPA Syncer, 2025/03/24
- [elpa] externals/minuet 9cf3a6f5aa 89/97: refactor: clean up code according to emacs-devel suggestion., ELPA Syncer, 2025/03/24
- [elpa] externals/minuet a61185f119 81/97: doc: add example config for Llama.cpp., ELPA Syncer, 2025/03/24