1 ;;; cc-compat.el --- cc-mode compatibility with c-mode.el confusion
3 ;; Copyright (C) 1985,1987,1992-1999 Free Software Foundation, Inc.
5 ;; Author: 1994-1997 Barry A. Warsaw
6 ;; Maintainer: Unmaintained
7 ;; Created: August 1994, split from cc-mode.el
8 ;; Version: See cc-mode.el
9 ;; Keywords: c languages oop
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
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
35 ;; To use, add the following to your c-mode-hook:
37 ;; (require 'cc-compat)
38 ;; (c-set-style "BOCM")
44 (if (and (boundp 'byte-compile-current-file
)
45 (stringp byte-compile-current-file
))
46 (cons (file-name-directory byte-compile-current-file
)
49 (load "cc-defs" nil t
)))
54 ;; In case c-mode.el isn't loaded
55 (defvar c-indent-level
2
56 "*Indentation of C statements with respect to containing block.")
57 (defvar c-brace-imaginary-offset
0
58 "*Imagined indentation of a C open brace that actually follows a statement.")
59 (defvar c-brace-offset
0
60 "*Extra indentation for braces, compared with other text in same context.")
61 (defvar c-argdecl-indent
5
62 "*Indentation level of declarations of C function arguments.")
63 (defvar c-label-offset -
2
64 "*Offset of C label lines and case statements relative to usual indentation.")
65 (defvar c-continued-statement-offset
2
66 "*Extra indent for lines not starting new statements.")
67 (defvar c-continued-brace-offset
0
68 "*Extra indent for substatements that start with open-braces.
69 This is in addition to c-continued-statement-offset.")
73 ;; these offsets are taken by brute force testing c-mode.el, since
74 ;; there's no logic to what it does.
75 (let* ((offsets '(c-offsets-alist .
76 ((defun-block-intro . cc-block-intro-offset
)
77 (statement-block-intro . cc-block-intro-offset
)
80 (inline-open . c-brace-offset
)
81 (block-open . c-brace-offset
)
82 (block-close . cc-block-close-offset
)
83 (brace-list-open . c-brace-offset
)
84 (substatement-open . cc-substatement-open-offset
)
85 (substatement . c-continued-statement-offset
)
86 (knr-argdecl-intro . c-argdecl-indent
)
87 (case-label . c-label-offset
)
88 (access-label . c-label-offset
)
89 (label . c-label-offset
)
91 (c-add-style "BOCM" offsets
))
94 (defun cc-block-intro-offset (langelem)
95 ;; taken directly from calculate-c-indent confusion
97 (c-backward-syntactic-ws)
98 (if (eq (char-before) ?
{)
100 (goto-char (cdr langelem
)))
101 (let* ((curcol (save-excursion
102 (goto-char (cdr langelem
))
105 ;; If no previous statement, indent it relative to line
106 ;; brace is on. For open brace in column zero, don't let
107 ;; statement start there too. If c-indent-level is zero,
108 ;; use c-brace-offset + c-continued-statement-offset
109 ;; instead. For open-braces not the first thing in a line,
110 ;; add in c-brace-imaginary-offset.
111 (+ (if (and (bolp) (zerop c-indent-level
))
112 (+ c-brace-offset c-continued-statement-offset
)
114 ;; Move back over whitespace before the openbrace. If
115 ;; openbrace is not first nonwhite thing on the line,
116 ;; add the c-brace-imaginary-offset.
117 (progn (skip-chars-backward " \t")
118 (if (bolp) 0 c-brace-imaginary-offset
))
119 ;; If the openbrace is preceded by a parenthesized exp,
120 ;; move to the beginning of that; possibly a different
123 (if (eq (char-before) ?\
))
125 ;; Get initial indentation of the line we are on.
126 (current-indentation)))))
127 (- bocm-lossage curcol
))))
130 (defun cc-block-close-offset (langelem)
132 (let* ((here (point))
135 (goto-char (cdr langelem
))
138 (goto-char (cdr langelem
))
139 (if (eq (char-after) ?
{)
145 (c-forward-syntactic-ws))
147 (- bocm-lossage curcol
148 (if bracep
0 c-indent-level
)))))
151 (defun cc-substatement-open-offset (langelem)
152 (+ c-continued-statement-offset c-continued-brace-offset
))
156 ;;; cc-compat.el ends here