annotate lisp/cc-mode/cc-engine.el @ 194:2947057885e5

Added tag r20-3b23 for changeset f53b5ca2e663
author cvs
date Mon, 13 Aug 2007 09:58:32 +0200
parents 489f57a838ef
children 850242ba4a81
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-engine.el --- core syntax guessing engine for CC mode
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 ;; Authors: 1992-1997 Barry A. Warsaw
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6 ;; 1987 Dave Detlefs and Stewart Clamen
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7 ;; 1985 Richard M. Stallman
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
8 ;; Maintainer: cc-mode-help@python.org
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9 ;; Created: 22-Apr-1997 (split from cc-mode.el)
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
10 ;; Version: 5.18
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11 ;; Keywords: c languages oop
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13 ;; This file is part of GNU Emacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16 ;; it under the terms of the GNU General Public License as published by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17 ;; the Free Software Foundation; either version 2, or (at your option)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18 ;; any later version.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20 ;; GNU Emacs is distributed in the hope that it will be useful,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23 ;; GNU General Public License for more details.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25 ;; You should have received a copy of the GNU General Public License
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28 ;; Boston, MA 02111-1307, USA.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
30
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
31 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
32 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
33 ;; better way should be implemented, but this will at least shut up
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
34 ;; the byte compiler.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
35 (defvar c-maybe-labelp nil)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
36
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
37 ;; WARNING WARNING WARNING
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
38 ;;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
39 ;; Be *exceptionally* careful about modifications to this function!
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
40 ;; Much of CC Mode depends on this Doing The Right Thing. If you
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
41 ;; break it you will be sorry. If you think you know how this works,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
42 ;; you probably don't. No human on Earth does! :-)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
43 ;;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
44 ;; WARNING WARNING WARNING
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 (defun c-beginning-of-statement-1 (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 ;; move to the start of the current statement, or the previous
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48 ;; statement if already at the beginning of one.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
49 (let ((firstp t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50 (substmt-p t)
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
51 donep c-in-literal-cache saved
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52 (last-begin (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 ;; first check for bare semicolon
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 (if (and (progn (c-backward-syntactic-ws lim)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
55 (eq (char-before) ?\;))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56 (c-safe (progn (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57 (setq saved (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59 (progn (c-backward-syntactic-ws lim)
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
60 (memq (char-before) '(?\; ?{ ?:)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62 (setq last-begin saved)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63 (goto-char last-begin)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64 (while (not donep)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65 ;; stop at beginning of buffer
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66 (if (bobp) (setq donep t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67 ;; go backwards one balanced expression, but be careful of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
68 ;; unbalanced paren being reached
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
69 (if (not (c-safe (progn (backward-sexp 1) t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
70 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
71 (if firstp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
72 (backward-up-list 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
73 (goto-char last-begin))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
74 ;; skip over any unary operators, or other special
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
75 ;; characters appearing at front of identifier
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
76 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
77 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
78 (skip-chars-backward "-+!*&:.~ \t\n")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
79 (if (eq (char-before) ?\()
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
80 (setq last-begin (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
81 (goto-char last-begin)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
82 (setq last-begin (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
83 donep t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
84
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
85 (setq c-maybe-labelp nil)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
86 ;; see if we're in a literal. if not, then this bufpos may be
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
87 ;; a candidate for stopping
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
88 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
89 ;; CASE 0: did we hit the error condition above?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
90 (donep)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
91 ;; CASE 1: are we in a literal?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
92 ((eq (c-in-literal lim) 'pound)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
93 (beginning-of-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
94 ;; CASE 2: some other kind of literal?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
95 ((c-in-literal lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
96 ;; CASE 3: are we looking at a conditional keyword?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
97 ((or (looking-at c-conditional-key)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
98 (and (eq (char-after) ?\()
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
99 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
100 (forward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
101 (c-forward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
102 (not (eq (char-after) ?\;)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
103 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
104 (foundp (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
105 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
106 (forward-word -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
107 (and lim
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
108 (<= lim (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
109 (not (c-in-literal lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
110 (looking-at c-conditional-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
111 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
112 ;; did we find a conditional?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
113 (if (not foundp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
114 (goto-char here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
115 foundp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
116 ;; are we in the middle of an else-if clause?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
117 (if (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
118 (and (not substmt-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
119 (c-safe (progn (forward-sexp -1) t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
120 (looking-at "\\<else\\>[ \t\n]+\\<if\\>")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
121 (not (c-in-literal lim))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
122 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
123 (forward-sexp -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
124 (c-backward-to-start-of-if lim)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
125 ;; are we sitting at an else clause, that we are not a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
126 ;; substatement of?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
127 (if (and (not substmt-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
128 (looking-at "\\<else\\>[^_]"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
129 (c-backward-to-start-of-if lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
130 ;; are we sitting at the while of a do-while?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
131 (if (and (looking-at "\\<while\\>[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
132 (c-backward-to-start-of-do lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
133 (setq substmt-p nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
134 (setq last-begin (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
135 donep substmt-p))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
136 ;; CASE 4: are we looking at a label?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
137 ((looking-at c-label-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
138 ;; CASE 5: is this the first time we're checking?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
139 (firstp (setq firstp nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
140 substmt-p (not (c-crosses-statement-barrier-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
141 (point) last-begin))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
142 last-begin (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
143 ;; CASE 6: have we crossed a statement barrier?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
144 ((c-crosses-statement-barrier-p (point) last-begin)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
145 (setq donep t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
146 ;; CASE 7: ignore labels
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
147 ((and c-maybe-labelp
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
148 (or (and c-access-key (looking-at c-access-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
149 ;; with switch labels, we have to go back further
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
150 ;; to try to pick up the case or default
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
151 ;; keyword. Potential bogosity alert: we assume
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
152 ;; `case' or `default' is first thing on line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
153 (let ((here (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
154 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
155 (c-forward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
156 (if (looking-at c-switch-label-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
157 t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
158 (goto-char here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
159 nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
160 (looking-at c-label-key))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
161 ;; CASE 8: ObjC or Java method def
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
162 ((and c-method-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
163 (setq last-begin (c-in-method-def-p)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
164 (setq donep t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
165 ;; CASE 9: nothing special
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
166 (t (setq last-begin (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
167 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
168 (goto-char last-begin)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
169 ;; we always do want to skip over non-whitespace modifier
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
170 ;; characters that didn't get skipped above
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
171 (skip-chars-backward "-+!*&:.~" (c-point 'boi))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
172
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
173 (defun c-end-of-statement-1 ()
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
174 (condition-case nil
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
175 (let (beg end found)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
176 (while (and (not (eobp))
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
177 (progn
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
178 (setq beg (point))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
179 (forward-sexp 1)
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
180 (setq end (point))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
181 (goto-char beg)
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
182 (setq found nil)
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
183 (while (and (not found)
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
184 (re-search-forward "[;{}]" end t))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
185 (if (not (c-in-literal beg))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
186 (setq found t)))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
187 (not found)))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
188 (goto-char end))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
189 (re-search-backward "[;{}]")
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
190 (forward-char 1))
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
191 (error
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
192 (let ((beg (point)))
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
193 (c-safe (backward-up-list -1))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
194 (let ((end (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
195 (goto-char beg)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
196 (search-forward ";" end 'move)))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
197 )))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
198
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
199
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
200 (defun c-crosses-statement-barrier-p (from to)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
201 ;; Does buffer positions FROM to TO cross a C statement boundary?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
202 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
203 (lim from)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
204 crossedp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
205 (condition-case ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
206 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
207 (goto-char from)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
208 (while (and (not crossedp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
209 (< (point) to))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
210 (skip-chars-forward "^;{}:" to)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
211 (if (not (c-in-literal lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
212 (progn
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
213 (if (memq (char-after) '(?\; ?{ ?}))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
214 (setq crossedp t)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
215 (if (eq (char-after) ?:)
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 171
diff changeset
216 (setq c-maybe-labelp t))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
217 (forward-char 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
218 (setq lim (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
219 (forward-char 1))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
220 (error (setq crossedp nil)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
221 (goto-char here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
222 crossedp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
223
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
224
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
225 ;; Skipping of "syntactic whitespace", defined as lexical whitespace,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
226 ;; C and C++ style comments, and preprocessor directives. Search no
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
227 ;; farther back or forward than optional LIM. If LIM is omitted,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
228 ;; `beginning-of-defun' is used for backward skipping, point-max is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
229 ;; used for forward skipping.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
230
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
231 (defun c-forward-syntactic-ws (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
232 ;; Forward skip of syntactic whitespace for Emacs 19.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
233 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
234 (let* ((lim (or lim (point-max)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
235 (here lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
236 (hugenum (point-max)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
237 (narrow-to-region lim (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
238 (while (/= here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
239 (setq here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
240 (forward-comment hugenum)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
241 ;; skip preprocessor directives
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
242 (if (and (eq (char-after) ?#)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
243 (= (c-point 'boi) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
244 (end-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
245 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
246
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
247 (defun c-backward-syntactic-ws (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
248 ;; Backward skip over syntactic whitespace for Emacs 19.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
249 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
250 (let* ((lim (or lim (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
251 (here lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
252 (hugenum (- (point-max))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
253 (if (< lim (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
254 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
255 (narrow-to-region lim (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
256 (while (/= here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
257 (setq here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
258 (forward-comment hugenum)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
259 (if (eq (c-in-literal lim) 'pound)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
260 (beginning-of-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
261 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
262 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
263
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
264
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
265 ;; Return `c' if in a C-style comment, `c++' if in a C++ style
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
266 ;; comment, `string' if in a string literal, `pound' if on a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
267 ;; preprocessor line, or nil if not in a comment at all. Optional LIM
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
268 ;; is used as the backward limit of the search. If omitted, or nil,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
269 ;; `beginning-of-defun' is used."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
270
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
271 (defun c-in-literal (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
272 ;; Determine if point is in a C++ literal. we cache the last point
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
273 ;; calculated if the cache is enabled
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
274 (if (and (boundp 'c-in-literal-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
275 c-in-literal-cache
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
276 (= (point) (aref c-in-literal-cache 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
277 (aref c-in-literal-cache 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
278 (let ((rtn (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
279 (let* ((lim (or lim (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
280 (here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
281 (state (parse-partial-sexp lim (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
282 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
283 ((nth 3 state) 'string)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
284 ((nth 4 state) (if (nth 7 state) 'c++ 'c))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
285 ((progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
286 (goto-char here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
287 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
288 (looking-at "[ \t]*#"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
289 'pound)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
290 (t nil))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
291 ;; cache this result if the cache is enabled
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
292 (and (boundp 'c-in-literal-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
293 (setq c-in-literal-cache (vector (point) rtn)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
294 rtn)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
295
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
296
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
297 ;; utilities for moving and querying around syntactic elements
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
298 (defvar c-parsing-error nil)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
299
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
300 (defun c-parse-state ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
301 ;; Finds and records all open parens between some important point
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
302 ;; earlier in the file and point.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
303 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
304 ;; if there's a state cache, return it
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
305 (setq c-parsing-error nil)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
306 (if (boundp 'c-state-cache) c-state-cache
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
307 (let* (at-bob
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
308 (pos (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
309 ;; go back 2 bods, but ignore any bogus positions
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
310 ;; returned by beginning-of-defun (i.e. open paren
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
311 ;; in column zero)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
312 (let ((cnt 2))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
313 (while (not (or at-bob (zerop cnt)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
314 (beginning-of-defun)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
315 (if (eq (char-after) ?\{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
316 (setq cnt (1- cnt)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
317 (if (bobp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
318 (setq at-bob t))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
319 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
320 (here (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
321 ;;(skip-chars-forward " \t}")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
322 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
323 (last-bod pos) (last-pos pos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
324 placeholder state sexp-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
325 ;; cache last bod position
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
326 (while (catch 'backup-bod
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
327 (setq state nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
328 (while (and pos (< pos here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
329 (setq last-pos pos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
330 (if (and (setq pos (c-safe (scan-lists pos 1 -1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
331 (<= pos here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
332 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
333 (setq sexp-end (c-safe (scan-sexps (1- pos) 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
334 (if (and sexp-end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
335 (<= sexp-end here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
336 ;; we want to record both the start and end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
337 ;; of this sexp, but we only want to record
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
338 ;; the last-most of any of them before here
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
339 (progn
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
340 (if (eq (char-after (1- pos)) ?\{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
341 (setq state (cons (cons (1- pos) sexp-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
342 (if (consp (car state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
343 (cdr state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
344 state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
345 (setq pos sexp-end))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
346 ;; we're contained in this sexp so put pos on
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
347 ;; front of list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
348 (setq state (cons (1- pos) state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
349 ;; something bad happened. check to see if we
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
350 ;; crossed an unbalanced close brace. if so, we
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
351 ;; didn't really find the right `important bufpos'
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
352 ;; so lets back up and try again
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
353 (if (and (not pos) (not at-bob)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
354 (setq placeholder
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
355 (c-safe (scan-lists last-pos 1 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
356 ;;(char-after (1- placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
357 (<= placeholder here)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
358 (eq (char-after (1- placeholder)) ?\}))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
359 (while t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
360 (setq last-bod (c-safe (scan-lists last-bod -1 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
361 (if (not last-bod)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
362 (progn
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
363 ;; bogus, but what can we do here?
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
364 (setq c-parsing-error (1- placeholder))
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
365 (throw 'backup-bod nil))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
366 (setq at-bob (= last-bod (point-min))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
367 pos last-bod)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
368 (if (= (char-after last-bod) ?\{)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
369 (throw 'backup-bod t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
370 )) ;end-if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
371 )) ;end-while
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
372 nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
373 state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
374
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
375 (defun c-whack-state (bufpos state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
376 ;; whack off any state information that appears on STATE which lies
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
377 ;; after the bounds of BUFPOS.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
378 (let (newstate car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
379 (while state
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
380 (setq car (car state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
381 state (cdr state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
382 (if (consp car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
383 ;; just check the car, because in a balanced brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
384 ;; expression, it must be impossible for the corresponding
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
385 ;; close brace to be before point, but the open brace to be
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
386 ;; after.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
387 (if (<= bufpos (car car))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
388 nil ; whack it off
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
389 ;; its possible that the open brace is before bufpos, but
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
390 ;; the close brace is after. In that case, convert this
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
391 ;; to a non-cons element.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
392 (if (<= bufpos (cdr car))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
393 (setq newstate (append newstate (list (car car))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
394 ;; we know that both the open and close braces are
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
395 ;; before bufpos, so we also know that everything else
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
396 ;; on state is before bufpos, so we can glom up the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
397 ;; whole thing and exit.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
398 (setq newstate (append newstate (list car) state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
399 state nil)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
400 (if (<= bufpos car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
401 nil ; whack it off
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
402 ;; it's before bufpos, so everything else should too
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
403 (setq newstate (append newstate (list car) state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
404 state nil))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
405 newstate))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
406
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
407 (defun c-hack-state (bufpos which state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
408 ;; Using BUFPOS buffer position, and WHICH (must be 'open or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
409 ;; 'close), hack the c-parse-state STATE and return the results.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
410 (if (eq which 'open)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
411 (let ((car (car state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
412 (if (or (null car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
413 (consp car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
414 (/= bufpos car))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
415 (cons bufpos state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
416 state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
417 (if (not (eq which 'close))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
418 (error "c-hack-state, bad argument: %s" which))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
419 ;; 'close brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
420 (let ((car (car state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
421 (cdr (cdr state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
422 (if (consp car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
423 (setq car (car cdr)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
424 cdr (cdr cdr)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
425 ;; TBD: is this test relevant???
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
426 (if (consp car)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
427 state ;on error, don't change
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
428 ;; watch out for balanced expr already on cdr of list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
429 (cons (cons car bufpos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
430 (if (consp (car cdr))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
431 (cdr cdr) cdr))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
432 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
433
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
434 (defun c-adjust-state (from to shift state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
435 ;; Adjust all points in state that lie in the region FROM..TO by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
436 ;; SHIFT amount (as would be returned by c-indent-line).
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
437 (mapcar
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
438 (function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
439 (lambda (e)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
440 (if (consp e)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
441 (let ((car (car e))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
442 (cdr (cdr e)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
443 (if (and (<= from car) (< car to))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
444 (setcar e (+ shift car)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
445 (if (and (<= from cdr) (< cdr to))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
446 (setcdr e (+ shift cdr))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
447 (if (and (<= from e) (< e to))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
448 (setq e (+ shift e))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
449 e))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
450 state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
451
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
452
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
453 (defun c-beginning-of-inheritance-list (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
454 ;; Go to the first non-whitespace after the colon that starts a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
455 ;; multiple inheritance introduction. Optional LIM is the farthest
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
456 ;; back we should search.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
457 (let ((lim (or lim (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
458 (placeholder (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
459 (back-to-indentation)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
460 (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
461 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
462 (while (and (> (point) lim)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
463 (memq (char-before) '(?, ?:))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
464 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
465 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
466 (setq placeholder (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
467 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
468 (not (looking-at c-class-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
469 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
470 (c-backward-syntactic-ws lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
471 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
472 (skip-chars-forward "^:" (c-point 'eol))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
473
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
474 (defun c-beginning-of-macro (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
475 ;; Go to the beginning of the macro. Right now we don't support
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
476 ;; multi-line macros too well
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
477 (back-to-indentation))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
478
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
479 (defun c-in-method-def-p ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
480 ;; Return nil if we aren't in a method definition, otherwise the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
481 ;; position of the initial [+-].
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
482 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
483 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
484 (and c-method-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
485 (looking-at c-method-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
486 (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
487 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
488
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
489 (defun c-just-after-func-arglist-p (&optional containing)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
490 ;; Return t if we are between a function's argument list closing
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
491 ;; paren and its opening brace. Note that the list close brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
492 ;; could be followed by a "const" specifier or a member init hanging
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
493 ;; colon. Optional CONTAINING is position of containing s-exp open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
494 ;; brace. If not supplied, point is used as search start.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
495 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
496 (c-backward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
497 (let ((checkpoint (or containing (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
498 (goto-char checkpoint)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
499 ;; could be looking at const specifier
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
500 (if (and (eq (char-before) ?t)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
501 (forward-word -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
502 (looking-at "\\<const\\>"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
503 (c-backward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
504 ;; otherwise, we could be looking at a hanging member init
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
505 ;; colon
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
506 (goto-char checkpoint)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
507 (if (and (eq (char-before) ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
508 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
509 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
510 (c-backward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
511 (looking-at "[ \t\n]*:\\([^:]+\\|$\\)")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
512 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
513 (goto-char checkpoint))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
514 )
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
515 (and (eq (char-before) ?\))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
516 ;; check if we are looking at a method def
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
517 (or (not c-method-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
518 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
519 (forward-sexp -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
520 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
521 (c-backward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
522 (not (or (memq (char-before) '(?- ?+))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
523 ;; or a class category
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
524 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
525 (forward-sexp -2)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
526 (looking-at c-class-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
527 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
528 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
529
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
530 ;; defuns to look backwards for things
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
531 (defun c-backward-to-start-of-do (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
532 ;; Move to the start of the last "unbalanced" do expression.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
533 ;; Optional LIM is the farthest back to search. If none is found,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
534 ;; nil is returned and point is left unchanged, otherwise t is returned.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
535 (let ((do-level 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
536 (case-fold-search nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
537 (lim (or lim (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
538 (here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
539 foundp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
540 (while (not (zerop do-level))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
541 ;; we protect this call because trying to execute this when the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
542 ;; while is not associated with a do will throw an error
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
543 (condition-case nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
544 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
545 (backward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
546 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
547 ((memq (c-in-literal lim) '(c c++)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
548 ((looking-at "while\\b[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
549 (setq do-level (1+ do-level)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
550 ((looking-at "do\\b[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
551 (if (zerop (setq do-level (1- do-level)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
552 (setq foundp t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
553 ((<= (point) lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
554 (setq do-level 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
555 (goto-char lim))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
556 (error
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
557 (goto-char lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
558 (setq do-level 0))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
559 (if (not foundp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
560 (goto-char here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
561 foundp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
562
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
563 (defun c-backward-to-start-of-if (&optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
564 ;; Move to the start of the last "unbalanced" if and return t. If
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
565 ;; none is found, and we are looking at an if clause, nil is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
566 ;; returned. If none is found and we are looking at an else clause,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
567 ;; an error is thrown.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
568 (let ((if-level 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
569 (here (c-point 'bol))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
570 (case-fold-search nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
571 (lim (or lim (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
572 (at-if (looking-at "if\\b[^_]")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
573 (catch 'orphan-if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
574 (while (and (not (bobp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
575 (not (zerop if-level)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
576 (c-backward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
577 (condition-case nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
578 (backward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
579 (error
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
580 (if at-if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
581 (throw 'orphan-if nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
582 (error "No matching `if' found for `else' on line %d."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
583 (1+ (count-lines 1 here))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
584 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
585 ((looking-at "else\\b[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
586 (setq if-level (1+ if-level)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
587 ((looking-at "if\\b[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
588 ;; check for else if... skip over
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
589 (let ((here (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
590 (c-safe (forward-sexp -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
591 (if (looking-at "\\<else\\>[ \t]+\\<if\\>")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
592 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
593 (setq if-level (1- if-level))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
594 (goto-char here))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
595 ((< (point) lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
596 (setq if-level 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
597 (goto-char lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
598 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
599 t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
600
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
601 (defun c-skip-conditional ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
602 ;; skip forward over conditional at point, including any predicate
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
603 ;; statements in parentheses. No error checking is performed.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
604 (forward-sexp (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
605 ;; else if()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
606 ((looking-at "\\<else\\>[ \t]+\\<if\\>") 3)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
607 ;; do, else, try, finally
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
608 ((looking-at "\\<\\(do\\|else\\|try\\|finally\\)\\>") 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
609 ;; for, if, while, switch, catch, synchronized
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
610 (t 2))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
611
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
612 (defun c-skip-case-statement-forward (state &optional lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
613 ;; skip forward over case/default bodies, with optional maximal
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
614 ;; limit. if no next case body is found, nil is returned and point
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
615 ;; is not moved
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
616 (let ((lim (or lim (point-max)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
617 (here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
618 donep foundp bufpos
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
619 (safepos (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
620 (balanced (car state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
621 ;; search until we've passed the limit, or we've found our match
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
622 (while (and (< (point) lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
623 (not donep))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
624 (setq safepos (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
625 ;; see if we can find a case statement, not in a literal
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
626 (if (and (re-search-forward c-switch-label-key lim 'move)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
627 (setq bufpos (match-beginning 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
628 (not (c-in-literal safepos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
629 (/= bufpos here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
630 ;; if we crossed into a balanced sexp, we know the case is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
631 ;; not part of our switch statement, so just bound over the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
632 ;; sexp and keep looking.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
633 (if (and (consp balanced)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
634 (> bufpos (car balanced))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
635 (< bufpos (cdr balanced)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
636 (goto-char (cdr balanced))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
637 (goto-char bufpos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
638 (setq donep t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
639 foundp t))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
640 (if (not foundp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
641 (goto-char here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
642 foundp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
643
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
644 (defun c-search-uplist-for-classkey (brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
645 ;; search for the containing class, returning a 2 element vector if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
646 ;; found. aref 0 contains the bufpos of the class key, and aref 1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
647 ;; contains the bufpos of the open brace.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
648 (if (null brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
649 ;; no brace-state means we cannot be inside a class
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
650 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
651 (let ((carcache (car brace-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
652 search-start search-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
653 (if (consp carcache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
654 ;; a cons cell in the first element means that there is some
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
655 ;; balanced sexp before the current bufpos. this we can
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
656 ;; ignore. the nth 1 and nth 2 elements define for us the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
657 ;; search boundaries
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
658 (setq search-start (nth 2 brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
659 search-end (nth 1 brace-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
660 ;; if the car was not a cons cell then nth 0 and nth 1 define
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
661 ;; for us the search boundaries
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
662 (setq search-start (nth 1 brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
663 search-end (nth 0 brace-state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
664 ;; search-end cannot be a cons cell
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
665 (and (consp search-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
666 (error "consp search-end: %s" search-end))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
667 ;; if search-end is nil, or if the search-end character isn't an
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
668 ;; open brace, we are definitely not in a class
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
669 (if (or (not search-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
670 (< search-end (point-min))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
671 (not (eq (char-after search-end) ?{)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
672 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
673 ;; now, we need to look more closely at search-start. if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
674 ;; search-start is nil, then our start boundary is really
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
675 ;; point-min.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
676 (if (not search-start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
677 (setq search-start (point-min))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
678 ;; if search-start is a cons cell, then we can start
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
679 ;; searching from the end of the balanced sexp just ahead of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
680 ;; us
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
681 (if (consp search-start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
682 (setq search-start (cdr search-start))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
683 ;; now we can do a quick regexp search from search-start to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
684 ;; search-end and see if we can find a class key. watch for
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
685 ;; class like strings in literals
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
686 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
687 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
688 (goto-char search-start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
689 (let ((search-key (concat c-class-key "\\|extern[^_]"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
690 foundp class match-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
691 (while (and (not foundp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
692 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
693 (c-forward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
694 (> search-end (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
695 (re-search-forward search-key search-end t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
696 (setq class (match-beginning 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
697 match-end (match-end 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
698 (if (c-in-literal search-start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
699 nil ; its in a comment or string, ignore
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
700 (goto-char class)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
701 (skip-chars-forward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
702 (setq foundp (vector (c-point 'boi) search-end))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
703 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
704 ;; check for embedded keywords
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
705 ((let ((char (char-after (1- class))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
706 (and char
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
707 (memq (char-syntax char) '(?w ?_))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
708 (goto-char match-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
709 (setq foundp nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
710 ;; make sure we're really looking at the start of a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
711 ;; class definition, and not a forward decl, return
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
712 ;; arg, template arg list, or an ObjC or Java method.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
713 ((and c-method-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
714 (re-search-forward c-method-key search-end t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
715 (setq foundp nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
716 ;; Its impossible to define a regexp for this, and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
717 ;; nearly so to do it programmatically.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
718 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
719 ;; ; picks up forward decls
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
720 ;; = picks up init lists
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
721 ;; ) picks up return types
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
722 ;; > picks up templates, but remember that we can
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
723 ;; inherit from templates!
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
724 ((let ((skipchars "^;=)"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
725 ;; try to see if we found the `class' keyword
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
726 ;; inside a template arg list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
727 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
728 (skip-chars-backward "^<>" search-start)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
729 (if (eq (char-before) ?<)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
730 (setq skipchars (concat skipchars ">"))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
731 (skip-chars-forward skipchars search-end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
732 (/= (point) search-end))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
733 (setq foundp nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
734 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
735 foundp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
736 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
737
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
738 (defun c-inside-bracelist-p (containing-sexp brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
739 ;; return the buffer position of the beginning of the brace list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
740 ;; statement if we're inside a brace list, otherwise return nil.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
741 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
742 ;; paren. BRACE-STATE is the remainder of the state of enclosing braces
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
743 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
744 ;; N.B.: This algorithm can potentially get confused by cpp macros
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
745 ;; places in inconvenient locations. Its a trade-off we make for
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
746 ;; speed.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
747 (or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
748 ;; this will pick up enum lists
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
749 (condition-case ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
750 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
751 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
752 (forward-sexp -1)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
753 (if (and (or (looking-at "enum[\t\n ]+")
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
754 (progn (forward-sexp -1)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
755 (looking-at "enum[\t\n ]+")))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
756 (progn (c-end-of-statement-1)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
757 (> (point) containing-sexp)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
758 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
759 (error nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
760 ;; this will pick up array/aggregate init lists, even if they are nested.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
761 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
762 (let (bufpos failedp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
763 (while (and (not bufpos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
764 containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
765 (if (consp containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
766 (setq containing-sexp (car brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
767 brace-state (cdr brace-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
768 ;; see if significant character just before brace is an equal
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
769 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
770 (setq failedp nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
771 (condition-case ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
772 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
773 (forward-sexp -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
774 (forward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
775 (c-forward-syntactic-ws containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
776 (error (setq failedp t)))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
777 (if (or failedp (not (eq (char-after) ?=)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
778 ;; lets see if we're nested. find the most nested
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
779 ;; containing brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
780 (setq containing-sexp (car brace-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
781 brace-state (cdr brace-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
782 ;; we've hit the beginning of the aggregate list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
783 (c-beginning-of-statement-1 (c-most-enclosing-brace brace-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
784 (setq bufpos (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
785 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
786 bufpos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
787 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
788
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
789
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
790 (defun c-most-enclosing-brace (state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
791 ;; return the bufpos of the most enclosing brace that hasn't been
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
792 ;; narrowed out by any enclosing class, or nil if none was found
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
793 (let (enclosingp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
794 (while (and state (not enclosingp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
795 (setq enclosingp (car state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
796 state (cdr state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
797 (if (consp enclosingp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
798 (setq enclosingp nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
799 (if (> (point-min) enclosingp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
800 (setq enclosingp nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
801 (setq state nil)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
802 enclosingp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
803
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
804 (defun c-least-enclosing-brace (state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
805 ;; return the bufpos of the least (highest) enclosing brace that
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
806 ;; hasn't been narrowed out by any enclosing class, or nil if none
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
807 ;; was found.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
808 (c-most-enclosing-brace (nreverse state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
809
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
810 (defun c-safe-position (bufpos state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
811 ;; return the closest known safe position higher up than point
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
812 (let ((safepos nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
813 (while state
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
814 (setq safepos
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
815 (if (consp (car state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
816 (cdr (car state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
817 (car state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
818 (if (< safepos bufpos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
819 (setq state nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
820 (setq state (cdr state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
821 safepos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
822
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
823 (defun c-narrow-out-enclosing-class (state lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
824 ;; narrow the buffer so that the enclosing class is hidden
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
825 (let (inclass-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
826 (and state
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
827 (setq inclass-p (c-search-uplist-for-classkey state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
828 (narrow-to-region
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
829 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
830 (goto-char (1+ (aref inclass-p 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
831 (skip-chars-forward " \t\n" lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
832 ;; if point is now left of the class opening brace, we're
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
833 ;; hosed, so try a different tact
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
834 (if (<= (point) (aref inclass-p 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
835 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
836 (goto-char (1+ (aref inclass-p 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
837 (c-forward-syntactic-ws lim)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
838 (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
839 ;; end point is the end of the current line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
840 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
841 (goto-char lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
842 (c-point 'eol))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
843 ;; return the class vector
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
844 inclass-p))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
845
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
846
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
847 ;; This function implements the main decision tree for determining the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
848 ;; syntactic analysis of the current line of code. Yes, it's huge and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
849 ;; bloated!
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
850
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
851 (defun c-guess-basic-syntax ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
852 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
853 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
854 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
855 (let* ((indent-point (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
856 (case-fold-search nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
857 (fullstate (c-parse-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
858 (state fullstate)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
859 (in-method-intro-p (and (eq major-mode 'objc-mode)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
860 c-method-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
861 (looking-at c-method-key)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
862 literal containing-sexp char-before-ip char-after-ip lim
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
863 syntax placeholder c-in-literal-cache inswitch-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
864 injava-inher
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
865 ;; narrow out any enclosing class or extern "C" block
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
866 (inclass-p (c-narrow-out-enclosing-class state indent-point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
867 (inextern-p (and inclass-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
868 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
869 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
870 (widen)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
871 (goto-char (aref inclass-p 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
872 (looking-at "extern[^_]")))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
873 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
874
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
875 ;; get the buffer position of the most nested opening brace,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
876 ;; if there is one, and it hasn't been narrowed out
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
877 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
878 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
879 (skip-chars-forward " \t}")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
880 (skip-chars-backward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
881 (while (and state
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
882 (not in-method-intro-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
883 (not containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
884 (setq containing-sexp (car state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
885 state (cdr state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
886 (if (consp containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
887 ;; if cdr == point, then containing sexp is the brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
888 ;; that opens the sexp we close
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
889 (if (= (cdr containing-sexp) (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
890 (setq containing-sexp (car containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
891 ;; otherwise, ignore this element
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
892 (setq containing-sexp nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
893 ;; ignore the bufpos if its been narrowed out by the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
894 ;; containing class
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
895 (if (<= containing-sexp (point-min))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
896 (setq containing-sexp nil)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
897
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
898 ;; set the limit on the farthest back we need to search
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
899 (setq lim (or containing-sexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
900 (if (consp (car fullstate))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
901 (cdr (car fullstate))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
902 nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
903 (point-min)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
904
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
905 ;; cache char before and after indent point, and move point to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
906 ;; the most likely position to perform the majority of tests
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
907 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
908 (skip-chars-forward " \t")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
909 (setq char-after-ip (char-after))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
910 (c-backward-syntactic-ws lim)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
911 (setq char-before-ip (char-before))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
912 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
913 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
914
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
915 ;; are we in a literal?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
916 (setq literal (c-in-literal lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
917
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
918 ;; now figure out syntactic qualities of the current line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
919 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
920 ;; CASE 1: in a string.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
921 ((memq literal '(string))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
922 (c-add-syntax 'string (c-point 'bopl)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
923 ;; CASE 2: in a C or C++ style comment.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
924 ((memq literal '(c c++))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
925 ;; we need to catch multi-paragraph C comments
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
926 (while (and (zerop (forward-line -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
927 (looking-at "^[ \t]*$")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
928 (c-add-syntax literal (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
929 ;; CASE 3: in a cpp preprocessor
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
930 ((eq literal 'pound)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
931 (c-beginning-of-macro lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
932 (c-add-syntax 'cpp-macro (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
933 ;; CASE 4: in an objective-c method intro
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
934 (in-method-intro-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
935 (c-add-syntax 'objc-method-intro (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
936 ;; CASE 5: Line is at top level.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
937 ((null containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
938 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
939 ;; CASE 5A: we are looking at a defun, class, or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
940 ;; inline-inclass method opening brace
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
941 ((eq char-after-ip ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
942 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
943 ;; CASE 5A.1: extern declaration
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
944 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
945 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
946 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
947 (and (c-safe (progn (backward-sexp 2) t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
948 (looking-at "extern[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
949 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
950 (setq placeholder (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
951 (forward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
952 (c-forward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
953 (eq (char-after) ?\"))))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
954 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
955 (c-add-syntax 'extern-lang-open (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
956 ;; CASE 5A.2: we are looking at a class opening brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
957 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
958 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
959 (skip-chars-forward " \t{")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
960 ;; TBD: watch out! there could be a bogus
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
961 ;; c-state-cache in place when we get here. we have
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
962 ;; to go through much chicanery to ignore the cache.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
963 ;; But of course, there may not be! BLECH! BOGUS!
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
964 (let ((decl
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
965 (if (boundp 'c-state-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
966 (let ((old-cache c-state-cache))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
967 (prog2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
968 (makunbound 'c-state-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
969 (c-search-uplist-for-classkey (c-parse-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
970 (setq c-state-cache old-cache)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
971 (c-search-uplist-for-classkey (c-parse-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
972 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
973 (and decl
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
974 (setq placeholder (aref decl 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
975 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
976 (c-add-syntax 'class-open placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
977 ;; CASE 5A.3: brace list open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
978 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
979 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
980 ;; c-b-o-s could have left us at point-min
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
981 (and (bobp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
982 (c-forward-syntactic-ws indent-point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
983 (if (looking-at "typedef[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
984 (progn (forward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
985 (c-forward-syntactic-ws indent-point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
986 (setq placeholder (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
987 (and (or (looking-at "enum[ \t\n]+")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
988 (eq char-before-ip ?=))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
989 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
990 (skip-chars-forward "^;(" indent-point)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
991 (not (memq (char-after) '(?\; ?\()))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
992 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
993 (c-add-syntax 'brace-list-open placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
994 ;; CASE 5A.4: inline defun open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
995 ((and inclass-p (not inextern-p))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
996 (c-add-syntax 'inline-open)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
997 (c-add-syntax 'inclass (aref inclass-p 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
998 ;; CASE 5A.5: ordinary defun open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
999 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1000 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1001 (c-add-syntax 'defun-open (c-point 'bol))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1002 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1003 ;; CASE 5B: first K&R arg decl or member init
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1004 ((c-just-after-func-arglist-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1005 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1006 ;; CASE 5B.1: a member init
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1007 ((or (eq char-before-ip ?:)
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1008 (eq char-after-ip ?:))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1009 ;; this line should be indented relative to the beginning
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1010 ;; of indentation for the topmost-intro line that contains
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1011 ;; the prototype's open paren
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1012 ;; TBD: is the following redundant?
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1013 (if (eq char-before-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1014 (forward-char -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1015 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1016 ;; TBD: is the preceding redundant?
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1017 (if (eq (char-before) ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1018 (progn (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1019 (c-backward-syntactic-ws lim)))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1020 (if (eq (char-before) ?\))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1021 (backward-sexp 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1022 (setq placeholder (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1023 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1024 (and (c-safe (backward-sexp 1) t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1025 (looking-at "throw[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1026 (c-safe (backward-sexp 1) t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1027 (setq placeholder (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1028 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1029 (c-add-syntax 'member-init-intro (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1030 ;; we don't need to add any class offset since this
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1031 ;; should be relative to the ctor's indentation
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1032 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1033 ;; CASE 5B.2: K&R arg decl intro
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1034 (c-recognize-knr-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1035 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1036 (and inclass-p (c-add-syntax 'inclass (aref inclass-p 0))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1037 ;; CASE 5B.3: Nether region after a C++ or Java func
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1038 ;; decl, which could include a `throws' declaration.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1039 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1040 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1041 (c-add-syntax 'func-decl-cont (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1042 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1043 ;; CASE 5C: inheritance line. could be first inheritance
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1044 ;; line, or continuation of a multiple inheritance
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1045 ((or (and c-baseclass-key (looking-at c-baseclass-key))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1046 (and (or (eq char-before-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1047 ;; watch out for scope operator
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1048 (save-excursion
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1049 (and (eq char-after-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1050 (c-safe (progn (forward-char 1) t))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1051 (not (eq (char-after) ?:))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1052 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1053 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1054 (c-backward-syntactic-ws lim)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1055 (if (eq char-before-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1056 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1057 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1058 (c-backward-syntactic-ws lim)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1059 (back-to-indentation)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1060 (looking-at c-class-key)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1061 ;; for Java
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1062 (and (eq major-mode 'java-mode)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1063 (let ((fence (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1064 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1065 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1066 cont done)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1067 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1068 (while (not done)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1069 (cond ((looking-at c-Java-special-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1070 (setq injava-inher (cons cont (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1071 done t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1072 ((or (not (c-safe (forward-sexp -1) t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1073 (<= (point) fence))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1074 (setq done t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1075 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1076 (setq cont t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1077 injava-inher)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1078 (not (c-crosses-statement-barrier-p (cdr injava-inher)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1079 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1080 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1081 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1082 ;; CASE 5C.1: non-hanging colon on an inher intro
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1083 ((eq char-after-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1084 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1085 (c-add-syntax 'inher-intro (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1086 ;; don't add inclass symbol since relative point already
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1087 ;; contains any class offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1088 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1089 ;; CASE 5C.2: hanging colon on an inher intro
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1090 ((eq char-before-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1091 (c-add-syntax 'inher-intro (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1092 (and inclass-p (c-add-syntax 'inclass (aref inclass-p 0))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1093 ;; CASE 5C.3: in a Java implements/extends
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1094 (injava-inher
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1095 (let ((where (cdr injava-inher))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1096 (cont (car injava-inher)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1097 (goto-char where)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1098 (cond ((looking-at "throws[ \t\n]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1099 (c-add-syntax 'func-decl-cont
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1100 (progn (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1101 (c-point 'boi))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1102 (cont (c-add-syntax 'inher-cont where))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1103 (t (c-add-syntax 'inher-intro
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1104 (progn (goto-char (cdr injava-inher))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1105 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1106 (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1107 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1108 ;; CASE 5C.4: a continued inheritance line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1109 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1110 (c-beginning-of-inheritance-list lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1111 (c-add-syntax 'inher-cont (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1112 ;; don't add inclass symbol since relative point already
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1113 ;; contains any class offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1114 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1115 ;; CASE 5D: this could be a top-level compound statement or a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1116 ;; member init list continuation
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1117 ((eq char-before-ip ?,)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1118 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1119 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1120 (while (and (< lim (point))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1121 (eq (char-before) ?,))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1122 ;; this will catch member inits with multiple
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1123 ;; line arglists
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1124 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1125 (c-backward-syntactic-ws (c-point 'bol))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1126 (if (eq (char-before) ?\))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1127 (backward-sexp 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1128 ;; now continue checking
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1129 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1130 (c-backward-syntactic-ws lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1131 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1132 ;; CASE 5D.1: hanging member init colon, but watch out
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1133 ;; for bogus matches on access specifiers inside classes.
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1134 ((and (eq (char-before) ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1135 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1136 (forward-word -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1137 (not (looking-at c-access-key))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1138 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1139 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1140 (c-safe (backward-sexp 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1141 (c-add-syntax 'member-init-cont (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1142 ;; we do not need to add class offset since relative
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1143 ;; point is the member init above us
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1144 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1145 ;; CASE 5D.2: non-hanging member init colon
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1146 ((progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1147 (c-forward-syntactic-ws indent-point)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1148 (eq (char-after) ?:))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1149 (skip-chars-forward " \t:")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1150 (c-add-syntax 'member-init-cont (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1151 ;; CASE 5D.3: perhaps a multiple inheritance line?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1152 ((looking-at c-inher-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1153 (c-add-syntax 'inher-cont (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1154 ;; CASE 5D.4: perhaps a template list continuation?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1155 ((save-excursion
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
1156 (goto-char indent-point)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1157 (skip-chars-backward "^<" lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1158 ;; not sure if this is the right test, but it should
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1159 ;; be fast and mostly accurate.
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1160 (and (eq (char-before) ?<)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1161 (not (c-in-literal lim))))
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
1162 ;; we can probably indent it just like an arglist-cont
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
1163 (c-add-syntax 'template-args-cont (point)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1164 ;; CASE 5D.5: perhaps a top-level statement-cont
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1165 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1166 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1167 ;; skip over any access-specifiers
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1168 (and inclass-p c-access-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1169 (while (looking-at c-access-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1170 (forward-line 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1171 ;; skip over comments, whitespace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1172 (c-forward-syntactic-ws indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1173 (c-add-syntax 'statement-cont (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1174 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1175 ;; CASE 5E: we are looking at a access specifier
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1176 ((and inclass-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1177 c-access-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1178 (looking-at c-access-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1179 (c-add-syntax 'access-label (c-point 'bonl))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1180 (c-add-syntax 'inclass (aref inclass-p 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1181 ;; CASE 5F: extern-lang-close?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1182 ((and inextern-p
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1183 (eq char-after-ip ?}))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1184 (c-add-syntax 'extern-lang-close (aref inclass-p 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1185 ;; CASE 5G: we are looking at the brace which closes the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1186 ;; enclosing nested class decl
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1187 ((and inclass-p
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1188 (eq char-after-ip ?})
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1189 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1190 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1191 (widen)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1192 (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1193 (and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1194 (condition-case nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1195 (progn (backward-sexp 1) t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1196 (error nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1197 (= (point) (aref inclass-p 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1198 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1199 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1200 (widen)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1201 (goto-char (aref inclass-p 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1202 (c-add-syntax 'class-close (c-point 'boi))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1203 ;; CASE 5H: we could be looking at subsequent knr-argdecls
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1204 ((and c-recognize-knr-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1205 ;; here we essentially use the hack that is used in
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1206 ;; Emacs' c-mode.el to limit how far back we should
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1207 ;; look. The assumption is made that argdecls are
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1208 ;; indented at least one space and that function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1209 ;; headers are not indented.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1210 (let ((limit (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1211 (re-search-backward "^[^ \^L\t\n#]" nil 'move)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1212 (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1213 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1214 (c-backward-syntactic-ws limit)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1215 (setq placeholder (point))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1216 (while (and (memq (char-before) '(?\; ?,))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1217 (> (point) limit))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1218 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1219 (setq placeholder (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1220 (c-backward-syntactic-ws limit))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1221 (and (eq (char-before) ?\))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1222 (or (not c-method-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1223 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1224 (forward-sexp -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1225 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1226 (c-backward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1227 (not (or (memq (char-before) '(?- ?+))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1228 ;; or a class category
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1229 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1230 (forward-sexp -2)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1231 (looking-at c-class-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1232 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1233 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1234 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1235 (c-beginning-of-statement-1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1236 (not (looking-at "typedef[ \t\n]+"))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1237 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1238 (c-add-syntax 'knr-argdecl (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1239 ;; CASE 5I: we are at the topmost level, make sure we skip
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1240 ;; back past any access specifiers
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1241 ((progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1242 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1243 (while (and inclass-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1244 c-access-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1245 (not (bobp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1246 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1247 (c-safe (progn (backward-sexp 1) t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1248 (looking-at c-access-key)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1249 (backward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1250 (c-backward-syntactic-ws lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1251 (or (bobp)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1252 (memq (char-before) '(?\; ?\}))))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1253 ;; real beginning-of-line could be narrowed out due to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1254 ;; enclosure in a class block
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1255 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1256 (widen)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1257 (c-add-syntax 'topmost-intro (c-point 'bol))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1258 (if inclass-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1259 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1260 (goto-char (aref inclass-p 1))
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
1261 (or (= (point) (c-point 'boi))
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
1262 (goto-char (aref inclass-p 0)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1263 (if inextern-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1264 (c-add-syntax 'inextern-lang)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1265 (c-add-syntax 'inclass (c-point 'boi)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1266 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1267 ;; CASE 5J: we are at an ObjC or Java method definition
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1268 ;; continuation line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1269 ((and c-method-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1270 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1271 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1272 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1273 (looking-at c-method-key)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1274 (c-add-syntax 'objc-method-args-cont (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1275 ;; CASE 5K: we are at a topmost continuation line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1276 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1277 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1278 (c-forward-syntactic-ws)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1279 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1280 )) ; end CASE 5
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1281 ;; CASE 6: line is an expression, not a statement. Most
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1282 ;; likely we are either in a function prototype or a function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1283 ;; call argument list
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1284 ((not (eq (char-after containing-sexp) ?{))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1285 (c-backward-syntactic-ws containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1286 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1287 ;; CASE 6A: we are looking at the arglist closing paren
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1288 ((and (not (eq char-before-ip ?,))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1289 (memq char-after-ip '(?\) ?\])))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1290 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1291 (c-add-syntax 'arglist-close (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1292 ;; CASE 6B: we are looking at the first argument in an empty
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1293 ;; argument list. Use arglist-close if we're actually
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1294 ;; looking at a close paren or bracket.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1295 ((memq char-before-ip '(?\( ?\[))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1296 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1297 (c-add-syntax 'arglist-intro (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1298 ;; CASE 6C: we are inside a conditional test clause. treat
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1299 ;; these things as statements
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1300 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1301 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1302 (and (c-safe (progn (forward-sexp -1) t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1303 (looking-at "\\<for\\>[^_]")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1304 (goto-char (1+ containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1305 (c-forward-syntactic-ws indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1306 (c-beginning-of-statement-1 containing-sexp)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1307 (if (eq char-before-ip ?\;)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1308 (c-add-syntax 'statement (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1309 (c-add-syntax 'statement-cont (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1310 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1311 ;; CASE 6D: maybe a continued method call. This is the case
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1312 ;; when we are inside a [] bracketed exp, and what precede
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1313 ;; the opening bracket is not an identifier.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1314 ((and c-method-key
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1315 (eq (char-after containing-sexp) ?\[)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1316 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1317 (goto-char (1- containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1318 (c-backward-syntactic-ws (c-point 'bod))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1319 (if (not (looking-at c-symbol-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1320 (c-add-syntax 'objc-method-call-cont containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1321 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1322 ;; CASE 6E: we are looking at an arglist continuation line,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1323 ;; but the preceding argument is on the same line as the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1324 ;; opening paren. This case includes multi-line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1325 ;; mathematical paren groupings, but we could be on a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1326 ;; for-list continuation line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1327 ((and (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1328 (goto-char (1+ containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1329 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1330 (not (eolp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1331 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1332 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1333 (skip-chars-backward " \t([")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1334 (<= (point) containing-sexp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1335 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1336 (c-add-syntax 'arglist-cont-nonempty (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1337 ;; CASE 6F: we are looking at just a normal arglist
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1338 ;; continuation line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1339 (t (c-beginning-of-statement-1 containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1340 (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1341 (c-forward-syntactic-ws indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1342 (c-add-syntax 'arglist-cont (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1343 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1344 ;; CASE 7: func-local multi-inheritance line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1345 ((and c-baseclass-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1346 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1347 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1348 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1349 (looking-at c-baseclass-key)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1350 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1351 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1352 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1353 ;; CASE 7A: non-hanging colon on an inher intro
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1354 ((eq char-after-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1355 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1356 (c-add-syntax 'inher-intro (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1357 ;; CASE 7B: hanging colon on an inher intro
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1358 ((eq char-before-ip ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1359 (c-add-syntax 'inher-intro (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1360 ;; CASE 7C: a continued inheritance line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1361 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1362 (c-beginning-of-inheritance-list lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1363 (c-add-syntax 'inher-cont (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1364 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1365 ;; CASE 8: we are inside a brace-list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1366 ((setq placeholder (c-inside-bracelist-p containing-sexp state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1367 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1368 ;; CASE 8A: brace-list-close brace
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1369 ((and (eq char-after-ip ?})
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1370 (c-safe (progn (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1371 (backward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1372 t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1373 (= (point) containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1374 (c-add-syntax 'brace-list-close (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1375 ;; CASE 8B: we're looking at the first line in a brace-list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1376 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1377 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1378 (c-backward-syntactic-ws containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1379 (= (point) (1+ containing-sexp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1380 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1381 (c-add-syntax 'brace-list-intro (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1382 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1383 ;;)) ; end CASE 8B
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1384 ;; CASE 8C: this is just a later brace-list-entry
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1385 (t (goto-char (1+ containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1386 (c-forward-syntactic-ws indent-point)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1387 (if (eq char-after-ip ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1388 (c-add-syntax 'brace-list-open (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1389 (c-add-syntax 'brace-list-entry (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1390 )) ; end CASE 8C
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1391 )) ; end CASE 8
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1392 ;; CASE 9: A continued statement
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1393 ((and (not (memq char-before-ip '(?\; ?} ?:)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1394 (> (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1395 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1396 (c-beginning-of-statement-1 containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1397 (setq placeholder (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1398 (/= placeholder containing-sexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1399 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1400 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1401 (let ((after-cond-placeholder
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1402 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1403 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1404 (if (looking-at c-conditional-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1405 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1406 (c-safe (c-skip-conditional))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1407 (c-forward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1408 (if (eq (char-after) ?\;)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1409 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1410 (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1411 (c-forward-syntactic-ws)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1412 (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1413 nil))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1414 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1415 ;; CASE 9A: substatement
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1416 ((and after-cond-placeholder
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1417 (>= after-cond-placeholder indent-point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1418 (goto-char placeholder)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1419 (if (eq char-after-ip ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1420 (c-add-syntax 'substatement-open (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1421 (c-add-syntax 'substatement (c-point 'boi))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1422 ;; CASE 9B: open braces for class or brace-lists
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1423 ((eq char-after-ip ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1424 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1425 ;; CASE 9B.1: class-open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1426 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1427 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1428 (skip-chars-forward " \t{")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1429 (let ((decl (c-search-uplist-for-classkey (c-parse-state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1430 (and decl
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1431 (setq placeholder (aref decl 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1432 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1433 (c-add-syntax 'class-open placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1434 ;; CASE 9B.2: brace-list-open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1435 ((or (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1436 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1437 (looking-at "\\<enum\\>"))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1438 (eq char-before-ip ?=))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1439 (c-add-syntax 'brace-list-open placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1440 ;; CASE 9B.3: catch-all for unknown construct.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1441 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1442 ;; Can and should I add an extensibility hook here?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1443 ;; Something like c-recognize-hook so support for
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1444 ;; unknown constructs could be added. It's probably a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1445 ;; losing proposition, so I dunno.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1446 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1447 (c-add-syntax 'statement-cont (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1448 (c-add-syntax 'block-open))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1449 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1450 ;; CASE 9C: iostream insertion or extraction operator
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1451 ((looking-at "<<\\|>>")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1452 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1453 (and after-cond-placeholder
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1454 (goto-char after-cond-placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1455 (while (and (re-search-forward "<<\\|>>" indent-point 'move)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1456 (c-in-literal placeholder)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1457 ;; if we ended up at indent-point, then the first
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1458 ;; streamop is on a separate line. Indent the line like
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1459 ;; a statement-cont instead
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1460 (if (/= (point) indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1461 (c-add-syntax 'stream-op (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1462 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1463 (c-add-syntax 'statement-cont (c-point 'boi))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1464 ;; CASE 9D: continued statement. find the accurate
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1465 ;; beginning of statement or substatement
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1466 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1467 (c-beginning-of-statement-1 after-cond-placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1468 ;; KLUDGE ALERT! c-beginning-of-statement-1 can leave
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1469 ;; us before the lim we're passing in. It should be
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1470 ;; fixed, but I'm worried about side-effects at this
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1471 ;; late date. Fix for v5.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1472 (goto-char (or (and after-cond-placeholder
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1473 (max after-cond-placeholder (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1474 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1475 (c-add-syntax 'statement-cont (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1476 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1477 ;; CASE 10: an else clause?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1478 ((looking-at "\\<else\\>[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1479 (c-backward-to-start-of-if containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1480 (c-add-syntax 'else-clause (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1481 ;; CASE 11: Statement. But what kind? Lets see if its a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1482 ;; while closure of a do/while construct
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1483 ((progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1484 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1485 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1486 (and (looking-at "while\\b[^_]")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1487 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1488 (c-backward-to-start-of-do containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1489 (setq placeholder (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1490 (looking-at "do\\b[^_]"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1491 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1492 (c-add-syntax 'do-while-closure placeholder))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1493 ;; CASE 12: A case or default label
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1494 ((looking-at c-switch-label-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1495 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1496 ;; check for hanging braces
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1497 (if (/= (point) (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1498 (forward-sexp -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1499 (c-add-syntax 'case-label (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1500 ;; CASE 13: any other label
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1501 ((looking-at c-label-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1502 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1503 (c-add-syntax 'label (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1504 ;; CASE 14: block close brace, possibly closing the defun or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1505 ;; the class
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1506 ((eq char-after-ip ?})
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1507 (let* ((lim (c-safe-position containing-sexp fullstate))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1508 (relpos (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1509 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1510 (if (/= (point) (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1511 (c-beginning-of-statement-1 lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1512 (c-point 'boi))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1513 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1514 ;; CASE 14A: does this close an inline?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1515 ((let ((inclass-p (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1516 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1517 (c-search-uplist-for-classkey state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1518 ;; inextern-p in higher level let*
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1519 (setq inextern-p (and inclass-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1520 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1521 (goto-char (aref inclass-p 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1522 (looking-at "extern[^_]"))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1523 (and inclass-p (not inextern-p)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1524 (c-add-syntax 'inline-close relpos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1525 ;; CASE 14B: if there an enclosing brace that hasn't
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1526 ;; been narrowed out by a class, then this is a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1527 ;; block-close
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1528 ((and (not inextern-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1529 (c-most-enclosing-brace state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1530 (c-add-syntax 'block-close relpos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1531 ;; CASE 14C: find out whether we're closing a top-level
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1532 ;; class or a defun
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1533 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1534 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1535 (narrow-to-region (point-min) indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1536 (let ((decl (c-search-uplist-for-classkey (c-parse-state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1537 (if decl
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1538 (c-add-syntax 'class-close (aref decl 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1539 (c-add-syntax 'defun-close relpos)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1540 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1541 ;; CASE 15: statement catchall
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1542 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1543 ;; we know its a statement, but we need to find out if it is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1544 ;; the first statement in a block
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1545 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1546 (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1547 (c-forward-syntactic-ws indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1548 ;; now skip forward past any case/default clauses we might find.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1549 (while (or (c-skip-case-statement-forward fullstate indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1550 (and (looking-at c-switch-label-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1551 (not inswitch-p)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1552 (setq inswitch-p t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1553 ;; we want to ignore non-case labels when skipping forward
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1554 (while (and (looking-at c-label-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1555 (goto-char (match-end 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1556 (c-forward-syntactic-ws indent-point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1557 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1558 ;; CASE 15A: we are inside a case/default clause inside a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1559 ;; switch statement. find out if we are at the statement
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1560 ;; just after the case/default label.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1561 ((and inswitch-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1562 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1563 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1564 (c-backward-syntactic-ws containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1565 (back-to-indentation)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1566 (setq placeholder (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1567 (looking-at c-switch-label-key)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1568 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1569 (skip-chars-forward " \t")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1570 (if (eq (char-after) ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1571 (c-add-syntax 'statement-case-open placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1572 (c-add-syntax 'statement-case-intro placeholder)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1573 ;; CASE 15B: continued statement
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1574 ((eq char-before-ip ?,)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1575 (c-add-syntax 'statement-cont (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1576 ;; CASE 15C: a question/colon construct? But make sure
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1577 ;; what came before was not a label, and what comes after
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1578 ;; is not a globally scoped function call!
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1579 ((or (and (memq char-before-ip '(?: ??))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1580 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1581 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1582 (c-backward-syntactic-ws lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1583 (back-to-indentation)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1584 (not (looking-at c-label-key))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1585 (and (memq char-after-ip '(?: ??))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1586 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1587 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1588 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1589 ;; watch out for scope operator
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1590 (not (looking-at "::")))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1591 (c-add-syntax 'statement-cont (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1592 ;; CASE 15D: any old statement
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1593 ((< (point) indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1594 (let ((safepos (c-most-enclosing-brace fullstate))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1595 relpos done)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1596 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1597 (c-beginning-of-statement-1 safepos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1598 ;; It is possible we're on the brace that opens a nested
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1599 ;; function.
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1600 (if (and (eq (char-after) ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1601 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1602 (c-backward-syntactic-ws safepos)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1603 (not (eq (char-before) ?\;))))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1604 (c-beginning-of-statement-1 safepos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1605 (if (and inswitch-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1606 (looking-at c-switch-label-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1607 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1608 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1609 (end-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1610 (forward-sexp -1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1611 (setq relpos (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1612 (while (and (not done)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1613 (<= safepos (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1614 (/= relpos (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1615 (c-beginning-of-statement-1 safepos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1616 (if (= relpos (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1617 (setq done t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1618 (setq relpos (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1619 (c-add-syntax 'statement relpos)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1620 (if (eq char-after-ip ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1621 (c-add-syntax 'block-open))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1622 ;; CASE 15E: first statement in an inline, or first
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1623 ;; statement in a top-level defun. we can tell this is it
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1624 ;; if there are no enclosing braces that haven't been
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1625 ;; narrowed out by a class (i.e. don't use bod here!)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1626 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1627 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1628 (widen)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1629 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1630 (c-narrow-out-enclosing-class state containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1631 (not (c-most-enclosing-brace state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1632 (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1633 ;; if not at boi, then defun-opening braces are hung on
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1634 ;; right side, so we need a different relpos
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1635 (if (/= (point) (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1636 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1637 (c-backward-syntactic-ws)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1638 (c-safe (forward-sexp (if (eq (char-before) ?\))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1639 -1 -2)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1640 ;; looking at a Java throws clause following a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1641 ;; method's parameter list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1642 (c-beginning-of-statement-1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1643 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1644 (c-add-syntax 'defun-block-intro (c-point 'boi)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1645 ;; CASE 15F: first statement in a block
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1646 (t (goto-char containing-sexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1647 (if (/= (point) (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1648 (c-beginning-of-statement-1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1649 (if (= (point) lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1650 (c-safe-position (point) state) lim)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1651 (c-add-syntax 'statement-block-intro (c-point 'boi))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1652 (if (eq char-after-ip ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1653 (c-add-syntax 'block-open)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1654 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1655 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1656
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1657 ;; now we need to look at any modifiers
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1658 (goto-char indent-point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1659 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1660 ;; are we looking at a comment only line?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1661 (if (looking-at c-comment-start-regexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1662 (c-add-syntax 'comment-intro))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1663 ;; we might want to give additional offset to friends (in C++).
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1664 (if (and (eq major-mode 'c++-mode)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1665 (looking-at c-C++-friend-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1666 (c-add-syntax 'friend))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1667 ;; return the syntax
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1668 syntax))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1669
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1670
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1671 (defun c-echo-parsing-error ()
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1672 (if (not c-parsing-error)
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1673 nil
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1674 (message "unbalanced close brace at bufpos %d -- INDENTATION IS SUSPECT!"
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1675 c-parsing-error)
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1676 (ding))
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1677 c-parsing-error)
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1678
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1679 ;; indent via syntactic language elements
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1680 (defun c-indent-line (&optional syntax)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1681 ;; indent the current line as C/C++/ObjC code. Optional SYNTAX is the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1682 ;; syntactic information for the current line. Returns the amount of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1683 ;; indentation change
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1684 (let* ((c-syntactic-context (or syntax (c-guess-basic-syntax)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1685 (pos (- (point-max) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1686 (indent (apply '+ (mapcar 'c-get-offset c-syntactic-context)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1687 (shift-amt (- (current-indentation) indent)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1688 (and c-echo-syntactic-information-p
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1689 (not (c-echo-parsing-error))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1690 (message "syntax: %s, indent= %d" c-syntactic-context indent))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1691 (if (zerop shift-amt)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1692 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1693 (delete-region (c-point 'bol) (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1694 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1695 (indent-to indent))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1696 (if (< (point) (c-point 'boi))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1697 (back-to-indentation)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1698 ;; If initial point was within line's indentation, position after
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1699 ;; the indentation. Else stay at same point in text.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1700 (if (> (- (point-max) pos) (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1701 (goto-char (- (point-max) pos)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1702 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1703 (run-hooks 'c-special-indent-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1704 shift-amt))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1705
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1706 (defun c-show-syntactic-information (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1707 "Show syntactic information for current line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1708 With universal argument, inserts the analysis as a comment on that line."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1709 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1710 (let ((syntax (c-guess-basic-syntax)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1711 (if (not (consp arg))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1712 (if (not (c-echo-parsing-error))
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1713 (message "syntactic analysis: %s" syntax))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1714 (indent-for-comment)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1715 (insert (format "%s" syntax))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1716 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1717 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1718
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1719
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1720 (provide 'cc-engine)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1721 ;;; cc-engine.el ends here