From: Kristoffer Balintona Date: Sun, 30 Nov 2025 06:20:51 +0000 (-0600) Subject: emacs: Set `sentence-end-double-space` in .dir-locals.el X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=e6e0cdff3b6ab7505666326324e7dbcb2e7714e2;p=notmuch 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. --- 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)))