From 38b7812b3bce45372fd2f11a8da710cb73717092 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 28 Jun 2026 03:47:20 -0400 Subject: fix: require subr-x for string-trim wttrin.el calls string-trim throughout but never required subr-x, so a clean load could hit a void-function before something else pulled subr-x in. --- wttrin.el | 1 + 1 file changed, 1 insertion(+) diff --git a/wttrin.el b/wttrin.el index b38a68a..3d543ed 100644 --- a/wttrin.el +++ b/wttrin.el @@ -34,6 +34,7 @@ ;;; Code: (require 'face-remap) +(require 'subr-x) ; string-trim (require 'url) ;; Declare xterm-color functions (loaded on-demand) -- cgit v1.2.3