.dir-locals.el: Set 'fill-column' to 80 for c-mode

ChangeLog

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

	* .dir-locals.el (c-mode): Set 'fill-column' to 80 columns.
This commit is contained in:
Andrea Corallo 2020-12-11 15:35:25 +01:00
parent 4cbb7cab47
commit f60c1b3102

View File

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