aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/cc-bytecomp.el
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-07-16 07:46:48 +0000
committerPavel Janík <[email protected]>2001-07-16 07:46:48 +0000
commit3afbc435ac942072f42bf795dea22131b03c8d93 (patch)
tree6715b27c5ef636a36a491d4b6f5d39896cf7b472 /lisp/progmodes/cc-bytecomp.el
parent5d3d1e3209acdc38227b0ec5bdd8c4a31f58d8d4 (diff)
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/progmodes/cc-bytecomp.el')
-rw-r--r--lisp/progmodes/cc-bytecomp.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-bytecomp.el b/lisp/progmodes/cc-bytecomp.el
index 39f173dbe7..947ce7b89b 100644
--- a/lisp/progmodes/cc-bytecomp.el
+++ b/lisp/progmodes/cc-bytecomp.el
@@ -1,4 +1,4 @@
-;;; cc-bytecomp.el --- Compile time setup for proper compilation
+;;; cc-bytecomp.el --- compile time setup for proper compilation
;; Copyright (C) 2000, 01 Free Software Foundation, Inc.
@@ -33,6 +33,8 @@
;; features to defeat the compiler warnings for selected symbols.
+;;; Code:
+
(defvar cc-bytecomp-unbound-variables nil)
(defvar cc-bytecomp-original-functions nil)
(defvar cc-bytecomp-original-properties nil)
@@ -290,3 +292,5 @@ Don't use within `eval-when-compile'."
(provide 'cc-bytecomp)
+
+;;; cc-bytecomp.el ends here