diff options
| author | Philipp Stephani | 2016-10-20 20:22:40 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2016-10-20 20:22:40 +0200 |
| commit | 56f8384bb3f20d55693a3a1db8aa2cf490e6d18e (patch) | |
| tree | ff9695b2f97cb093a923b1816b39019f4760ee77 | |
| parent | 3b83123a7f5709ad58ceaa9ac073f433749471d2 (diff) | |
| download | emacs-56f8384bb3f20d55693a3a1db8aa2cf490e6d18e.tar.gz 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.
| -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 @@ | |||
| 1 | ;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binning: t -*- | 1 | ;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -21,6 +21,11 @@ | |||
| 21 | ;; You should have received a copy of the GNU General Public License | 21 | ;; You should have received a copy of the GNU General Public License |
| 22 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | 22 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
| 23 | 23 | ||
| 24 | |||
| 25 | ;;; Commentary: | ||
| 26 | |||
| 27 | ;; Unit tests for cc-mode.el. | ||
| 28 | |||
| 24 | ;;; Code: | 29 | ;;; Code: |
| 25 | 30 | ||
| 26 | (require 'ert) | 31 | (require 'ert) |
| @@ -63,3 +68,5 @@ | |||
| 63 | '("struct \t Blah_42 \t {" | 68 | '("struct \t Blah_42 \t {" |
| 64 | "struct template {" | 69 | "struct template {" |
| 65 | "#include <string.h>"))))) | 70 | "#include <string.h>"))))) |
| 71 | |||
| 72 | ;;; cc-mode-tests.el ends here | ||