Convert consecutive FSF copyright years to ranges.
[bpt/emacs.git] / lisp / progmodes / cc-compat.el
CommitLineData
785eecbb
RS
1;;; cc-compat.el --- cc-mode compatibility with c-mode.el confusion
2
73b0cd50 3;; Copyright (C) 1985, 1987, 1992-2011
d7a0267c 4;; Free Software Foundation, Inc.
785eecbb 5
d9e94c22
MS
6;; Authors: 1998- Martin Stjernholm
7;; 1994-1999 Barry A. Warsaw
6862d613 8;; Maintainer: bug-cc-mode@gnu.org
785eecbb 9;; Created: August 1994, split from cc-mode.el
bd78fa1d
CY
10;; Keywords: c languages
11;; Package: cc-mode
785eecbb
RS
12
13;; This file is part of GNU Emacs.
14
b1fc2b50 15;; GNU Emacs is free software: you can redistribute it and/or modify
785eecbb 16;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
17;; the Free Software Foundation, either version 3 of the License, or
18;; (at your option) any later version.
785eecbb
RS
19
20;; GNU Emacs is distributed in the hope that it will be useful,
21;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;; GNU General Public License for more details.
24
25;; You should have received a copy of the GNU General Public License
b1fc2b50 26;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
785eecbb
RS
27
28;;; Commentary:
29;;
30;; Boring old c-mode.el (BOCM) is confusion and brain melt. cc-mode.el
31;; is clarity of thought and purity of chi. If you are still unwilling
32;; to accept enlightenment, this might help, or it may prolong your
33;; agony.
34;;
35;; To use, add the following to your c-mode-hook:
36;;
37;; (require 'cc-compat)
38;; (c-set-style "BOCM")
130c507e
GM
39;;
40;; This file is completely unsupported! Although it has been patched
41;; superficially to keep pace with the rest of CC Mode, it hasn't been
42;; tested for a long time.
785eecbb
RS
43
44;;; Code:
45
46(eval-when-compile
51f606de 47 (let ((load-path
130c507e
GM
48 (if (and (boundp 'byte-compile-dest-file)
49 (stringp byte-compile-dest-file))
50 (cons (file-name-directory byte-compile-dest-file) load-path)
51f606de 51 load-path)))
d9e94c22 52 (load "cc-bytecomp" nil t)))
130c507e
GM
53
54(cc-require 'cc-defs)
55(cc-require 'cc-vars)
56(cc-require 'cc-styles)
57(cc-require 'cc-engine)
785eecbb
RS
58
59\f
60;; In case c-mode.el isn't loaded
61(defvar c-indent-level 2
62 "*Indentation of C statements with respect to containing block.")
631c8020
RS
63;;;###autoload(put 'c-indent-level 'safe-local-variable 'integerp)
64
785eecbb
RS
65(defvar c-brace-imaginary-offset 0
66 "*Imagined indentation of a C open brace that actually follows a statement.")
67(defvar c-brace-offset 0
68 "*Extra indentation for braces, compared with other text in same context.")
69(defvar c-argdecl-indent 5
70 "*Indentation level of declarations of C function arguments.")
71(defvar c-label-offset -2
72 "*Offset of C label lines and case statements relative to usual indentation.")
73(defvar c-continued-statement-offset 2
74 "*Extra indent for lines not starting new statements.")
75(defvar c-continued-brace-offset 0
76 "*Extra indent for substatements that start with open-braces.
77This is in addition to c-continued-statement-offset.")
78
79
80\f
81;; these offsets are taken by brute force testing c-mode.el, since
82;; there's no logic to what it does.
83(let* ((offsets '(c-offsets-alist .
84 ((defun-block-intro . cc-block-intro-offset)
85 (statement-block-intro . cc-block-intro-offset)
86 (defun-open . 0)
87 (class-open . 0)
88 (inline-open . c-brace-offset)
89 (block-open . c-brace-offset)
90 (block-close . cc-block-close-offset)
91 (brace-list-open . c-brace-offset)
92 (substatement-open . cc-substatement-open-offset)
93 (substatement . c-continued-statement-offset)
94 (knr-argdecl-intro . c-argdecl-indent)
95 (case-label . c-label-offset)
96 (access-label . c-label-offset)
97 (label . c-label-offset)
98 ))))
99 (c-add-style "BOCM" offsets))
100
101
102(defun cc-block-intro-offset (langelem)
103 ;; taken directly from calculate-c-indent confusion
104 (save-excursion
105 (c-backward-syntactic-ws)
106 (if (eq (char-before) ?{)
107 (forward-char -1)
108 (goto-char (cdr langelem)))
d9e94c22 109 (let* ((curcol (save-excursion
785eecbb
RS
110 (goto-char (cdr langelem))
111 (current-column)))
112 (bocm-lossage
113 ;; If no previous statement, indent it relative to line
114 ;; brace is on. For open brace in column zero, don't let
115 ;; statement start there too. If c-indent-level is zero,
116 ;; use c-brace-offset + c-continued-statement-offset
117 ;; instead. For open-braces not the first thing in a line,
118 ;; add in c-brace-imaginary-offset.
119 (+ (if (and (bolp) (zerop c-indent-level))
120 (+ c-brace-offset c-continued-statement-offset)
121 c-indent-level)
122 ;; Move back over whitespace before the openbrace. If
123 ;; openbrace is not first nonwhite thing on the line,
124 ;; add the c-brace-imaginary-offset.
125 (progn (skip-chars-backward " \t")
126 (if (bolp) 0 c-brace-imaginary-offset))
127 ;; If the openbrace is preceded by a parenthesized exp,
128 ;; move to the beginning of that; possibly a different
129 ;; line
130 (progn
131 (if (eq (char-before) ?\))
0ec8351b 132 (c-forward-sexp -1))
785eecbb
RS
133 ;; Get initial indentation of the line we are on.
134 (current-indentation)))))
135 (- bocm-lossage curcol))))
136
137
138(defun cc-block-close-offset (langelem)
139 (save-excursion
140 (let* ((here (point))
d9e94c22 141 bracep
785eecbb
RS
142 (curcol (progn
143 (goto-char (cdr langelem))
144 (current-column)))
145 (bocm-lossage (progn
146 (goto-char (cdr langelem))
147 (if (eq (char-after) ?{)
148 (setq bracep t)
149 (goto-char here)
150 (beginning-of-line)
151 (backward-up-list 1)
152 (forward-char 1)
153 (c-forward-syntactic-ws))
154 (current-column))))
155 (- bocm-lossage curcol
156 (if bracep 0 c-indent-level)))))
d9e94c22 157
785eecbb
RS
158
159(defun cc-substatement-open-offset (langelem)
160 (+ c-continued-statement-offset c-continued-brace-offset))
161
162\f
130c507e 163(cc-provide 'cc-compat)
ab5796a9 164
785eecbb 165;;; cc-compat.el ends here