From 781fa0786e2096797e630dcb81ffbc62ed98460b Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 24 Jul 2026 11:00:39 -0500 Subject: chore(inbox): park two hook fail-open fixes from .emacs.d --- working/hook-fail-open/validate-el.diff | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 working/hook-fail-open/validate-el.diff (limited to 'working/hook-fail-open/validate-el.diff') diff --git a/working/hook-fail-open/validate-el.diff b/working/hook-fail-open/validate-el.diff new file mode 100644 index 0000000..ab0fc15 --- /dev/null +++ b/working/hook-fail-open/validate-el.diff @@ -0,0 +1,20 @@ +--- languages/elisp/claude/hooks/validate-el.sh 2026-07-13 23:37:55.474616165 -0500 ++++ working/hook-fail-open/validate-el.sh 2026-07-24 10:58:47.774106870 -0500 +@@ -39,8 +39,6 @@ + [ -z "$f" ] && exit 0 + [ "${f##*.}" = "el" ] || exit 0 + +-MAX_AUTO_TEST_FILES=20 # skip if more matches than this (large test suites) +- + # --- Phase 1: syntax + byte-compile --- + case "$f" in + */init.el|*/early-init.el) +@@ -96,7 +94,7 @@ + esac + + count="${#tests[@]}" +-if [ "$count" -ge 1 ] && [ "$count" -le "$MAX_AUTO_TEST_FILES" ]; then ++if [ "$count" -ge 1 ]; then + load_args=() + for t in "${tests[@]}"; do load_args+=("-l" "$t"); done + if ! output="$(emacs --batch --no-site-file --no-site-lisp \ -- cgit v1.2.3