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.
This commit is contained in:
Philipp Stephani 2016-10-20 20:22:40 +02:00
parent 3b83123a7f
commit 56f8384bb3

View file

@ -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