Hi,

I was composed a few patches and noticed that the value of
`sentence-end-double-space' did not match the conventions of the
project.

The attached patch sets the value of that option in .dir-locals.el so
that future contributors do not mistakenly end their sentences with two
spaces.
-- 
Kind regards,
Kristoffer
From febb01e4c1b4eb29b84a51d53519f7ca5f1f004b Mon Sep 17 00:00:00 2001
From: Kristoffer Balintona <[email protected]>
Date: Sun, 30 Nov 2025 00:20:51 -0600
Subject: [PATCH 1/1] emacs: Set `sentence-end-double-space` in .dir-locals.el

Throughout the project's files, contributors have implicitly been
ending their sentences with a period and a single space.  Set
`sentence-end-double-space` accordingly.
---
 .dir-locals.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.dir-locals.el b/.dir-locals.el
index b3ddffe8..b21f53c7 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -21,5 +21,5 @@
   (sh-basic-offset . 4)
   (sh-indentation . 4))
  (nil
-  (fill-column . 70))
- )
+  (fill-column . 70)
+  (sentence-end-double-space . nil)))
-- 
2.52.0

_______________________________________________
notmuch mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to