From 24607e87d82ed79ab2826ab987a4f903f773a330 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Sat, 19 Sep 2026 21:46:32 +0200 Subject: [PATCH 1/2] Run checkdoc in the lint target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e622828..bc4339b 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ lint: .deps eask lint package + eask lint checkdoc test: .compile eask test buttercup From c1fecd83a7d37453f811dc5db595981b9ded5cad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Sat, 19 Sep 2026 21:48:04 +0200 Subject: [PATCH 2/2] Add the lexical-binding cookie to the Easkfile --- Easkfile | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Easkfile b/Easkfile index 9ecc84f..500383f 100644 --- a/Easkfile +++ b/Easkfile @@ -1,3 +1,5 @@ +;; -*- mode: eask; lexical-binding: t -*- + (package "magit-standup" "0.3.0" "Collect recent git commits for standup notes") diff --git a/Makefile b/Makefile index bc4339b..cb498bf 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ release: lint test git switch -c release/v$(VERSION) sed 's/^;; Version: .*/;; Version: $(VERSION)/' magit-standup.el > magit-standup.el.new mv magit-standup.el.new magit-standup.el - sed '2s/"[0-9][0-9.]*"/"$(VERSION)"/' Easkfile > Easkfile.new + sed 's/^\( *\)"[0-9][0-9.]*"$$/\1"$(VERSION)"/' Easkfile > Easkfile.new mv Easkfile.new Easkfile @grep -qx ";; Version: $(VERSION)" magit-standup.el @grep -qx ' "$(VERSION)"' Easkfile