summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@mit.edu>2015-03-13 14:38:09 -0400
committerGravatar Benjamin Barenblat <bbaren@mit.edu>2015-03-13 14:38:09 -0400
commitee55702d199f422a35185ca14712a07e3e5b4aae (patch)
tree967f3c3c0bb9069da2a2debc76b448fb67fb74a0
parent1ae22613a627a67f20229ca2fcd197d60dbfd677 (diff)
Wrap at 80 characters, not 79
-rw-r--r--.dir-locals.el16
-rw-r--r--.gitignore2
-rw-r--r--src/main.cc14
3 files changed, 16 insertions, 16 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 3845517..8cafc6e 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,19 +1,19 @@
;; Copyright (C) 2013 Galois, Inc.
;; Copyright (C) 2014, 2015 Benjamin Barenblat
;;
-;; This library is free software: you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by the Free
-;; Software Foundation, either version 3 of the License, or (at your option)
-;; any later version.
+;; This library is free software: you can redistribute it and/or modify it under
+;; the terms of the GNU General Public License as published by the Free Software
+;; Foundation, either version 3 of the License, or (at your option) any later
+;; version.
;;
;; This library is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-;; more details.
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+;; details.
;;
;; You should have received a copy of the GNU General Public License along with
;; this library. If not, see <http://www.gnu.org/licenses/>.
-((nil . ((fill-column . 79)
+((nil . ((fill-column . 80)
(indent-tabs-mode . nil)))
(makefile-automake-mode . ((indent-tabs-mode . t))))
diff --git a/.gitignore b/.gitignore
index 9cbc534..846c21a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-# -*- conf -*-
+# -*- conf -*-
# Editor backup files
*~
diff --git a/src/main.cc b/src/main.cc
index de85472..c3a757b 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -1,14 +1,14 @@
// Copyright (C) 2014, 2015 Benjamin Barenblat
//
-// This program is free software: you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation, either version 3 of the License, or (at your option)
-// any later version.
+// This program is free software: you can redistribute it and/or modify it under
+// the terms of the GNU General Public License as published by the Free Software
+// Foundation, either version 3 of the License, or (at your option) any later
+// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
-// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-// more details.
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+// details.
//
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <http://www.gnu.org/licenses/>.