18720
|
1 ;;; cc-compat.el --- cc-mode compatibility with c-mode.el confusion
|
|
2
|
24282
|
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97,98 Free Software Foundation, Inc.
|
18720
|
4
|
|
5 ;; Author: 1994-1997 Barry A. Warsaw
|
24282
|
6 ;; Maintainer: bug-cc-mode@gnu.org
|
18720
|
7 ;; Created: August 1994, split from cc-mode.el
|
20141
|
8 ;; Version: See cc-mode.el
|
18720
|
9 ;; Keywords: c languages oop
|
|
10
|
|
11 ;; This file is part of GNU Emacs.
|
|
12
|
|
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)
|
|
16 ;; any later version.
|
|
17
|
|
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.
|
|
22
|
|
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.
|
|
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")
|
|
39
|
|
40 ;;; Code:
|
|
41
|
|
42 (eval-when-compile
|
24282
|
43 (require 'cc-defs)
|
18720
|
44 (require 'cc-styles)
|
|
45 (require 'cc-engine))
|
|
46
|
|
47
|
|
48 ;; In case c-mode.el isn't loaded
|
|
49 (defvar c-indent-level 2
|
|
50 "*Indentation of C statements with respect to containing block.")
|
|
51 (defvar c-brace-imaginary-offset 0
|
|
52 "*Imagined indentation of a C open brace that actually follows a statement.")
|
|
53 (defvar c-brace-offset 0
|
|
54 "*Extra indentation for braces, compared with other text in same context.")
|
|
55 (defvar c-argdecl-indent 5
|
|
56 "*Indentation level of declarations of C function arguments.")
|
|
57 (defvar c-label-offset -2
|
|
58 "*Offset of C label lines and case statements relative to usual indentation.")
|
|
59 (defvar c-continued-statement-offset 2
|
|
60 "*Extra indent for lines not starting new statements.")
|
|
61 (defvar c-continued-brace-offset 0
|
|
62 "*Extra indent for substatements that start with open-braces.
|
|
63 This is in addition to c-continued-statement-offset.")
|
|
64
|
|
65
|
|
66
|
|
67 ;; these offsets are taken by brute force testing c-mode.el, since
|
|
68 ;; there's no logic to what it does.
|
|
69 (let* ((offsets '(c-offsets-alist .
|
|
70 ((defun-block-intro . cc-block-intro-offset)
|
|
71 (statement-block-intro . cc-block-intro-offset)
|
|
72 (defun-open . 0)
|
|
73 (class-open . 0)
|
|
74 (inline-open . c-brace-offset)
|
|
75 (block-open . c-brace-offset)
|
|
76 (block-close . cc-block-close-offset)
|
|
77 (brace-list-open . c-brace-offset)
|
|
78 (substatement-open . cc-substatement-open-offset)
|
|
79 (substatement . c-continued-statement-offset)
|
|
80 (knr-argdecl-intro . c-argdecl-indent)
|
|
81 (case-label . c-label-offset)
|
|
82 (access-label . c-label-offset)
|
|
83 (label . c-label-offset)
|
|
84 ))))
|
|
85 (c-add-style "BOCM" offsets))
|
|
86
|
|
87
|
|
88 (defun cc-block-intro-offset (langelem)
|
|
89 ;; taken directly from calculate-c-indent confusion
|
|
90 (save-excursion
|
|
91 (c-backward-syntactic-ws)
|
|
92 (if (eq (char-before) ?{)
|
|
93 (forward-char -1)
|
|
94 (goto-char (cdr langelem)))
|
|
95 (let* ((curcol (save-excursion
|
|
96 (goto-char (cdr langelem))
|
|
97 (current-column)))
|
|
98 (bocm-lossage
|
|
99 ;; If no previous statement, indent it relative to line
|
|
100 ;; brace is on. For open brace in column zero, don't let
|
|
101 ;; statement start there too. If c-indent-level is zero,
|
|
102 ;; use c-brace-offset + c-continued-statement-offset
|
|
103 ;; instead. For open-braces not the first thing in a line,
|
|
104 ;; add in c-brace-imaginary-offset.
|
|
105 (+ (if (and (bolp) (zerop c-indent-level))
|
|
106 (+ c-brace-offset c-continued-statement-offset)
|
|
107 c-indent-level)
|
|
108 ;; Move back over whitespace before the openbrace. If
|
|
109 ;; openbrace is not first nonwhite thing on the line,
|
|
110 ;; add the c-brace-imaginary-offset.
|
|
111 (progn (skip-chars-backward " \t")
|
|
112 (if (bolp) 0 c-brace-imaginary-offset))
|
|
113 ;; If the openbrace is preceded by a parenthesized exp,
|
|
114 ;; move to the beginning of that; possibly a different
|
|
115 ;; line
|
|
116 (progn
|
|
117 (if (eq (char-before) ?\))
|
24282
|
118 (c-forward-sexp -1))
|
18720
|
119 ;; Get initial indentation of the line we are on.
|
|
120 (current-indentation)))))
|
|
121 (- bocm-lossage curcol))))
|
|
122
|
|
123
|
|
124 (defun cc-block-close-offset (langelem)
|
|
125 (save-excursion
|
|
126 (let* ((here (point))
|
|
127 bracep
|
|
128 (curcol (progn
|
|
129 (goto-char (cdr langelem))
|
|
130 (current-column)))
|
|
131 (bocm-lossage (progn
|
|
132 (goto-char (cdr langelem))
|
|
133 (if (eq (char-after) ?{)
|
|
134 (setq bracep t)
|
|
135 (goto-char here)
|
|
136 (beginning-of-line)
|
|
137 (backward-up-list 1)
|
|
138 (forward-char 1)
|
|
139 (c-forward-syntactic-ws))
|
|
140 (current-column))))
|
|
141 (- bocm-lossage curcol
|
|
142 (if bracep 0 c-indent-level)))))
|
|
143
|
|
144
|
|
145 (defun cc-substatement-open-offset (langelem)
|
|
146 (+ c-continued-statement-offset c-continued-brace-offset))
|
|
147
|
|
148
|
|
149 (provide 'cc-compat)
|
|
150 ;;; cc-compat.el ends here
|