comparison lisp/progmodes/cc-bytecomp.el @ 38422:7a94f1c588c4

Some fixes to follow coding conventions.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 16 Jul 2001 07:46:48 +0000
parents 64d8d90d180d
children 7a3ac6c387fe
comparison
equal deleted inserted replaced
38421:207796d8dffc 38422:7a94f1c588c4
1 ;;; cc-bytecomp.el --- Compile time setup for proper compilation 1 ;;; cc-bytecomp.el --- compile time setup for proper compilation
2 2
3 ;; Copyright (C) 2000, 01 Free Software Foundation, Inc. 3 ;; Copyright (C) 2000, 01 Free Software Foundation, Inc.
4 4
5 ;; Author: Martin Stjernholm 5 ;; Author: Martin Stjernholm
6 ;; Maintainer: bug-cc-mode@gnu.org 6 ;; Maintainer: bug-cc-mode@gnu.org
31 ;; compiled regardless the environment (e.g. if an older CC Mode with 31 ;; compiled regardless the environment (e.g. if an older CC Mode with
32 ;; outdated macros are loaded during compilation). It also provides 32 ;; outdated macros are loaded during compilation). It also provides
33 ;; features to defeat the compiler warnings for selected symbols. 33 ;; features to defeat the compiler warnings for selected symbols.
34 34
35 35
36 ;;; Code:
37
36 (defvar cc-bytecomp-unbound-variables nil) 38 (defvar cc-bytecomp-unbound-variables nil)
37 (defvar cc-bytecomp-original-functions nil) 39 (defvar cc-bytecomp-original-functions nil)
38 (defvar cc-bytecomp-original-properties nil) 40 (defvar cc-bytecomp-original-properties nil)
39 (defvar cc-bytecomp-load-depth 0) 41 (defvar cc-bytecomp-load-depth 0)
40 (defvar cc-bytecomp-loaded-files nil) 42 (defvar cc-bytecomp-loaded-files nil)
288 (cc-bytecomp-load-depth 1)) 290 (cc-bytecomp-load-depth 1))
289 (load "cc-bytecomp.el" nil t t))) 291 (load "cc-bytecomp.el" nil t t)))
290 292
291 293
292 (provide 'cc-bytecomp) 294 (provide 'cc-bytecomp)
295
296 ;;; cc-bytecomp.el ends here