.dir-locals.el: Set 'fill-column' to 80 for c-mode
authorAndrea Corallo <andrea.corallo@arm.com>
Fri, 11 Dec 2020 14:35:25 +0000 (15:35 +0100)
committerAndrea Corallo <andrea.corallo@arm.com>
Mon, 14 Dec 2020 11:19:56 +0000 (12:19 +0100)
ChangeLog

2020-12-11  Andrea Corallo  <andrea.corallo@arm.com>

* .dir-locals.el (c-mode): Set 'fill-column' to 80 columns.

.dir-locals.el

index b748c8d085f83a17a14cee90c8f722d234d5cadb..44a0db682417a040e18131abc3d7e1d4bcd5f709 100644 (file)
 ;; You should have received a copy of the GNU General Public License
 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-(
- (tcl-mode . ((tcl-indent-level . 4)
+((tcl-mode . ((tcl-indent-level . 4)
              (tcl-continued-indent-level . 4)
              (indent-tabs-mode . t)))
  (nil . ((bug-reference-url-format . "http://gcc.gnu.org/PR%s")))
  (c-mode . ((c-file-style . "GNU")
-           (indent-tabs-mode . t)))
-)
+           (indent-tabs-mode . t)
+           (fill-column . 80))))