summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorAndrea Corallo <andrea.corallo@arm.com>2020-12-11 15:35:25 +0100
committerAndrea Corallo <andrea.corallo@arm.com>2020-12-14 12:19:56 +0100
commitf60c1b3102791b98de7c1ce951bce335394682ca (patch)
tree977bb27897a22bf7d69091ad4dacc092197d8df8 /.dir-locals.el
parent4cbb7cab47a3b91a12ad52baab5bbe6e4373ce73 (diff)
downloadgcc-f60c1b3102791b98de7c1ce951bce335394682ca.tar.gz
.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.
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index b748c8d085f..44a0db68241 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -14,11 +14,10 @@
;; 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))))