summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2016-10-20 20:22:40 +0200
committerPhilipp Stephani <phst@google.com>2016-10-20 20:22:40 +0200
commit56f8384bb3f20d55693a3a1db8aa2cf490e6d18e (patch)
treeff9695b2f97cb093a923b1816b39019f4760ee77 /test/lisp/progmodes
parent3b83123a7f5709ad58ceaa9ac073f433749471d2 (diff)
downloademacs-56f8384bb3f20d55693a3a1db8aa2cf490e6d18e.tar.gz
emacs-56f8384bb3f20d55693a3a1db8aa2cf490e6d18e.tar.bz2
emacs-56f8384bb3f20d55693a3a1db8aa2cf490e6d18e.zip
Minor fixes to cc-mode-tests.el
See Bug#24747. * progmodes/cc-mode-tests.el: Rename from cc-mode.el; fix typo in file-local variable; add comments to make checkdoc happy.
Diffstat (limited to 'test/lisp/progmodes')
-rw-r--r--test/lisp/progmodes/cc-mode-tests.el (renamed from test/lisp/progmodes/cc-mode.el)9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/lisp/progmodes/cc-mode.el b/test/lisp/progmodes/cc-mode-tests.el
index 6cd9fa4bad5..62e0a738fbd 100644
--- a/test/lisp/progmodes/cc-mode.el
+++ b/test/lisp/progmodes/cc-mode-tests.el
@@ -1,4 +1,4 @@
-;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binning: t -*-
+;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binding: t; -*-
;; Copyright (C) 2016 Free Software Foundation, Inc.
@@ -21,6 +21,11 @@
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Unit tests for cc-mode.el.
+
;;; Code:
(require 'ert)
@@ -63,3 +68,5 @@
'("struct \t Blah_42 \t {"
"struct template {"
"#include <string.h>")))))
+
+;;; cc-mode-tests.el ends here