annotate lisp/cc-mode/cc-compat.el @ 187:b405438285a2 r20-3b20

Import from CVS: tag r20-3b20
author cvs
date Mon, 13 Aug 2007 09:56:28 +0200
parents e121b013d1f0
children 489f57a838ef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1 ;;; cc-compat.el --- cc-mode compatibility with c-mode.el confusion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97 Free Software Foundation, Inc.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
5 ;; Author: 1994-1997 Barry A. Warsaw
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6 ;; Maintainer: cc-mode-help@python.org
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7 ;; Created: August 1994, split from cc-mode.el
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
8 ;; Version: 5.17
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9 ;; Keywords: c languages oop
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
10
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11 ;; This file is part of GNU Emacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14 ;; it under the terms of the GNU General Public License as published by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15 ;; the Free Software Foundation; either version 2, or (at your option)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16 ;; any later version.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18 ;; GNU Emacs is distributed in the hope that it will be useful,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21 ;; GNU General Public License for more details.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26 ;; Boston, MA 02111-1307, USA.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28 ;;; Commentary:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
30 ;; Boring old c-mode.el (BOCM) is confusion and brain melt. cc-mode.el
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
31 ;; is clarity of thought and purity of chi. If you are still unwilling
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
32 ;; to accept enlightenment, this might help, or it may prolong your
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
33 ;; agony.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
34 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
35 ;; To use, add the following to your c-mode-hook:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
36 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
37 ;; (require 'cc-compat)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
38 ;; (c-set-style "BOCM")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
39
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
40 ;;; Code:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
41
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
42 (eval-when-compile
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
43 (require 'cc-styles)
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
44 (require 'cc-engine))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
45
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
46
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 ;; In case c-mode.el isn't loaded
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48 (defvar c-indent-level 2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
49 "*Indentation of C statements with respect to containing block.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50 (defvar c-brace-imaginary-offset 0
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
51 "*Imagined indentation of a C open brace that actually follows a statement.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52 (defvar c-brace-offset 0
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 "*Extra indentation for braces, compared with other text in same context.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 (defvar c-argdecl-indent 5
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
55 "*Indentation level of declarations of C function arguments.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56 (defvar c-label-offset -2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57 "*Offset of C label lines and case statements relative to usual indentation.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 (defvar c-continued-statement-offset 2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59 "*Extra indent for lines not starting new statements.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
60 (defvar c-continued-brace-offset 0
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61 "*Extra indent for substatements that start with open-braces.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62 This is in addition to c-continued-statement-offset.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66 ;; these offsets are taken by brute force testing c-mode.el, since
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67 ;; there's no logic to what it does.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
68 (let* ((offsets '(c-offsets-alist .
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
69 ((defun-block-intro . cc-block-intro-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
70 (statement-block-intro . cc-block-intro-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
71 (defun-open . 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
72 (class-open . 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
73 (inline-open . c-brace-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
74 (block-open . c-brace-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
75 (block-close . cc-block-close-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
76 (brace-list-open . c-brace-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
77 (substatement-open . cc-substatement-open-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
78 (substatement . c-continued-statement-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
79 (knr-argdecl-intro . c-argdecl-indent)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
80 (case-label . c-label-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
81 (access-label . c-label-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
82 (label . c-label-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
83 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
84 (c-add-style "BOCM" offsets))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
85
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
86
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
87 (defun cc-block-intro-offset (langelem)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
88 ;; taken directly from calculate-c-indent confusion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
89 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
90 (c-backward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
91 (if (eq (char-before) ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
92 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
93 (goto-char (cdr langelem)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
94 (let* ((curcol (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
95 (goto-char (cdr langelem))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
96 (current-column)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
97 (bocm-lossage
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
98 ;; If no previous statement, indent it relative to line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
99 ;; brace is on. For open brace in column zero, don't let
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
100 ;; statement start there too. If c-indent-level is zero,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
101 ;; use c-brace-offset + c-continued-statement-offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
102 ;; instead. For open-braces not the first thing in a line,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
103 ;; add in c-brace-imaginary-offset.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
104 (+ (if (and (bolp) (zerop c-indent-level))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
105 (+ c-brace-offset c-continued-statement-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
106 c-indent-level)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
107 ;; Move back over whitespace before the openbrace. If
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
108 ;; openbrace is not first nonwhite thing on the line,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
109 ;; add the c-brace-imaginary-offset.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
110 (progn (skip-chars-backward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
111 (if (bolp) 0 c-brace-imaginary-offset))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
112 ;; If the openbrace is preceded by a parenthesized exp,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
113 ;; move to the beginning of that; possibly a different
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
114 ;; line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
115 (progn
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
116 (if (eq (char-before) ?\))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
117 (forward-sexp -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
118 ;; Get initial indentation of the line we are on.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
119 (current-indentation)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
120 (- bocm-lossage curcol))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
121
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
122
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
123 (defun cc-block-close-offset (langelem)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
124 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
125 (let* ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
126 bracep
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
127 (curcol (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
128 (goto-char (cdr langelem))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
129 (current-column)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
130 (bocm-lossage (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
131 (goto-char (cdr langelem))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
132 (if (eq (char-after) ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
133 (setq bracep t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
134 (goto-char here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
135 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
136 (backward-up-list 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
137 (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
138 (c-forward-syntactic-ws))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
139 (current-column))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
140 (- bocm-lossage curcol
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
141 (if bracep 0 c-indent-level)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
142
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
143
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
144 (defun cc-substatement-open-offset (langelem)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
145 (+ c-continued-statement-offset c-continued-brace-offset))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
146
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
147
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
148 (provide 'cc-compat)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
149 ;;; cc-compat.el ends here