From ac9f83bee4b41f49c2945031aa787a8a490b37ca Mon Sep 17 00:00:00 2001 From: mike dupont Date: Fri, 3 Apr 2026 20:53:40 -0400 Subject: [PATCH] fix: add missing closing paren in opencode--format-diagnostics The format call in opencode--format-diagnostics function has an unbalanced paren. The plist-get call for :message argument needs one more closing paren. --- opencode-tools.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opencode-tools.el b/opencode-tools.el index 1567b6f..5537962 100644 --- a/opencode-tools.el +++ b/opencode-tools.el @@ -124,7 +124,7 @@ the action resolves to `ask'." (plist-get diag :end-line) (plist-get diag :end-column) (upcase (symbol-name (or (plist-get diag :severity) 'info))) - (plist-get diag :message))))) + (plist-get diag :message)))))) (when lines (string-join lines "\n"))))