(getwd): If getcwd returns 0, we return 0.
[bpt/emacs.git] / lisp / progmodes / c-mode.el
CommitLineData
c0274f38 1;;; c-mode.el --- C code editing commands for Emacs
1586b965 2;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
3a801d0c 3
e5167999 4;; Maintainer: FSF
e5167999
ER
5;; Keywords: c
6
a17915dc
ER
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
e5167999 11;; the Free Software Foundation; either version 2, or (at your option)
a17915dc
ER
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to
21;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22
e41b2db1
ER
23;;; Commentary:
24
25;; A smart editing mode for C code. It knows a lot about C syntax and tries
26;; to position the curser according to C layout conventions. You can
27;; change the details of the layout style with option variables. Load it
28;; and do M-x describe-mode for details.
29
e5167999 30;;; Code:
a17915dc
ER
31
32(defvar c-mode-abbrev-table nil
33 "Abbrev table in use in C mode.")
34(define-abbrev-table 'c-mode-abbrev-table ())
35
36(defvar c-mode-map ()
37 "Keymap used in C mode.")
38(if c-mode-map
39 ()
40 (setq c-mode-map (make-sparse-keymap))
41 (define-key c-mode-map "{" 'electric-c-brace)
42 (define-key c-mode-map "}" 'electric-c-brace)
43 (define-key c-mode-map ";" 'electric-c-semi)
44 (define-key c-mode-map "#" 'electric-c-sharp-sign)
45 (define-key c-mode-map ":" 'electric-c-terminator)
46 (define-key c-mode-map "\e\C-h" 'mark-c-function)
47 (define-key c-mode-map "\e\C-q" 'indent-c-exp)
48 (define-key c-mode-map "\ea" 'c-beginning-of-statement)
49 (define-key c-mode-map "\ee" 'c-end-of-statement)
50 (define-key c-mode-map "\eq" 'c-fill-paragraph)
3c8aaef2
RS
51 (define-key c-mode-map "\C-c\C-n" 'c-forward-conditional)
52 (define-key c-mode-map "\C-c\C-p" 'c-backward-conditional)
53 (define-key c-mode-map "\C-c\C-u" 'c-up-conditional)
a17915dc
ER
54 (define-key c-mode-map "\177" 'backward-delete-char-untabify)
55 (define-key c-mode-map "\t" 'c-indent-command))
56
57;; cmacexp is lame because it uses no preprocessor symbols.
58;; It isn't very extensible either -- hardcodes /lib/cpp.
59(autoload 'c-macro-expand "cmacexp"
60 "Display the result of expanding all C macros occurring in the region.
61The expansion is entirely correct because it uses the C preprocessor."
62 t)
63
64(defvar c-mode-syntax-table nil
65 "Syntax table in use in C-mode buffers.")
66
67(if c-mode-syntax-table
68 ()
69 (setq c-mode-syntax-table (make-syntax-table))
70 (modify-syntax-entry ?\\ "\\" c-mode-syntax-table)
71 (modify-syntax-entry ?/ ". 14" c-mode-syntax-table)
72 (modify-syntax-entry ?* ". 23" c-mode-syntax-table)
73 (modify-syntax-entry ?+ "." c-mode-syntax-table)
74 (modify-syntax-entry ?- "." c-mode-syntax-table)
75 (modify-syntax-entry ?= "." c-mode-syntax-table)
76 (modify-syntax-entry ?% "." c-mode-syntax-table)
77 (modify-syntax-entry ?< "." c-mode-syntax-table)
78 (modify-syntax-entry ?> "." c-mode-syntax-table)
79 (modify-syntax-entry ?& "." c-mode-syntax-table)
80 (modify-syntax-entry ?| "." c-mode-syntax-table)
81 (modify-syntax-entry ?\' "\"" c-mode-syntax-table))
82
83(defconst c-indent-level 2
84 "*Indentation of C statements with respect to containing block.")
85(defconst c-brace-imaginary-offset 0
86 "*Imagined indentation of a C open brace that actually follows a statement.")
87(defconst c-brace-offset 0
88 "*Extra indentation for braces, compared with other text in same context.")
89(defconst c-argdecl-indent 5
90 "*Indentation level of declarations of C function arguments.")
91(defconst c-label-offset -2
92 "*Offset of C label lines and case statements relative to usual indentation.")
93(defconst c-continued-statement-offset 2
94 "*Extra indent for lines not starting new statements.")
95(defconst c-continued-brace-offset 0
96 "*Extra indent for substatements that start with open-braces.
97This is in addition to c-continued-statement-offset.")
98(defconst c-style-alist
99 '(("GNU"
100 (c-indent-level . 2)
101 (c-argdecl-indent . 5)
102 (c-brace-offset . 0)
103 (c-label-offset . -2)
104 (c-continued-statement-offset . 2))
105 ("K&R"
106 (c-indent-level . 5)
107 (c-argdecl-indent . 0)
108 (c-brace-offset . -5)
109 (c-label-offset . -5)
110 (c-continued-statement-offset . 5))
111 ("BSD"
112 (c-indent-level . 4)
113 (c-argdecl-indent . 4)
114 (c-brace-offset . -4)
115 (c-label-offset . -4)
116 (c-continued-statement-offset . 4))
ce4b7b02 117 ("C++"
2b529dd2
JB
118 (c-indent-level . 4)
119 (c-continued-statement-offset . 4)
120 (c-brace-offset . -4)
121 (c-argdecl-indent . 0)
122 (c-label-offset . -4)
123 (c-auto-newline . t))
a17915dc
ER
124 ("Whitesmith"
125 (c-indent-level . 4)
126 (c-argdecl-indent . 4)
127 (c-brace-offset . 0)
128 (c-label-offset . -4)
129 (c-continued-statement-offset . 4))))
130
131(defconst c-auto-newline nil
132 "*Non-nil means automatically newline before and after braces,
133and after colons and semicolons, inserted in C code.
134If you do not want a leading newline before braces then use:
5852d145 135 (define-key c-mode-map \"{\" 'electric-c-semi)")
a17915dc
ER
136
137(defconst c-tab-always-indent t
138 "*Non-nil means TAB in C mode should always reindent the current line,
139regardless of where in the line point is when the TAB command is used.")
3a65941e
JB
140
141;;; Regular expression used internally to recognize labels in switch
142;;; statements.
143(defconst c-switch-label-regexp "case[ \t'/(]\\|default\\(\\S_\\|'\\)")
144
a17915dc 145\f
a17915dc
ER
146(defun c-mode ()
147 "Major mode for editing C code.
148Expression and list commands understand all C brackets.
149Tab indents for C code.
150Comments are delimited with /* ... */.
151Paragraphs are separated by blank lines only.
152Delete converts tabs to spaces as it moves back.
153\\{c-mode-map}
154Variables controlling indentation style:
155 c-tab-always-indent
156 Non-nil means TAB in C mode should always reindent the current line,
157 regardless of where in the line point is when the TAB command is used.
158 c-auto-newline
159 Non-nil means automatically newline before and after braces,
160 and after colons and semicolons, inserted in C code.
161 c-indent-level
162 Indentation of C statements within surrounding block.
163 The surrounding block's indentation is the indentation
164 of the line on which the open-brace appears.
165 c-continued-statement-offset
166 Extra indentation given to a substatement, such as the
167 then-clause of an if or body of a while.
168 c-continued-brace-offset
169 Extra indentation given to a brace that starts a substatement.
170 This is in addition to c-continued-statement-offset.
171 c-brace-offset
172 Extra indentation for line if it starts with an open brace.
173 c-brace-imaginary-offset
174 An open brace following other text is treated as if it were
175 this far to the right of the start of its line.
176 c-argdecl-indent
177 Indentation level of declarations of C function arguments.
178 c-label-offset
179 Extra indentation for line that is a label, or case or default.
180
181Settings for K&R and BSD indentation styles are
182 c-indent-level 5 8
183 c-continued-statement-offset 5 8
184 c-brace-offset -5 -8
185 c-argdecl-indent 0 8
186 c-label-offset -5 -8
187
188Turning on C mode calls the value of the variable c-mode-hook with no args,
189if that value is non-nil."
190 (interactive)
191 (kill-all-local-variables)
192 (use-local-map c-mode-map)
193 (setq major-mode 'c-mode)
194 (setq mode-name "C")
195 (setq local-abbrev-table c-mode-abbrev-table)
196 (set-syntax-table c-mode-syntax-table)
197 (make-local-variable 'paragraph-start)
198 (setq paragraph-start (concat "^$\\|" page-delimiter))
199 (make-local-variable 'paragraph-separate)
200 (setq paragraph-separate paragraph-start)
201 (make-local-variable 'paragraph-ignore-fill-prefix)
202 (setq paragraph-ignore-fill-prefix t)
203 (make-local-variable 'indent-line-function)
204 (setq indent-line-function 'c-indent-line)
205 (make-local-variable 'indent-region-function)
206 (setq indent-region-function 'c-indent-region)
207 (make-local-variable 'require-final-newline)
208 (setq require-final-newline t)
209 (make-local-variable 'comment-start)
210 (setq comment-start "/* ")
211 (make-local-variable 'comment-end)
212 (setq comment-end " */")
213 (make-local-variable 'comment-column)
214 (setq comment-column 32)
215 (make-local-variable 'comment-start-skip)
216 (setq comment-start-skip "/\\*+ *")
e41b2db1
ER
217 (make-local-variable 'comment-indent-function)
218 (setq comment-indent-function 'c-comment-indent)
a17915dc
ER
219 (make-local-variable 'parse-sexp-ignore-comments)
220 (setq parse-sexp-ignore-comments t)
221 (run-hooks 'c-mode-hook))
222\f
223;; This is used by indent-for-comment
224;; to decide how much to indent a comment in C code
225;; based on its context.
226(defun c-comment-indent ()
227 (if (looking-at "^/\\*")
228 0 ;Existing comment at bol stays there.
229 (let ((opoint (point)))
230 (save-excursion
231 (beginning-of-line)
232 (cond ((looking-at "[ \t]*}[ \t]*\\($\\|/\\*\\)")
233 ;; A comment following a solitary close-brace
234 ;; should have only one space.
235 (search-forward "}")
236 (1+ (current-column)))
237 ((or (looking-at "^#[ \t]*endif[ \t]*")
238 (looking-at "^#[ \t]*else[ \t]*"))
239 7) ;2 spaces after #endif
240 ((progn
241 (goto-char opoint)
242 (skip-chars-backward " \t")
243 (and (= comment-column 0) (bolp)))
244 ;; If comment-column is 0, and nothing but space
245 ;; before the comment, align it at 0 rather than 1.
246 0)
247 (t
248 (max (1+ (current-column)) ;Else indent at comment column
249 comment-column))))))) ; except leave at least one space.
250
251(defun c-fill-paragraph (&optional arg)
252 "Like \\[fill-paragraph] but handle C comments.
c9c56492
RS
253If any of the current line is a comment or within a comment,
254fill the comment or the paragraph of it that point is in,
255preserving the comment indentation or line-starting decorations."
a17915dc 256 (interactive "P")
6cf42072
RS
257 (let* (comment-start-place
258 (first-line
259 ;; Check for obvious entry to comment.
260 (save-excursion
261 (beginning-of-line)
8931ecc0 262 (skip-chars-forward " \t\n")
6cf42072
RS
263 (and (looking-at comment-start-skip)
264 (setq comment-start-place (point))))))
a17915dc 265 (if (or first-line
6ec3899e
RS
266 ;; t if we enter a comment between start of function and this line.
267 (eq (calculate-c-indent) t)
c9c56492 268 ;; t if this line contains a comment starter.
f37dc9fb 269 (setq first-line
8931ecc0
JB
270 (save-excursion
271 (beginning-of-line)
272 (prog1
273 (re-search-forward comment-start-skip
274 (save-excursion (end-of-line)
275 (point))
276 t)
277 (setq comment-start-place (point))))))
a17915dc
ER
278 ;; Inside a comment: fill one comment paragraph.
279 (let ((fill-prefix
280 ;; The prefix for each line of this paragraph
281 ;; is the appropriate part of the start of this line,
282 ;; up to the column at which text should be indented.
283 (save-excursion
284 (beginning-of-line)
285 (if (looking-at "[ \t]*/\\*.*\\*/")
286 (progn (re-search-forward comment-start-skip)
287 (make-string (current-column) ?\ ))
288 (if first-line (forward-line 1))
8931ecc0
JB
289
290 (let ((line-width (progn (end-of-line) (current-column))))
291 (beginning-of-line)
292 (prog1
293 (buffer-substring
294 (point)
295
296 ;; How shall we decide where the end of the
297 ;; fill-prefix is?
298 ;; calculate-c-indent-within-comment bases its value
299 ;; on the indentation of previous lines; if they're
300 ;; indented specially, it could return a column
301 ;; that's well into the current line's text. So
302 ;; we'll take at most that many space, tab, or *
303 ;; characters, and use that as our fill prefix.
304 (let ((max-prefix-end
305 (progn
306 (move-to-column
307 (calculate-c-indent-within-comment t)
308 t)
309 (point))))
310 (beginning-of-line)
311 (skip-chars-forward " \t*" max-prefix-end)
312 (point)))
313
314 ;; If the comment is only one line followed by a blank
315 ;; line, calling move-to-column above may have added
316 ;; some spaces and tabs to the end of the line; the
317 ;; fill-paragraph function will then delete it and the
318 ;; newline following it, so we'll lose a blank line
319 ;; when we shouldn't. So delete anything
320 ;; move-to-column added to the end of the line. We
321 ;; record the line width instead of the position of the
322 ;; old line end because move-to-column might break a
323 ;; tab into spaces, and the new characters introduced
324 ;; there shouldn't be deleted.
325
326 ;; If you can see a better way to do this, please make
327 ;; the change. This seems very messy to me.
328 (delete-region (progn (move-to-column line-width)
329 (point))
330 (progn (end-of-line) (point))))))))
331
a17915dc
ER
332 (paragraph-start
333 ;; Lines containing just a comment start or just an end
334 ;; should not be filled into paragraphs they are next to.
dbc4e1c1
JB
335 (concat
336 paragraph-start
337 "\\|^[ \t]*/\\*[ \t]*$\\|^[ \t]*\\*/[ \t]*$\\|^[ \t/*]*$"))
a17915dc 338 (paragraph-separate
dbc4e1c1
JB
339 (concat
340 paragraph-separate
341 "\\|^[ \t]*/\\*[ \t]*$\\|^[ \t]*\\*/[ \t]*$\\|^[ \t/*]*$"))
f37dc9fb 342 (chars-to-delete 0))
a17915dc
ER
343 (save-restriction
344 ;; Don't fill the comment together with the code following it.
6cf42072
RS
345 ;; So temporarily exclude everything before the comment start,
346 ;; and everything after the line where the comment ends.
347 ;; If comment-start-place is non-nil, the comment starter is there.
348 ;; Otherwise, point is inside the comment.
f37dc9fb
RS
349 (narrow-to-region (save-excursion
350 (if comment-start-place
351 (goto-char comment-start-place)
352 (search-backward "/*"))
353 ;; Protect text before the comment start
354 ;; by excluding it. Add spaces to bring back
355 ;; proper indentation of that point.
356 (let ((column (current-column)))
357 (prog1 (point)
358 (setq chars-to-delete column)
359 (insert-char ?\ column))))
a17915dc 360 (save-excursion
6cf42072
RS
361 (if comment-start-place
362 (goto-char (+ comment-start-place 2)))
a17915dc
ER
363 (search-forward "*/" nil 'move)
364 (forward-line 1)
365 (point)))
f37dc9fb 366
a17915dc
ER
367 (fill-paragraph arg)
368 (save-excursion
f37dc9fb
RS
369 ;; Delete the chars we inserted to avoid clobbering
370 ;; the stuff before the comment start.
371 (goto-char (point-min))
372 (if (> chars-to-delete 0)
373 (delete-region (point) (+ (point) chars-to-delete)))
6cf42072
RS
374 ;; Find the comment ender (should be on last line of buffer,
375 ;; given the narrowing) and don't leave it on its own line.
376 (goto-char (point-max))
377 (forward-line -1)
bc254115 378 (search-forward "*/" nil 'move)
a17915dc
ER
379 (beginning-of-line)
380 (if (looking-at "[ \t]*\\*/")
381 (delete-indentation)))))
382 ;; Outside of comments: do ordinary filling.
383 (fill-paragraph arg))))
384
385(defun electric-c-brace (arg)
386 "Insert character and correct line's indentation."
387 (interactive "P")
388 (let (insertpos)
389 (if (and (not arg)
390 (eolp)
391 (or (save-excursion
392 (skip-chars-backward " \t")
393 (bolp))
394 (if c-auto-newline (progn (c-indent-line) (newline) t) nil)))
395 (progn
396 (insert last-command-char)
397 (c-indent-line)
398 (if c-auto-newline
399 (progn
400 (newline)
401 ;; (newline) may have done auto-fill
402 (setq insertpos (- (point) 2))
403 (c-indent-line)))
404 (save-excursion
405 (if insertpos (goto-char (1+ insertpos)))
406 (delete-char -1))))
407 (if insertpos
408 (save-excursion
409 (goto-char insertpos)
410 (self-insert-command (prefix-numeric-value arg)))
411 (self-insert-command (prefix-numeric-value arg)))))
412
413(defun electric-c-sharp-sign (arg)
414 "Insert character and correct line's indentation."
415 (interactive "P")
416 (if (save-excursion
417 (skip-chars-backward " \t")
418 (bolp))
419 (let ((c-auto-newline nil))
420 (electric-c-terminator arg))
421 (self-insert-command (prefix-numeric-value arg))))
422
423(defun electric-c-semi (arg)
424 "Insert character and correct line's indentation."
425 (interactive "P")
426 (if c-auto-newline
427 (electric-c-terminator arg)
428 (self-insert-command (prefix-numeric-value arg))))
429
430(defun electric-c-terminator (arg)
431 "Insert character and correct line's indentation."
432 (interactive "P")
433 (let (insertpos (end (point)))
434 (if (and (not arg) (eolp)
435 (not (save-excursion
436 (beginning-of-line)
437 (skip-chars-forward " \t")
438 (or (= (following-char) ?#)
439 ;; Colon is special only after a label, or case ....
440 ;; So quickly rule out most other uses of colon
441 ;; and do no indentation for them.
442 (and (eq last-command-char ?:)
3a65941e 443 (not (looking-at c-switch-label-regexp))
a17915dc
ER
444 (save-excursion
445 (skip-chars-forward "a-zA-Z0-9_$")
446 (skip-chars-forward " \t")
447 (< (point) end)))
448 (progn
449 (beginning-of-defun)
450 (let ((pps (parse-partial-sexp (point) end)))
451 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))))
452 (progn
453 (insert last-command-char)
454 (c-indent-line)
455 (and c-auto-newline
456 (not (c-inside-parens-p))
457 (progn
458 (newline)
459 ;; (newline) may have done auto-fill
460 (setq insertpos (- (point) 2))
461 (c-indent-line)))
462 (save-excursion
463 (if insertpos (goto-char (1+ insertpos)))
464 (delete-char -1))))
465 (if insertpos
466 (save-excursion
467 (goto-char insertpos)
468 (self-insert-command (prefix-numeric-value arg)))
469 (self-insert-command (prefix-numeric-value arg)))))
470
471(defun c-inside-parens-p ()
472 (condition-case ()
473 (save-excursion
474 (save-restriction
475 (narrow-to-region (point)
476 (progn (beginning-of-defun) (point)))
477 (goto-char (point-max))
478 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
479 (error nil)))
480\f
481(defun c-indent-command (&optional whole-exp)
482 "Indent current line as C code, or in some cases insert a tab character.
483If `c-tab-always-indent' is non-nil (the default), always indent current line.
484Otherwise, indent the current line only if point is at the left margin or
485in the line's indentation; otherwise insert a tab.
486
487A numeric argument, regardless of its value, means indent rigidly all the
488lines of the expression starting after point so that this line becomes
489properly indented. The relative indentation among the lines of the
490expression are preserved."
491 (interactive "P")
492 (if whole-exp
493 ;; If arg, always indent this line as C
494 ;; and shift remaining lines of expression the same amount.
495 (let ((shift-amt (c-indent-line))
496 beg end)
497 (save-excursion
498 (if c-tab-always-indent
499 (beginning-of-line))
500 ;; Find beginning of following line.
501 (save-excursion
502 (forward-line 1) (setq beg (point)))
503 ;; Find first beginning-of-sexp for sexp extending past this line.
504 (while (< (point) beg)
505 (forward-sexp 1)
506 (setq end (point))
507 (skip-chars-forward " \t\n")))
508 (if (> end beg)
509 (indent-code-rigidly beg end shift-amt "#")))
510 (if (and (not c-tab-always-indent)
511 (save-excursion
512 (skip-chars-backward " \t")
513 (not (bolp))))
514 (insert-tab)
515 (c-indent-line))))
516
517(defun c-indent-line ()
518 "Indent current line as C code.
519Return the amount the indentation changed by."
520 (let ((indent (calculate-c-indent nil))
521 beg shift-amt
522 (case-fold-search nil)
523 (pos (- (point-max) (point))))
524 (beginning-of-line)
525 (setq beg (point))
526 (cond ((eq indent nil)
527 (setq indent (current-indentation)))
528 ((eq indent t)
529 (setq indent (calculate-c-indent-within-comment)))
530 ((looking-at "[ \t]*#")
531 (setq indent 0))
532 (t
533 (skip-chars-forward " \t")
534 (if (listp indent) (setq indent (car indent)))
3a65941e 535 (cond ((or (looking-at c-switch-label-regexp)
a17915dc
ER
536 (and (looking-at "[A-Za-z]")
537 (save-excursion
538 (forward-sexp 1)
539 (looking-at ":"))))
540 (setq indent (max 1 (+ indent c-label-offset))))
541 ((and (looking-at "else\\b")
542 (not (looking-at "else\\s_")))
543 (setq indent (save-excursion
544 (c-backward-to-start-of-if)
545 (current-indentation))))
546 ((looking-at "}[ \t]*else")
547 (setq indent (save-excursion
548 (forward-char)
549 (backward-sexp)
eca5b04c 550 (c-backward-to-start-of-if)
a17915dc
ER
551 (current-indentation))))
552 ((and (looking-at "while\\b")
553 (save-excursion
554 (c-backward-to-start-of-do)))
555 ;; This is a `while' that ends a do-while.
556 (setq indent (save-excursion
557 (c-backward-to-start-of-do)
558 (current-indentation))))
559 ((= (following-char) ?})
560 (setq indent (- indent c-indent-level)))
561 ((= (following-char) ?{)
562 (setq indent (+ indent c-brace-offset))))))
563 (skip-chars-forward " \t")
564 (setq shift-amt (- indent (current-column)))
565 (if (zerop shift-amt)
566 (if (> (- (point-max) pos) (point))
567 (goto-char (- (point-max) pos)))
568 (delete-region beg (point))
569 (indent-to indent)
570 ;; If initial point was within line's indentation,
571 ;; position after the indentation. Else stay at same point in text.
572 (if (> (- (point-max) pos) (point))
573 (goto-char (- (point-max) pos))))
574 shift-amt))
575
576(defun calculate-c-indent (&optional parse-start)
577 "Return appropriate indentation for current line as C code.
578In usual case returns an integer: the column to indent to.
579Returns nil if line starts inside a string, t if in a comment."
580 (save-excursion
581 (beginning-of-line)
582 (let ((indent-point (point))
583 (case-fold-search nil)
584 state
585 containing-sexp)
586 (if parse-start
587 (goto-char parse-start)
588 (beginning-of-defun))
589 (while (< (point) indent-point)
590 (setq parse-start (point))
591 (setq state (parse-partial-sexp (point) indent-point 0))
592 (setq containing-sexp (car (cdr state))))
593 (cond ((or (nth 3 state) (nth 4 state))
594 ;; return nil or t if should not change this line
595 (nth 4 state))
596 ((null containing-sexp)
597 ;; Line is at top level. May be data or function definition,
598 ;; or may be function argument declaration.
599 ;; Indent like the previous top level line
600 ;; unless that ends in a closeparen without semicolon,
601 ;; in which case this line is the first argument decl.
602 (goto-char indent-point)
603 (skip-chars-forward " \t")
604 (if (= (following-char) ?{)
605 0 ; Unless it starts a function body
606 (c-backward-to-noncomment (or parse-start (point-min)))
607 ;; Look at previous line that's at column 0
608 ;; to determine whether we are in top-level decls
609 ;; or function's arg decls. Set basic-indent accordingly.
610 (let ((basic-indent
611 (save-excursion
612 (re-search-backward "^[^ \^L\t\n#]" nil 'move)
c763f396 613 (let (comment lim)
6ec3899e
RS
614 ;; Recognize the DEFUN macro in Emacs.
615 (if (save-excursion
616 ;; Move down to the (putative) argnames line.
35a4d143
RS
617 (while (and (not (eobp))
618 (not (looking-at " *[({}#/]")))
6ec3899e
RS
619 (forward-line 1))
620 ;; Go back to the DEFUN, if it is one.
621 (condition-case nil
622 (backward-sexp 1)
623 (error))
624 (beginning-of-line)
6ec3899e
RS
625 (looking-at "DEFUN\\b"))
626 c-argdecl-indent
627 (if (and (looking-at "\\sw\\|\\s_")
791cc57d
RS
628 ;; This is careful to stop at the first
629 ;; paren if we have
630 ;; int foo Proto ((int, int));
631 (looking-at "[^\"\n=(]*(")
6ec3899e
RS
632 (progn
633 (goto-char (1- (match-end 0)))
634 (setq lim (point))
635 (condition-case nil
636 (forward-sexp 1)
637 (error))
638 (skip-chars-forward " \t\f")
639 (and (< (point) indent-point)
640 (not (memq (following-char)
641 '(?\, ?\;)))))
642 ;; Make sure the "function decl" we found
643 ;; is not inside a comment.
644 (progn
95d19fad
RS
645 ;; Move back to the `(' starting arglist
646 (goto-char lim)
6ec3899e
RS
647 (beginning-of-line)
648 (while (and (not comment)
649 (search-forward "/*" lim t))
650 (setq comment
651 (not (search-forward "*/" lim t))))
652 (not comment)))
653 c-argdecl-indent 0))))))
a17915dc
ER
654 basic-indent)))
655
656;; ;; Now add a little if this is a continuation line.
657;; (+ basic-indent (if (or (bobp)
658;; (memq (preceding-char) '(?\) ?\; ?\}))
659;; ;; Line with zero indentation
660;; ;; is probably the return-type
661;; ;; of a function definition,
662;; ;; so following line is function name.
663;; (= (current-indentation) 0))
664;; 0 c-continued-statement-offset))
665
666 ((/= (char-after containing-sexp) ?{)
667 ;; line is expression, not statement:
668 ;; indent to just after the surrounding open.
669 (goto-char (1+ containing-sexp))
670 (current-column))
671 (t
672 ;; Statement level. Is it a continuation or a new statement?
673 ;; Find previous non-comment character.
674 (goto-char indent-point)
675 (c-backward-to-noncomment containing-sexp)
676 ;; Back up over label lines, since they don't
677 ;; affect whether our line is a continuation.
678 (while (or (eq (preceding-char) ?\,)
679 (and (eq (preceding-char) ?:)
680 (or (eq (char-after (- (point) 2)) ?\')
681 (memq (char-syntax (char-after (- (point) 2)))
682 '(?w ?_)))))
683 (if (eq (preceding-char) ?\,)
684 (progn (forward-char -1)
685 (c-backward-to-start-of-continued-exp containing-sexp)))
686 (beginning-of-line)
687 (c-backward-to-noncomment containing-sexp))
688 ;; Check for a preprocessor statement or its continuation lines.
689 ;; Move back to end of previous non-preprocessor line.
690 (let ((found (point)) stop)
691 (while (not stop)
692 (cond ((save-excursion (end-of-line 0)
693 (= (preceding-char) ?\\))
694 (end-of-line 0))
695 ;; This line is not preceded by a backslash.
696 ;; So either it starts a preprocessor command
697 ;; or any following continuation lines
698 ;; should not be skipped.
699 ((progn (beginning-of-line) (= (following-char) ?#))
700 (end-of-line 0)
701 (setq found (point)))
702 (t (setq stop t))))
703 (goto-char found))
704 ;; Now we get the answer.
705 (if (and (not (memq (preceding-char) '(nil ?\, ?\; ?\} ?\{)))
706 ;; But don't treat a line with a close-brace
707 ;; as a continuation. It is probably the
708 ;; end of an enum type declaration.
709 (save-excursion
710 (goto-char indent-point)
711 (skip-chars-forward " \t")
712 (not (= (following-char) ?}))))
713 ;; This line is continuation of preceding line's statement;
714 ;; indent c-continued-statement-offset more than the
715 ;; previous line of the statement.
716 (progn
717 (c-backward-to-start-of-continued-exp containing-sexp)
718 (+ c-continued-statement-offset (current-column)
719 (if (save-excursion (goto-char indent-point)
720 (skip-chars-forward " \t")
721 (eq (following-char) ?{))
722 c-continued-brace-offset 0)))
723 ;; This line starts a new statement.
724 ;; Position following last unclosed open.
725 (goto-char containing-sexp)
726 ;; Is line first statement after an open-brace?
727 (or
728 ;; If no, find that first statement and indent like it.
729 (save-excursion
730 (forward-char 1)
731 (let ((colon-line-end 0))
732 (while (progn (skip-chars-forward " \t\n")
733 (looking-at "#\\|/\\*\\|case[ \t\n'/(].*:\\|[a-zA-Z0-9_$]*:"))
734 ;; Skip over comments and labels following openbrace.
735 (cond ((= (following-char) ?\#)
736 (forward-line 1))
737 ((= (following-char) ?\/)
738 (forward-char 2)
739 (search-forward "*/" nil 'move))
740 ;; case or label:
741 (t
742 (save-excursion (end-of-line)
743 (setq colon-line-end (point)))
744 (search-forward ":"))))
745 ;; The first following code counts
746 ;; if it is before the line we want to indent.
747 (and (< (point) indent-point)
1635fcdd
RS
748 (-
749 (if (> colon-line-end (point))
750 (- (current-indentation) c-label-offset)
751 (current-column))
752 ;; If prev stmt starts with open-brace, that
753 ;; open brace was offset by c-brace-offset.
754 ;; Compensate to get the column where
755 ;; an ordinary statement would start.
756 (if (= (following-char) ?\{) c-brace-offset 0)))))
a17915dc
ER
757 ;; If no previous statement,
758 ;; indent it relative to line brace is on.
759 ;; For open brace in column zero, don't let statement
760 ;; start there too. If c-indent-level is zero,
761 ;; use c-brace-offset + c-continued-statement-offset instead.
762 ;; For open-braces not the first thing in a line,
763 ;; add in c-brace-imaginary-offset.
764 (+ (if (and (bolp) (zerop c-indent-level))
765 (+ c-brace-offset c-continued-statement-offset)
766 c-indent-level)
767 ;; Move back over whitespace before the openbrace.
768 ;; If openbrace is not first nonwhite thing on the line,
769 ;; add the c-brace-imaginary-offset.
770 (progn (skip-chars-backward " \t")
771 (if (bolp) 0 c-brace-imaginary-offset))
772 ;; If the openbrace is preceded by a parenthesized exp,
773 ;; move to the beginning of that;
774 ;; possibly a different line
775 (progn
776 (if (eq (preceding-char) ?\))
777 (forward-sexp -1))
778 ;; Get initial indentation of the line we are on.
779 (current-indentation))))))))))
780
781(defun calculate-c-indent-within-comment (&optional after-star)
782 "Return the indentation amount for line inside a block comment.
783Optional arg AFTER-STAR means, if lines in the comment have a leading star,
784return the indentation of the text that would follow this star."
785 (let (end star-start)
786 (save-excursion
787 (beginning-of-line)
788 (skip-chars-forward " \t")
789 (setq star-start (= (following-char) ?\*))
790 (skip-chars-backward " \t\n")
791 (setq end (point))
792 (beginning-of-line)
793 (skip-chars-forward " \t")
794 (if after-star
795 (and (looking-at "\\*")
796 (re-search-forward "\\*[ \t]*")))
797 (and (re-search-forward "/\\*[ \t]*" end t)
798 star-start
799 (not after-star)
800 (goto-char (1+ (match-beginning 0))))
801 (if (and (looking-at "[ \t]*$") (= (preceding-char) ?\*))
802 (1+ (current-column))
803 (current-column)))))
804
805
806(defun c-backward-to-noncomment (lim)
807 (let (opoint stop)
808 (while (not stop)
809 (skip-chars-backward " \t\n\f" lim)
810 (setq opoint (point))
811 (if (and (>= (point) (+ 2 lim))
812 (save-excursion
813 (forward-char -2)
814 (looking-at "\\*/")))
815 (search-backward "/*" lim 'move)
816 (setq stop (or (<= (point) lim)
817 (save-excursion
818 (beginning-of-line)
819 (skip-chars-forward " \t")
820 (not (looking-at "#")))))
821 (or stop (beginning-of-line))))))
822
823(defun c-backward-to-start-of-continued-exp (lim)
824 (if (memq (preceding-char) '(?\) ?\"))
825 (forward-sexp -1))
826 (beginning-of-line)
827 (if (<= (point) lim)
828 (goto-char (1+ lim)))
829 (skip-chars-forward " \t"))
830
831(defun c-backward-to-start-of-if (&optional limit)
832 "Move to the start of the last \"unbalanced\" `if'."
833 (or limit (setq limit (save-excursion (beginning-of-defun) (point))))
834 (let ((if-level 1)
835 (case-fold-search nil))
836 (while (and (not (bobp)) (not (zerop if-level)))
837 (backward-sexp 1)
838 (cond ((looking-at "else\\b")
839 (setq if-level (1+ if-level)))
840 ((looking-at "if\\b")
841 (setq if-level (1- if-level)))
842 ((< (point) limit)
843 (setq if-level 0)
844 (goto-char limit))))))
845
846(defun c-backward-to-start-of-do (&optional limit)
847 "If point follows a `do' statement, move to beginning of it and return t.
848Otherwise return nil and don't move point."
849 (or limit (setq limit (save-excursion (beginning-of-defun) (point))))
850 (let ((first t)
851 (startpos (point))
852 (done nil))
853 (while (not done)
854 (let ((next-start (point)))
855 (condition-case nil
856 ;; Move back one token or one brace or paren group.
857 (backward-sexp 1)
858 ;; If we find an open-brace, we lose.
859 (error (setq done 'fail)))
860 (if done
861 nil
862 ;; If we reached a `do', we win.
863 (if (looking-at "do\\b")
864 (setq done 'succeed)
865 ;; Otherwise, if we skipped a semicolon, we lose.
866 ;; (Exception: we can skip one semicolon before getting
867 ;; to a the last token of the statement, unless that token
868 ;; is a close brace.)
869 (if (save-excursion
870 (forward-sexp 1)
871 (or (and (not first) (= (preceding-char) ?}))
872 (search-forward ";" next-start t
873 (if (and first
874 (/= (preceding-char) ?}))
875 2 1))))
876 (setq done 'fail)
877 (setq first nil)
878 ;; If we go too far back in the buffer, we lose.
879 (if (< (point) limit)
880 (setq done 'fail)))))))
881 (if (eq done 'succeed)
882 t
883 (goto-char startpos)
884 nil)))
885\f
886(defun c-beginning-of-statement (count)
887 "Go to the beginning of the innermost C statement.
888With prefix arg, go back N - 1 statements. If already at the beginning of a
eb8c3be9 889statement then go to the beginning of the preceding one.
17f0e88a
RS
890If within a string or comment, or next to a comment (only whitespace between),
891move by sentences instead of statements."
a17915dc 892 (interactive "p")
d4fbc2d5
RS
893 (let ((here (point)) state)
894 (save-excursion
895 (beginning-of-defun)
896 (setq state (parse-partial-sexp (point) here nil nil)))
17f0e88a
RS
897 (if (or (nth 3 state) (nth 4 state)
898 (looking-at (concat "[ \t]*" comment-start-skip))
899 (save-excursion (skip-chars-backward " \t")
900 (goto-char (- (point) 2))
901 (looking-at "\\*/")))
d4fbc2d5
RS
902 (forward-sentence (- count))
903 (while (> count 0)
904 (c-beginning-of-statement-1)
905 (setq count (1- count)))
906 (while (< count 0)
907 (c-end-of-statement-1)
908 (setq count (1+ count))))))
a17915dc
ER
909
910(defun c-end-of-statement (count)
911 "Go to the end of the innermost C statement.
d4fbc2d5
RS
912With prefix arg, go forward N - 1 statements.
913Move forward to end of the next statement if already at end.
914If within a string or comment, move by sentences instead of statements."
a17915dc
ER
915 (interactive "p")
916 (c-beginning-of-statement (- count)))
917
918(defun c-beginning-of-statement-1 ()
919 (let ((last-begin (point))
920 (first t))
921 (condition-case ()
922 (progn
923 (while (and (not (bobp))
924 (progn
925 (backward-sexp 1)
926 (or first
927 (not (re-search-forward "[;{}]" last-begin t)))))
928 (setq last-begin (point) first nil))
929 (goto-char last-begin))
930 (error (if first (backward-up-list 1) (goto-char last-begin))))))
931
932(defun c-end-of-statement-1 ()
933 (condition-case ()
934 (progn
935 (while (and (not (eobp))
936 (let ((beg (point)))
937 (forward-sexp 1)
938 (let ((end (point)))
939 (save-excursion
940 (goto-char beg)
941 (not (re-search-forward "[;{}]" end t)))))))
942 (re-search-backward "[;}]")
943 (forward-char 1))
944 (error
945 (let ((beg (point)))
946 (backward-up-list -1)
947 (let ((end (point)))
948 (goto-char beg)
949 (search-forward ";" end 'move))))))
950\f
951(defun mark-c-function ()
952 "Put mark at end of C function, point at beginning."
953 (interactive)
954 (push-mark (point))
955 (end-of-defun)
069b6ce3 956 (push-mark (point) nil t)
a17915dc
ER
957 (beginning-of-defun)
958 (backward-paragraph))
959\f
eccf8697
RS
960;; Idea of ENDPOS is, indent each line, stopping when
961;; ENDPOS is encountered. But it's too much of a pain to make that work.
a17915dc 962(defun indent-c-exp (&optional endpos)
eccf8697 963 "Indent each line of the C grouping following point."
a17915dc
ER
964 (interactive)
965 (let* ((indent-stack (list nil))
966 (opoint (point)) ;; May be altered below.
967 (contain-stack
968 (list (if endpos
969 (let (funbeg)
970 ;; Find previous fcn-start.
971 (save-excursion (forward-char 1)
972 (beginning-of-defun)
973 (setq funbeg (point)))
9ce49c8d 974 (setq opoint funbeg)
a17915dc
ER
975 ;; Try to find containing open,
976 ;; but don't scan past that fcn-start.
977 (save-restriction
978 (narrow-to-region funbeg (point))
979 (condition-case nil
980 (save-excursion
9ce49c8d
RS
981 (backward-up-list 1)
982 (point))
a17915dc
ER
983 ;; We gave up: must be between fcns.
984 ;; Set opoint to beg of prev fcn
985 ;; since otherwise calculate-c-indent
986 ;; will get wrong answers.
987 (error (setq opoint funbeg)
988 (point)))))
989 (point))))
990 (case-fold-search nil)
991 restart outer-loop-done inner-loop-done state ostate
992 this-indent last-sexp
993 at-else at-brace at-while
3bbf6363 994 last-depth this-point
a17915dc
ER
995 (next-depth 0))
996 ;; If the braces don't match, get an error right away.
997 (save-excursion
998 (forward-sexp 1))
999 ;; Realign the comment on the first line, even though we don't reindent it.
1000 (save-excursion
1001 (let ((beg (point)))
1002 (and (re-search-forward
1003 comment-start-skip
1004 (save-excursion (end-of-line) (point)) t)
9ce49c8d
RS
1005 ;; Make sure this isn't a comment alone on a line
1006 ;; (which should be indented like code instead).
1007 (save-excursion
1008 (goto-char (match-beginning 0))
1009 (skip-chars-backward " \t")
1010 (not (bolp)))
a17915dc
ER
1011 ;; Make sure the comment starter we found
1012 ;; is not actually in a string or quoted.
1013 (let ((new-state
1014 (parse-partial-sexp beg (point)
1015 nil nil state)))
1016 (and (not (nth 3 new-state)) (not (nth 5 new-state))))
1017 (progn (indent-for-comment) (beginning-of-line)))))
1018 (save-excursion
1019 (setq outer-loop-done nil)
1020 (while (and (not (eobp))
1021 (if endpos (< (point) endpos)
1022 (not outer-loop-done)))
1023 (setq last-depth next-depth)
1024 ;; Compute how depth changes over this line
1025 ;; plus enough other lines to get to one that
1026 ;; does not end inside a comment or string.
1027 ;; Meanwhile, do appropriate indentation on comment lines.
1028 (setq inner-loop-done nil)
1029 (while (and (not inner-loop-done)
1030 (not (and (eobp) (setq outer-loop-done t))))
1031 (setq ostate state)
1032 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
1033 nil nil state))
1034 (setq next-depth (car state))
1035 (if (and (car (cdr (cdr state)))
1036 (>= (car (cdr (cdr state))) 0))
1037 (setq last-sexp (car (cdr (cdr state)))))
3bbf6363
RS
1038 ;; If this line started within a comment, indent it as such.
1039 (if (or (nth 4 ostate) (nth 7 ostate))
a17915dc 1040 (c-indent-line))
3bbf6363
RS
1041 ;; If it ends outside of comments or strings, exit the inner loop.
1042 ;; Otherwise move on to next line.
1043 (if (or (nth 3 state) (nth 4 state) (nth 7 state))
a17915dc
ER
1044 (forward-line 1)
1045 (setq inner-loop-done t)))
1046 (and endpos
1047 (while (< next-depth 0)
1048 (setq indent-stack (append indent-stack (list nil)))
1049 (setq contain-stack (append contain-stack (list nil)))
1050 (setq next-depth (1+ next-depth))
1051 (setq last-depth (1+ last-depth))
1052 (setcar (nthcdr 6 state) (1+ (nth 6 state)))))
1053 (setq outer-loop-done (and (not endpos) (<= next-depth 0)))
1054 (if outer-loop-done
1055 nil
1056 ;; If this line had ..))) (((.. in it, pop out of the levels
1057 ;; that ended anywhere in this line, even if the final depth
1058 ;; doesn't indicate that they ended.
1059 (while (> last-depth (nth 6 state))
1060 (setq indent-stack (cdr indent-stack)
1061 contain-stack (cdr contain-stack)
1062 last-depth (1- last-depth)))
1063 (if (/= last-depth next-depth)
1064 (setq last-sexp nil))
1065 ;; Add levels for any parens that were started in this line.
1066 (while (< last-depth next-depth)
1067 (setq indent-stack (cons nil indent-stack)
1068 contain-stack (cons nil contain-stack)
1069 last-depth (1+ last-depth)))
1070 (if (null (car contain-stack))
1071 (setcar contain-stack (or (car (cdr state))
1072 (save-excursion (forward-sexp -1)
1073 (point)))))
1074 (forward-line 1)
1075 (skip-chars-forward " \t")
9ce49c8d
RS
1076 ;; Don't really reindent if the line is just whitespace,
1077 ;; or if it is past the endpos.
1078 ;; (The exit test in the outer while
1079 ;; does not exit until we have passed the first line
1080 ;; past the region.)
1081 (if (or (eolp) (and endpos (>= (point) endpos)))
a17915dc
ER
1082 nil
1083 (if (and (car indent-stack)
1084 (>= (car indent-stack) 0))
1085 ;; Line is on an existing nesting level.
1086 ;; Lines inside parens are handled specially.
1087 (if (/= (char-after (car contain-stack)) ?{)
1088 (setq this-indent (car indent-stack))
1089 ;; Line is at statement level.
1090 ;; Is it a new statement? Is it an else?
1091 ;; Find last non-comment character before this line
1092 (save-excursion
3bbf6363 1093 (setq this-point (point))
a17915dc
ER
1094 (setq at-else (looking-at "else\\W"))
1095 (setq at-brace (= (following-char) ?{))
1096 (setq at-while (looking-at "while\\b"))
1097 (c-backward-to-noncomment opoint)
1098 (if (not (memq (preceding-char) '(nil ?\, ?\; ?} ?: ?{)))
1099 ;; Preceding line did not end in comma or semi;
1100 ;; indent this line c-continued-statement-offset
1101 ;; more than previous.
1102 (progn
1103 (c-backward-to-start-of-continued-exp (car contain-stack))
1104 (setq this-indent
1105 (+ c-continued-statement-offset (current-column)
1106 (if at-brace c-continued-brace-offset 0))))
1107 ;; Preceding line ended in comma or semi;
1108 ;; use the standard indent for this level.
1109 (cond (at-else (progn (c-backward-to-start-of-if opoint)
1110 (setq this-indent
1111 (current-indentation))))
1112 ((and at-while (c-backward-to-start-of-do opoint))
1113 (setq this-indent (current-indentation)))
3bbf6363
RS
1114 ((eq (preceding-char) ?\,)
1115 (goto-char this-point)
1116 (setq this-indent (calculate-c-indent)))
a17915dc
ER
1117 (t (setq this-indent (car indent-stack)))))))
1118 ;; Just started a new nesting level.
1119 ;; Compute the standard indent for this level.
1120 (let ((val (calculate-c-indent
1121 (if (car indent-stack)
1122 (- (car indent-stack))
1123 opoint))))
3746159f
RS
1124 ;; t means we are in a block comment and should
1125 ;; calculate accordingly.
1126 (if (eq val t)
1127 (setq val (calculate-c-indent-within-comment)))
a17915dc
ER
1128 (setcar indent-stack
1129 (setq this-indent val))))
1130 ;; Adjust line indentation according to its contents
3a65941e 1131 (if (or (looking-at c-switch-label-regexp)
a17915dc
ER
1132 (and (looking-at "[A-Za-z]")
1133 (save-excursion
1134 (forward-sexp 1)
1135 (looking-at ":"))))
1136 (setq this-indent (max 1 (+ this-indent c-label-offset))))
1137 (if (= (following-char) ?})
1138 (setq this-indent (- this-indent c-indent-level)))
1139 (if (= (following-char) ?{)
e6033883
RS
1140 ;; Don't move an open-brace in column 0.
1141 ;; This is good when constructs such as
1142 ;; `extern "C" {' surround a function definition
1143 ;; that should be indented as usual.
1144 ;; It is also good for nested functions.
1145 ;; It is bad when an open-brace is indented at column 0
1146 ;; and you want to fix that, but we can't win 'em all.
b70af8d7
RS
1147 (if (zerop (current-column))
1148 (setq this-indent 0)
1149 (setq this-indent (+ this-indent c-brace-offset))))
a17915dc
ER
1150 ;; Don't leave indentation in empty lines.
1151 (if (eolp) (setq this-indent 0))
1152 ;; Put chosen indentation into effect.
1153 (or (= (current-column) this-indent)
1154 (= (following-char) ?\#)
1155 (progn
1156 (delete-region (point) (progn (beginning-of-line) (point)))
1157 (indent-to this-indent)))
1158 ;; Indent any comment following the text.
1159 (or (looking-at comment-start-skip)
1160 (let ((beg (point)))
1161 (and (re-search-forward
1162 comment-start-skip
1163 (save-excursion (end-of-line) (point)) t)
1164 ;; Make sure the comment starter we found
1165 ;; is not actually in a string or quoted.
1166 (let ((new-state
1167 (parse-partial-sexp beg (point)
1168 nil nil state)))
1169 (and (not (nth 3 new-state)) (not (nth 5 new-state))))
1170 (progn (indent-for-comment) (beginning-of-line)))))))))))
1171
1172;; Look at all comment-start strings in the current line after point.
1173;; Return t if one of them starts a real comment.
1174;; This is not used yet, because indent-for-comment
1175;; isn't smart enough to handle the cases this can find.
1176(defun indent-c-find-real-comment ()
1177 (let (win)
1178 (while (and (not win)
1179 (re-search-forward comment-start-skip
1180 (save-excursion (end-of-line) (point))
1181 t))
1182 ;; Make sure the comment start is not quoted.
1183 (let ((state-1
1184 (parse-partial-sexp
1185 (save-excursion (beginning-of-line) (point))
1186 (point) nil nil state)))
1187 (setq win (and (null (nth 3 state-1)) (null (nth 5 state-1))))))
1188 win))
1189
1190;; Indent every line whose first char is between START and END inclusive.
1191(defun c-indent-region (start end)
1192 (save-excursion
1193 (goto-char start)
eccf8697
RS
1194 (let ((endmark (copy-marker end))
1195 (c-tab-always-indent t))
1196 (while (and (bolp) (not (eolp)))
1197 ;; Indent one line as with TAB.
1198 (let ((shift-amt (c-indent-line))
4fd99ee4 1199 nextline sexpbeg sexpend)
eccf8697
RS
1200 (save-excursion
1201 ;; Find beginning of following line.
1202 (save-excursion
1203 (forward-line 1) (setq nextline (point)))
1204 ;; Find first beginning-of-sexp for sexp extending past this line.
1205 (beginning-of-line)
1206 (while (< (point) nextline)
1207 (condition-case nil
1208 (progn
1209 (forward-sexp 1)
1210 (setq sexpend (point-marker)))
1211 (error (setq sexpend nil)
1212 (goto-char nextline)))
4fd99ee4 1213 (skip-chars-forward " \t\n"))
0b171628
RS
1214 (if sexpend
1215 (progn
1216 ;; Make sure the sexp we found really starts on the
1217 ;; current line and extends past it.
1218 (goto-char sexpend)
1219 (backward-sexp 1)
1220 (setq sexpbeg (point)))))
eccf8697
RS
1221 ;; If that sexp ends within the region,
1222 ;; indent it all at once, fast.
4fd99ee4
RS
1223 (if (and sexpend (> sexpend nextline) (<= sexpend endmark)
1224 (< sexpbeg nextline))
eccf8697
RS
1225 (progn
1226 (indent-c-exp)
1227 (goto-char sexpend)))
1228 ;; Move to following line and try again.
1229 (and sexpend (set-marker sexpend nil))
1230 (forward-line 1)))
a17915dc
ER
1231 (set-marker endmark nil))))
1232\f
1832dbd1 1233(defun set-c-style (style &optional global)
a17915dc 1234 "Set C-mode variables to use one of several different indentation styles.
1832dbd1
RS
1235The arguments are a string representing the desired style
1236and a flag which, if non-nil, means to set the style globally.
1237\(Interactively, the flag comes from the prefix argument.)
e6dfdce5 1238Available styles are GNU, K&R, BSD and Whitesmith."
a17915dc 1239 (interactive (list (completing-read "Use which C indentation style? "
1832dbd1
RS
1240 c-style-alist nil t)
1241 current-prefix-arg))
a17915dc 1242 (let ((vars (cdr (assoc style c-style-alist))))
1832dbd1
RS
1243 (or vars
1244 (error "Invalid C indentation style `%s'" style))
a17915dc 1245 (while vars
1832dbd1
RS
1246 (or global
1247 (make-local-variable (car (car vars))))
a17915dc
ER
1248 (set (car (car vars)) (cdr (car vars)))
1249 (setq vars (cdr vars)))))
1832dbd1
RS
1250\f
1251;;; This page handles insertion and removal of backslashes for C macros.
1252
1253(defvar c-backslash-column 48
1254 "*Minimum column for end-of-line backslashes of macro definitions.")
1255
1256(defun c-backslash-region (from to delete-flag)
1257 "Insert, align, or delete end-of-line backslashes on the lines in the region.
1258With no argument, inserts backslashes and aligns existing backslashes.
1259With an argument, deletes the backslashes.
1260
1261This function does not modify the last line of the region if the region ends
1262right at the start of the following line; it does not modify blank lines
1263at the start of the region. So you can put the region around an entire macro
1264definition and conveniently use this command."
1265 (interactive "r\nP")
1266 (save-excursion
1267 (goto-char from)
1268 (let ((column c-backslash-column)
1269 (endmark (make-marker)))
1270 (move-marker endmark to)
1271 ;; Compute the smallest column number past the ends of all the lines.
1272 (if (not delete-flag)
1273 (while (< (point) to)
1274 (end-of-line)
1275 (if (= (preceding-char) ?\\)
1276 (progn (forward-char -1)
1277 (skip-chars-backward " \t")))
1278 (setq column (max column (1+ (current-column))))
1279 (forward-line 1)))
1280 ;; Adjust upward to a tab column, if that doesn't push past the margin.
1281 (if (> (% column tab-width) 0)
1282 (let ((adjusted (* (/ (+ column tab-width -1) tab-width) tab-width)))
1283 (if (< adjusted (window-width))
1284 (setq column adjusted))))
1285 ;; Don't modify blank lines at start of region.
1286 (goto-char from)
1287 (while (and (< (point) endmark) (eolp))
1288 (forward-line 1))
1289 ;; Add or remove backslashes on all the lines.
1290 (while (and (< (point) endmark)
1291 ;; Don't backslashify the last line
1292 ;; if the region ends right at the start of the next line.
1293 (save-excursion
1294 (forward-line 1)
1295 (< (point) endmark)))
1296 (if (not delete-flag)
1297 (c-append-backslash column)
1298 (c-delete-backslash))
1299 (forward-line 1))
1300 (move-marker endmark nil))))
1301
1302(defun c-append-backslash (column)
1303 (end-of-line)
1304 ;; Note that "\\\\" is needed to get one backslash.
1305 (if (= (preceding-char) ?\\)
1306 (progn (forward-char -1)
1307 (delete-horizontal-space)
1308 (indent-to column))
1309 (indent-to column)
1310 (insert "\\")))
1311
1312(defun c-delete-backslash ()
1313 (end-of-line)
1314 (forward-char -1)
1315 (if (looking-at "\\\\")
1316 (delete-region (1+ (point))
1317 (progn (skip-chars-backward " \t") (point)))))
1586b965
RS
1318\f
1319(defun c-up-conditional (count)
1320 "Move back to the containing preprocessor conditional, leaving mark behind.
1321A prefix argument acts as a repeat count. With a negative argument,
1322move forward to the end of the containing preprocessor conditional.
1323When going backwards, `#elif' is treated like `#else' followed by `#if'.
1324When going forwards, `#elif' is ignored."
1325 (interactive "p")
3c8aaef2
RS
1326 (c-forward-conditional (- count) t))
1327
1328(defun c-backward-conditional (count &optional up-flag)
1329 "Move back across a preprocessor conditional, leaving mark behind.
1330A prefix argument acts as a repeat count. With a negative argument,
1331move forward across a preprocessor conditional."
1332 (interactive "p")
1333 (c-forward-conditional (- count) up-flag))
1334
1335(defun c-forward-conditional (count &optional up-flag)
1336 "Move forward across a preprocessor conditional, leaving mark behind.
1337A prefix argument acts as a repeat count. With a negative argument,
1338move backward across a preprocessor conditional."
1339 (interactive "p")
1340 (let* ((forward (> count 0))
1586b965
RS
1341 (increment (if forward -1 1))
1342 (search-function (if forward 're-search-forward 're-search-backward))
1343 (opoint (point))
1344 (new))
1345 (save-excursion
1346 (while (/= count 0)
3c8aaef2 1347 (let ((depth (if up-flag 0 -1)) found)
1586b965
RS
1348 (save-excursion
1349 ;; Find the "next" significant line in the proper direction.
1350 (while (and (not found)
1351 ;; Rather than searching for a # sign that comes
1352 ;; at the beginning of a line aside from whitespace,
1353 ;; search first for a string starting with # sign.
1354 ;; Then verify what precedes it.
1355 ;; This is faster on account of the fastmap feature of
1356 ;; the regexp matcher.
1357 (funcall search-function
1358 "#[ \t]*\\(if\\|elif\\|endif\\)"
1e2d7cce 1359 nil t))
1586b965 1360 (beginning-of-line)
1e2d7cce
RS
1361 ;; Now verify it is really a preproc line.
1362 (if (looking-at "^[ \t]*#[ \t]*\\(if\\|elif\\|endif\\)")
3c8aaef2 1363 (let ((prev depth))
1e2d7cce
RS
1364 ;; Update depth according to what we found.
1365 (beginning-of-line)
1366 (cond ((looking-at "[ \t]*#[ \t]*endif")
1367 (setq depth (+ depth increment)))
1368 ((looking-at "[ \t]*#[ \t]*elif")
1369 (if (and forward (= depth 0))
1370 (setq found (point))))
1371 (t (setq depth (- depth increment))))
3c8aaef2
RS
1372 ;; If we are trying to move across, and we find
1373 ;; an end before we find a beginning, get an error.
1374 (if (and (< prev 0) (< depth prev))
1375 (error (if forward
1376 "No following conditional at this level"
1377 "No previous conditional at this level")))
1378 ;; When searching forward, start from next line
1379 ;; so that we don't find the same line again.
1380 (if forward (forward-line 1))
1e2d7cce
RS
1381 ;; If this line exits a level of conditional, exit inner loop.
1382 (if (< depth 0)
3c8aaef2 1383 (setq found (point)))))))
1586b965
RS
1384 (or found
1385 (error "No containing preprocessor conditional"))
1386 (goto-char (setq new found)))
3c8aaef2 1387 (setq count (+ count increment))))
1586b965
RS
1388 (push-mark)
1389 (goto-char new)))
c0274f38
ER
1390
1391;;; c-mode.el ends here