From: Austin Clements Date: Thu, 12 Jan 2012 23:17:23 +0000 (-0500) Subject: Set fill column to 70 in .dir-locals.el. X-Git-Tag: debian/0.12_rc1-1~218 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e0d85656da7f4d6e7d0b66a7bece39724143bffe;hp=0bbfc5ce8be91b881d9542d86aceec7e6a716e86 Set fill column to 70 in .dir-locals.el. This controls where comments and other text wraps. 70 is the default value, so this simply returns it to the default for people who have overridden it. Most notmuch code already adheres to this. --- diff --git a/.dir-locals.el b/.dir-locals.el index aea630bd..044c2148 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -20,4 +20,6 @@ (tab-width . 8) (sh-basic-offset . 4) (sh-indentation . 4)) + (nil + (fill-column . 70)) )