1997-07-10 07:54:06 +00:00
|
|
|
|
;;; cc-align.el --- custom indentation functions for CC Mode
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
;; Copyright (C) 1985,1987,1992-2003 Free Software Foundation, Inc.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
;; Authors: 1998- Martin Stjernholm
|
|
|
|
|
;; 1992-1999 Barry A. Warsaw
|
1997-07-10 07:54:06 +00:00
|
|
|
|
;; 1987 Dave Detlefs and Stewart Clamen
|
|
|
|
|
;; 1985 Richard M. Stallman
|
1999-02-08 16:53:18 +00:00
|
|
|
|
;; Maintainer: bug-cc-mode@gnu.org
|
1997-07-10 07:54:06 +00:00
|
|
|
|
;; Created: 22-Apr-1997 (split from cc-mode.el)
|
1997-10-23 07:47:37 +00:00
|
|
|
|
;; Version: See cc-mode.el
|
1997-07-10 07:54:06 +00:00
|
|
|
|
;; Keywords: c languages oop
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
CC Mode update to 5.30.10:
* cc-fonts.el (c-font-lock-declarators): Fixed bug where the point
could go past the limit in decoration level 2, thereby causing
errors during interactive fontification.
* cc-mode.el (c-make-inherited-keymap): Fixed cc-bytecomp bug when
the file is evaluated interactively.
* cc-engine.el (c-guess-basic-syntax): Handle operator
declarations somewhat better in C++.
* cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
make use of run-mode-hooks' which has been added in Emacs 21.1.
(c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode,
awk-mode): Use it.
(make-local-hook): Suppress warning about obsoleteness.
* cc-engine.el, cc-align.el, cc-cmds.el
(c-append-backslashes-forward, c-delete-backslashes-forward,
c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
Compensate for return value from forward-line' when it has moved
but not to a different line due to eob.
* cc-engine.el (c-guess-basic-syntax): Fixed anchoring in
objc-method-intro' and objc-method-args-cont'.
2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
CC Mode update to 5.30.10:
* cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
in the copyright statement. Incidentally, change "along with GNU
Emacs" to "along with this program" where it occurs.
* cc-mode.el: Add a fourth parameter t' to the awk-mode autoload,
so that it is interactive, hence can be found by M-x awk-mode
whilst cc-mode is yet to be loaded. Reported by Glenn Morris
<gmorris+emacs@ast.cam.ac.uk>.
* cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
Mode's regexps.
2005-05-23 Kevin Ryde <user42@zip.com.au>:
* cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
c-parse-state, to avoid a lisp error (on bad code).
2005-05-23 00:03:59 +00:00
|
|
|
|
;; along with this program; see the file COPYING. If not, write to
|
|
|
|
|
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
2001-07-16 07:46:48 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(eval-when-compile
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(let ((load-path
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(if (and (boundp 'byte-compile-dest-file)
|
|
|
|
|
(stringp byte-compile-dest-file))
|
|
|
|
|
(cons (file-name-directory byte-compile-dest-file) load-path)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
load-path)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(load "cc-bytecomp" nil t)))
|
2001-03-21 12:59:36 +00:00
|
|
|
|
|
|
|
|
|
(cc-require 'cc-defs)
|
|
|
|
|
(cc-require 'cc-vars)
|
|
|
|
|
(cc-require 'cc-engine)
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Standard indentation line-ups
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
;; Calling convention:
|
|
|
|
|
;;
|
|
|
|
|
;; The single argument is a cons cell containing the syntactic symbol
|
|
|
|
|
;; in the car, and the relpos (a.k.a. anchor position) in the cdr.
|
|
|
|
|
;; The cdr may be nil for syntactic symbols which doesn't have an
|
|
|
|
|
;; associated relpos.
|
|
|
|
|
;;
|
|
|
|
|
;; Some syntactic symbols provide more information, usually more
|
|
|
|
|
;; interesting positions. The complete list for the syntactic element
|
|
|
|
|
;; (beginning with the symbol itself) is available in
|
|
|
|
|
;; `c-syntactic-element'.
|
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(defun c-lineup-topmost-intro-cont (langelem)
|
|
|
|
|
"Line up declaration continuation lines zero or one indentation step.
|
|
|
|
|
For lines in the \"header\" of a definition, zero is used. For other
|
|
|
|
|
lines, `c-basic-offset' is added to the indentation. E.g:
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
neg (int i) <- c-lineup-topmost-intro-cont
|
|
|
|
|
{
|
|
|
|
|
return -i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
|
larch <- c-lineup-topmost-intro-cont
|
|
|
|
|
{
|
|
|
|
|
double height;
|
|
|
|
|
}
|
|
|
|
|
the_larch, <- c-lineup-topmost-intro-cont
|
|
|
|
|
another_larch; <- c-lineup-topmost-intro-cont
|
|
|
|
|
<--> c-basic-offset
|
|
|
|
|
|
|
|
|
|
struct larch
|
|
|
|
|
the_larch, <- c-lineup-topmost-intro-cont
|
|
|
|
|
another_larch; <- c-lineup-topmost-intro-cont
|
|
|
|
|
|
|
|
|
|
\(This function is mainly provided to mimic the behavior of CC Mode
|
|
|
|
|
5.28 and earlier where this case wasn't handled consistently so that
|
|
|
|
|
these lines could be analyzed as either topmost-intro-cont or
|
|
|
|
|
statement-cont.)
|
|
|
|
|
|
|
|
|
|
Works with: topmost-intro-cont."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(c-backward-syntactic-ws (cdr langelem))
|
|
|
|
|
(if (memq (char-before) '(?} ?,))
|
|
|
|
|
c-basic-offset)))
|
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(defun c-lineup-arglist (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up the current argument line under the first argument.
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
As a special case, if an argument on the same line as the open
|
|
|
|
|
parenthesis starts with a brace block opener, the indentation is
|
|
|
|
|
`c-basic-offset' only. This is intended as a \"DWIM\" measure in
|
|
|
|
|
cases like macros that contains statement blocks, e.g:
|
|
|
|
|
|
|
|
|
|
A_VERY_LONG_MACRO_NAME ({
|
|
|
|
|
some (code, with + long, lines * in[it]);
|
|
|
|
|
});
|
|
|
|
|
<--> c-basic-offset
|
|
|
|
|
|
|
|
|
|
This is motivated partly because it's more in line with how code
|
|
|
|
|
blocks are handled, and partly since it approximates the behavior of
|
|
|
|
|
earlier CC Mode versions, which due to inaccurate analysis tended to
|
|
|
|
|
indent such cases this way.
|
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
Works with: arglist-cont-nonempty, arglist-close."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(goto-char (1+ (elt c-syntactic-element 2)))
|
|
|
|
|
|
|
|
|
|
;; Don't stop in the middle of a special brace list opener
|
|
|
|
|
;; like "({".
|
|
|
|
|
(when c-special-brace-lists
|
|
|
|
|
(let ((special-list (c-looking-at-special-brace-list)))
|
2004-08-11 16:22:21 +00:00
|
|
|
|
(when (and special-list (< (car (car special-list)) (point)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(goto-char (+ (car (car special-list)) 2)))))
|
|
|
|
|
|
|
|
|
|
(let ((savepos (point))
|
|
|
|
|
(eol (c-point 'eol)))
|
|
|
|
|
|
|
|
|
|
;; Find out if an argument on the same line starts with an
|
|
|
|
|
;; unclosed open brace paren. Note similar code in
|
|
|
|
|
;; `c-lineup-close-paren' and
|
|
|
|
|
;; `c-lineup-arglist-close-under-paren'.
|
|
|
|
|
(if (and (c-syntactic-re-search-forward "{" eol t t)
|
|
|
|
|
(looking-at c-syntactic-eol)
|
|
|
|
|
(progn (backward-char)
|
|
|
|
|
(not (c-looking-at-special-brace-list)))
|
|
|
|
|
(progn (c-backward-syntactic-ws)
|
|
|
|
|
(or (= (point) savepos)
|
|
|
|
|
(eq (char-before) ?,))))
|
|
|
|
|
c-basic-offset
|
|
|
|
|
|
|
|
|
|
;; Normal case. Indent to the token after the arglist open paren.
|
|
|
|
|
(goto-char savepos)
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(c-forward-syntactic-ws)
|
|
|
|
|
(when (< (point) eol)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(goto-char savepos)
|
|
|
|
|
(skip-chars-forward " \t"))
|
|
|
|
|
(vector (current-column))))))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
|
|
|
|
|
;; Contributed by Kevin Ryde <user42@zip.com.au>.
|
|
|
|
|
(defun c-lineup-argcont (elem)
|
|
|
|
|
"Line up a continued argument.
|
|
|
|
|
|
|
|
|
|
foo (xyz, aaa + bbb + ccc
|
|
|
|
|
+ ddd + eee + fff); <- c-lineup-argcont
|
|
|
|
|
|
2003-05-06 17:44:11 +00:00
|
|
|
|
Only continuation lines like this are touched, nil is returned on lines
|
2002-04-22 00:35:36 +00:00
|
|
|
|
which are the start of an argument.
|
|
|
|
|
|
|
|
|
|
Within a gcc asm block, \":\" is recognised as an argument separator,
|
|
|
|
|
but of course only between operand specifications, not in the expressions
|
|
|
|
|
for the operands.
|
|
|
|
|
|
|
|
|
|
Works with: arglist-cont, arglist-cont-nonempty."
|
|
|
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(when (eq (car elem) 'arglist-cont-nonempty)
|
|
|
|
|
;; Our argument list might not be the innermost one. If it
|
|
|
|
|
;; isn't, go back to the last position in it. We do this by
|
|
|
|
|
;; stepping back over open parens until we get to the open paren
|
|
|
|
|
;; of our argument list.
|
|
|
|
|
(let ((open-paren (elt c-syntactic-element 2))
|
|
|
|
|
(paren-state (c-parse-state)))
|
|
|
|
|
(while (not (eq (car paren-state) open-paren))
|
2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
CC Mode update to 5.30.10:
* cc-fonts.el (c-font-lock-declarators): Fixed bug where the point
could go past the limit in decoration level 2, thereby causing
errors during interactive fontification.
* cc-mode.el (c-make-inherited-keymap): Fixed cc-bytecomp bug when
the file is evaluated interactively.
* cc-engine.el (c-guess-basic-syntax): Handle operator
declarations somewhat better in C++.
* cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
make use of run-mode-hooks' which has been added in Emacs 21.1.
(c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode,
awk-mode): Use it.
(make-local-hook): Suppress warning about obsoleteness.
* cc-engine.el, cc-align.el, cc-cmds.el
(c-append-backslashes-forward, c-delete-backslashes-forward,
c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
Compensate for return value from forward-line' when it has moved
but not to a different line due to eob.
* cc-engine.el (c-guess-basic-syntax): Fixed anchoring in
objc-method-intro' and objc-method-args-cont'.
2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
CC Mode update to 5.30.10:
* cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
in the copyright statement. Incidentally, change "along with GNU
Emacs" to "along with this program" where it occurs.
* cc-mode.el: Add a fourth parameter t' to the awk-mode autoload,
so that it is interactive, hence can be found by M-x awk-mode
whilst cc-mode is yet to be loaded. Reported by Glenn Morris
<gmorris+emacs@ast.cam.ac.uk>.
* cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
Mode's regexps.
2005-05-23 Kevin Ryde <user42@zip.com.au>:
* cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
c-parse-state, to avoid a lisp error (on bad code).
2005-05-23 00:03:59 +00:00
|
|
|
|
(unless (consp (car paren-state)) ;; ignore matched braces
|
|
|
|
|
(goto-char (car paren-state)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(setq paren-state (cdr paren-state)))))
|
|
|
|
|
|
|
|
|
|
(let ((start (point)) c)
|
|
|
|
|
|
|
|
|
|
(when (bolp)
|
|
|
|
|
;; Previous line ending in a comma means we're the start of an
|
|
|
|
|
;; argument. This should quickly catch most cases not for us.
|
|
|
|
|
;; This case is only applicable if we're the innermost arglist.
|
|
|
|
|
(c-backward-syntactic-ws)
|
|
|
|
|
(setq c (char-before)))
|
|
|
|
|
|
|
|
|
|
(unless (eq c ?,)
|
|
|
|
|
;; In a gcc asm, ":" on the previous line means the start of an
|
|
|
|
|
;; argument. And lines starting with ":" are not for us, don't
|
|
|
|
|
;; want them to indent to the preceding operand.
|
|
|
|
|
(let ((gcc-asm (save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(c-in-gcc-asm-p))))
|
|
|
|
|
(unless (and gcc-asm
|
|
|
|
|
(or (eq c ?:)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(looking-at "[ \t]*:"))))
|
|
|
|
|
|
|
|
|
|
(c-lineup-argcont-scan (if gcc-asm ?:))
|
|
|
|
|
(vector (current-column))))))))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-argcont-scan (&optional other-match)
|
|
|
|
|
;; Find the start of an argument, for `c-lineup-argcont'.
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(when (zerop (c-backward-token-2 1 t))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(let ((c (char-after)))
|
|
|
|
|
(if (or (eq c ?,) (eq c other-match))
|
|
|
|
|
(progn
|
|
|
|
|
(forward-char)
|
|
|
|
|
(c-forward-syntactic-ws))
|
|
|
|
|
(c-lineup-argcont-scan other-match)))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-arglist-intro-after-paren (langelem)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
"Line up a line to just after the open paren of the surrounding paren
|
|
|
|
|
or brace block.
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
|
|
|
|
Works with: defun-block-intro, brace-list-intro,
|
|
|
|
|
statement-block-intro, statement-case-intro, arglist-intro."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(backward-up-list 1)
|
|
|
|
|
(skip-chars-forward " \t" (c-point 'eol))
|
|
|
|
|
(vector (1+ (current-column)))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-arglist-close-under-paren (langelem)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
"Line up a line under the enclosing open paren.
|
|
|
|
|
Normally used to line up a closing paren in the same column as its
|
|
|
|
|
corresponding open paren, but can also be used with arglist-cont and
|
|
|
|
|
arglist-cont-nonempty to line up all lines inside a parenthesis under
|
|
|
|
|
the open paren.
|
|
|
|
|
|
|
|
|
|
As a special case, if a brace block is opened at the same line as the
|
|
|
|
|
open parenthesis of the argument list, the indentation is
|
|
|
|
|
`c-basic-offset' only. See `c-lineup-arglist' for further discussion
|
|
|
|
|
of this \"DWIM\" measure.
|
|
|
|
|
|
|
|
|
|
Works with: Almost all symbols, but are typically most useful on
|
|
|
|
|
arglist-close, brace-list-close, arglist-cont and arglist-cont-nonempty."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let (special-list paren-start savepos)
|
|
|
|
|
(if (memq (car langelem) '(arglist-cont-nonempty arglist-close))
|
|
|
|
|
(goto-char (elt c-syntactic-element 2))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(c-go-up-list-backward))
|
|
|
|
|
|
|
|
|
|
(if (and c-special-brace-lists
|
|
|
|
|
(setq special-list (c-looking-at-special-brace-list)))
|
|
|
|
|
;; Don't stop in the middle of a special brace list opener
|
|
|
|
|
;; like "({".
|
|
|
|
|
(progn
|
|
|
|
|
(setq paren-start (car (car special-list)))
|
|
|
|
|
(goto-char (+ paren-start 2)))
|
|
|
|
|
(setq paren-start (point))
|
|
|
|
|
(forward-char 1))
|
|
|
|
|
|
|
|
|
|
(setq savepos (point))
|
|
|
|
|
;; Find out if an argument on the same line starts with an
|
|
|
|
|
;; unclosed open brace paren. Note similar code in
|
|
|
|
|
;; `c-lineup-arglist' and `c-lineup-close-paren'.
|
|
|
|
|
(if (and (c-syntactic-re-search-forward "{" (c-point 'eol) t t)
|
|
|
|
|
(looking-at c-syntactic-eol)
|
|
|
|
|
(progn (backward-char)
|
|
|
|
|
(not (c-looking-at-special-brace-list)))
|
|
|
|
|
(progn (c-backward-syntactic-ws)
|
|
|
|
|
(or (= (point) savepos)
|
|
|
|
|
(eq (char-before) ?,))))
|
|
|
|
|
c-basic-offset
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
;; Normal case. Indent to the arglist open paren.
|
|
|
|
|
(goto-char paren-start)
|
|
|
|
|
(vector (current-column))))))
|
|
|
|
|
|
|
|
|
|
(defun c-lineup-arglist-operators (langelem)
|
|
|
|
|
"Line up lines starting with an infix operator under the open paren.
|
|
|
|
|
Return nil on lines that don't start with an operator, to leave those
|
|
|
|
|
cases to other lineup functions. Example:
|
|
|
|
|
|
|
|
|
|
if ( x < 10
|
|
|
|
|
|| at_limit (x, <- c-lineup-arglist-operators
|
|
|
|
|
list) <- c-lineup-arglist-operators returns nil
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
Since this function doesn't do anything for lines without an infix
|
|
|
|
|
operator you typically want to use it together with some other lineup
|
|
|
|
|
settings, e.g. as follows \(the arglist-close setting is just a
|
|
|
|
|
suggestion to get a consistent style):
|
|
|
|
|
|
|
|
|
|
\(c-set-offset 'arglist-cont '(c-lineup-arglist-operators 0))
|
|
|
|
|
\(c-set-offset 'arglist-cont-nonempty '(c-lineup-arglist-operators
|
|
|
|
|
c-lineup-arglist))
|
|
|
|
|
\(c-set-offset 'arglist-close '(c-lineup-arglist-close-under-paren))
|
|
|
|
|
|
|
|
|
|
Works with: arglist-cont, arglist-cont-nonempty."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(when (looking-at "[-+|&*%<>=]\\|\\(/[^/*]\\)")
|
|
|
|
|
;; '-' can be both an infix and a prefix operator, but I'm lazy now..
|
|
|
|
|
(c-lineup-arglist-close-under-paren langelem))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
1998-02-17 07:02:18 +00:00
|
|
|
|
(defun c-lineup-close-paren (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up the closing paren under its corresponding open paren if the
|
|
|
|
|
open paren is followed by code. If the open paren ends its line, no
|
|
|
|
|
indentation is added. E.g:
|
|
|
|
|
|
|
|
|
|
main (int, main (
|
|
|
|
|
char ** int, char **
|
|
|
|
|
) <-> ) <- c-lineup-close-paren
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
As a special case, if a brace block is opened at the same line as the
|
|
|
|
|
open parenthesis of the argument list, the indentation is
|
|
|
|
|
`c-basic-offset' instead of the open paren column. See
|
|
|
|
|
`c-lineup-arglist' for further discussion of this \"DWIM\" measure.
|
|
|
|
|
|
|
|
|
|
Works with: All *-close symbols."
|
1998-02-17 07:02:18 +00:00
|
|
|
|
(save-excursion
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(c-go-up-list-backward)
|
|
|
|
|
|
|
|
|
|
(let ((spec (c-looking-at-special-brace-list)) savepos argstart)
|
|
|
|
|
(if spec (goto-char (car (car spec))))
|
|
|
|
|
(setq savepos (point))
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(when spec
|
|
|
|
|
(c-forward-syntactic-ws)
|
|
|
|
|
(forward-char 1))
|
|
|
|
|
|
|
|
|
|
(if (looking-at c-syntactic-eol)
|
|
|
|
|
;; The arglist is "empty".
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
|
;; Find out if an argument on the same line starts with an
|
|
|
|
|
;; unclosed open brace paren. Note similar code in
|
|
|
|
|
;; `c-lineup-arglist' and
|
|
|
|
|
;; `c-lineup-arglist-close-under-paren'.
|
|
|
|
|
(setq argstart (point))
|
|
|
|
|
(if (and (c-syntactic-re-search-forward "{" (c-point 'eol) t t)
|
|
|
|
|
(looking-at c-syntactic-eol)
|
|
|
|
|
(progn (backward-char)
|
|
|
|
|
(not (c-looking-at-special-brace-list)))
|
|
|
|
|
(progn (c-backward-syntactic-ws)
|
|
|
|
|
(or (= (point) argstart)
|
|
|
|
|
(eq (char-before) ?,))))
|
|
|
|
|
c-basic-offset
|
|
|
|
|
|
|
|
|
|
;; Normal case. Indent to the arglist open paren.
|
|
|
|
|
(goto-char savepos)
|
|
|
|
|
(vector (current-column)))))))
|
1998-02-17 07:02:18 +00:00
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(defun c-lineup-streamop (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up C++ stream operators under each other.
|
|
|
|
|
|
|
|
|
|
Works with: stream-op."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(goto-char (cdr langelem))
|
|
|
|
|
(re-search-forward "<<\\|>>" (c-point 'eol) 'move)
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(vector (current-column))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-multi-inher (langelem)
|
2000-07-24 11:12:40 +00:00
|
|
|
|
"Line up the classes in C++ multiple inheritance clauses and member
|
|
|
|
|
initializers under each other. E.g:
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
2000-07-24 11:12:40 +00:00
|
|
|
|
class Foo: Foo::Foo (int a, int b):
|
|
|
|
|
public Cyphr, Cyphr (a),
|
|
|
|
|
public Bar <-> Bar (b) <- c-lineup-multi-inher
|
|
|
|
|
|
|
|
|
|
class Foo Foo::Foo (int a, int b)
|
|
|
|
|
: public Cyphr, : Cyphr (a),
|
|
|
|
|
public Bar <-> Bar (b) <- c-lineup-multi-inher
|
|
|
|
|
|
|
|
|
|
class Foo Foo::Foo (int a, int b)
|
|
|
|
|
: public Cyphr : Cyphr (a)
|
|
|
|
|
, public Bar <-> , Bar (b) <- c-lineup-multi-inher
|
|
|
|
|
|
|
|
|
|
Works with: inher-cont, member-init-cont."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(back-to-indentation)
|
2000-07-24 11:12:40 +00:00
|
|
|
|
(let* ((eol (c-point 'eol))
|
|
|
|
|
(here (point))
|
2004-08-11 16:22:21 +00:00
|
|
|
|
(char-after-ip (char-after)))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(if (cdr langelem) (goto-char (cdr langelem)))
|
2000-07-24 11:12:40 +00:00
|
|
|
|
|
|
|
|
|
;; This kludge is necessary to support both inher-cont and
|
|
|
|
|
;; member-init-cont, since they have different anchor positions.
|
|
|
|
|
(c-backward-syntactic-ws)
|
|
|
|
|
(when (eq (char-before) ?:)
|
|
|
|
|
(backward-char)
|
|
|
|
|
(c-backward-syntactic-ws))
|
|
|
|
|
|
2004-08-11 16:22:21 +00:00
|
|
|
|
(c-syntactic-re-search-forward ":" eol 'move)
|
|
|
|
|
(if (looking-at c-syntactic-eol)
|
|
|
|
|
(c-forward-syntactic-ws here)
|
|
|
|
|
(if (eq char-after-ip ?,)
|
|
|
|
|
(backward-char)
|
|
|
|
|
(skip-chars-forward " \t" eol)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(if (< (point) here)
|
|
|
|
|
(vector (current-column)))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
(defun c-lineup-java-inher (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up Java implements and extends declarations.
|
2003-07-03 12:30:59 +00:00
|
|
|
|
If class names follow on the same line as the implements/extends
|
1999-12-12 18:24:19 +00:00
|
|
|
|
keyword, they are lined up under each other. Otherwise, they are
|
|
|
|
|
indented by adding `c-basic-offset' to the column of the keyword.
|
|
|
|
|
E.g:
|
|
|
|
|
|
|
|
|
|
class Foo class Foo
|
|
|
|
|
extends extends Cyphr,
|
|
|
|
|
Bar <-> Bar <- c-lineup-java-inher
|
|
|
|
|
<--> c-basic-offset
|
|
|
|
|
|
|
|
|
|
Works with: inher-cont."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(goto-char (cdr langelem))
|
|
|
|
|
(forward-word 1)
|
|
|
|
|
(if (looking-at "[ \t]*$")
|
|
|
|
|
c-basic-offset
|
|
|
|
|
(c-forward-syntactic-ws)
|
|
|
|
|
(vector (current-column)))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-java-throws (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up Java throws declarations.
|
2003-07-03 12:30:59 +00:00
|
|
|
|
If exception names follow on the same line as the throws keyword,
|
1999-12-12 18:24:19 +00:00
|
|
|
|
they are lined up under each other. Otherwise, they are indented by
|
|
|
|
|
adding `c-basic-offset' to the column of the throws keyword. The
|
|
|
|
|
throws keyword itself is also indented by `c-basic-offset' from the
|
|
|
|
|
function declaration start if it doesn't hang. E.g:
|
|
|
|
|
|
|
|
|
|
int foo() int foo() throws Cyphr,
|
|
|
|
|
throws <-> Bar, <- c-lineup-java-throws
|
|
|
|
|
Bar <-> Vlod <- c-lineup-java-throws
|
|
|
|
|
<--><--> c-basic-offset
|
|
|
|
|
|
|
|
|
|
Works with: func-decl-cont."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(let* ((lim (1- (c-point 'bol)))
|
|
|
|
|
(throws (catch 'done
|
|
|
|
|
(goto-char (cdr langelem))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(while (zerop (c-forward-token-2 1 t lim))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(if (looking-at "throws\\>[^_]")
|
|
|
|
|
(throw 'done t))))))
|
|
|
|
|
(if throws
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(if (zerop (c-forward-token-2 1 nil (c-point 'eol)))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (current-column))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(back-to-indentation)
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (+ (current-column) c-basic-offset)))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
c-basic-offset))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
1998-02-17 07:02:18 +00:00
|
|
|
|
(defun c-indent-one-line-block (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Indent a one line block `c-basic-offset' extra.
|
|
|
|
|
E.g:
|
|
|
|
|
|
|
|
|
|
if (n > 0) if (n > 0)
|
|
|
|
|
{m+=n; n=0;} <-> { <- c-indent-one-line-block
|
|
|
|
|
<--> c-basic-offset m+=n; n=0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-21 12:59:36 +00:00
|
|
|
|
The block may use any kind of parenthesis character. nil is returned
|
|
|
|
|
if the line doesn't start with a one line block, which makes the
|
|
|
|
|
function usable in list expressions.
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
|
|
|
|
Work with: Almost all syntactic symbols, but most useful on *-open."
|
1998-02-17 07:02:18 +00:00
|
|
|
|
(save-excursion
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(let ((eol (c-point 'eol)))
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(if (and (eq (char-syntax (char-after)) ?\()
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(c-safe (progn (c-forward-sexp) t))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(<= (point) eol))
|
1998-02-17 07:02:18 +00:00
|
|
|
|
c-basic-offset
|
1999-12-12 18:24:19 +00:00
|
|
|
|
nil))))
|
1998-02-17 07:02:18 +00:00
|
|
|
|
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(defun c-indent-multi-line-block (langelem)
|
|
|
|
|
"Indent a multi line block `c-basic-offset' extra.
|
|
|
|
|
E.g:
|
|
|
|
|
|
|
|
|
|
int *foo[] = { int *foo[] = {
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
{17}, <-> { <- c-indent-multi-line-block
|
|
|
|
|
17
|
|
|
|
|
}
|
|
|
|
|
<--> c-basic-offset
|
|
|
|
|
|
2001-03-21 12:59:36 +00:00
|
|
|
|
The block may use any kind of parenthesis character. nil is returned
|
|
|
|
|
if the line doesn't start with a multi line block, which makes the
|
|
|
|
|
function usable in list expressions.
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
|
|
|
|
Work with: Almost all syntactic symbols, but most useful on *-open."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(let ((eol (c-point 'eol)))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(back-to-indentation)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(if (and (eq (char-syntax (char-after)) ?\()
|
|
|
|
|
(or (not (c-safe (progn (c-forward-sexp) t)))
|
|
|
|
|
(> (point) eol)))
|
|
|
|
|
c-basic-offset
|
|
|
|
|
nil))))
|
|
|
|
|
|
|
|
|
|
(defun c-lineup-C-comments (langelem)
|
|
|
|
|
"Line up C block comment continuation lines.
|
2001-03-21 12:59:36 +00:00
|
|
|
|
Various heuristics are used to handle many of the common comment
|
1999-12-12 18:24:19 +00:00
|
|
|
|
styles. Some examples:
|
|
|
|
|
|
|
|
|
|
/* /** /* /* text /* /**
|
|
|
|
|
* text * text text text ** text ** text
|
|
|
|
|
*/ */ */ */ */ */
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
|
* text
|
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
|
Free form text comments:
|
|
|
|
|
In comments with a long delimiter line at the start, the indentation
|
|
|
|
|
is kept unchanged for lines that start with an empty comment line
|
|
|
|
|
prefix. The delimiter line is whatever matches the
|
|
|
|
|
`comment-start-skip' regexp.
|
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
|
|
The variable `c-comment-prefix-regexp' is used to recognize the
|
|
|
|
|
comment line prefix, e.g. the `*' that usually starts every line
|
|
|
|
|
inside a comment.
|
|
|
|
|
|
|
|
|
|
Works with: The `c' syntactic symbol."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((here (point))
|
|
|
|
|
(prefixlen (progn (back-to-indentation)
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(if (looking-at c-current-comment-prefix)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(- (match-end 0) (point))
|
|
|
|
|
0)))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(starterlen
|
|
|
|
|
;; Get the length of the comment starter, not including
|
|
|
|
|
;; the first '/'. We check if the comment prefix matched
|
|
|
|
|
;; on the current line matches the starter or if it
|
|
|
|
|
;; matches comment-start-skip, and choose whichever is
|
|
|
|
|
;; longest.
|
|
|
|
|
(max (save-excursion
|
|
|
|
|
(goto-char (1+ (cdr langelem)))
|
|
|
|
|
(if (and (match-string 0)
|
|
|
|
|
(looking-at (regexp-quote (match-string 0))))
|
|
|
|
|
(- (match-end 0) (match-beginning 0))
|
|
|
|
|
0))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (cdr langelem))
|
|
|
|
|
(looking-at comment-start-skip)
|
|
|
|
|
(- (or (match-end 1)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(point)))
|
|
|
|
|
(point)
|
|
|
|
|
1)))))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(if (and (> starterlen 10) (zerop prefixlen))
|
|
|
|
|
;; The comment has a long starter and the line doesn't have
|
|
|
|
|
;; a nonempty comment prefix. Treat it as free form text
|
|
|
|
|
;; and don't change the indentation.
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (current-column))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(forward-line -1)
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(if (>= (cdr langelem) (point))
|
|
|
|
|
;; On the second line in the comment.
|
|
|
|
|
(if (zerop prefixlen)
|
|
|
|
|
;; No nonempty comment prefix. Align after comment
|
|
|
|
|
;; starter.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(progn
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(goto-char (match-end 0))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
;; The following should not be necessary, since
|
|
|
|
|
;; comment-start-skip should match everything (i.e.
|
|
|
|
|
;; typically whitespace) that leads up to the text.
|
|
|
|
|
;;(if (looking-at "\\([ \t]+\\).+$")
|
|
|
|
|
;; ;; Align with the text that hangs after the
|
|
|
|
|
;; ;; comment starter.
|
|
|
|
|
;; (goto-char (match-end 1)))
|
|
|
|
|
(vector (current-column)))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
;; How long is the comment starter? if greater than the
|
|
|
|
|
;; length of the comment prefix, align left. if less
|
|
|
|
|
;; than or equal, align right. this should also pick up
|
|
|
|
|
;; Javadoc style comments.
|
|
|
|
|
(if (> starterlen prefixlen)
|
|
|
|
|
(progn
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(goto-char (cdr langelem))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (1+ (current-column))))
|
|
|
|
|
(goto-char (+ (cdr langelem) starterlen 1))
|
|
|
|
|
(vector (- (current-column) prefixlen))))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
;; Not on the second line in the comment. If the previous
|
|
|
|
|
;; line has a nonempty comment prefix, align with it.
|
|
|
|
|
;; Otherwise, align with the previous nonempty line, but
|
|
|
|
|
;; align the comment ender with the starter.
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(when (or (not (looking-at c-current-comment-prefix))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(eq (match-beginning 0) (match-end 0)))
|
|
|
|
|
(goto-char here)
|
|
|
|
|
(back-to-indentation)
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(if (looking-at (concat "\\(" c-current-comment-prefix "\\)\\*/"))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(goto-char (cdr langelem))
|
|
|
|
|
(while (and (zerop (forward-line -1))
|
|
|
|
|
(looking-at "^[ \t]*$")))
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(if (< (point) (cdr langelem))
|
|
|
|
|
;; Align with the comment starter rather than
|
|
|
|
|
;; with the code before it.
|
|
|
|
|
(goto-char (cdr langelem)))))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (current-column)))))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-comment (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up a comment start according to `c-comment-only-line-offset'.
|
|
|
|
|
If the comment is lined up with a comment starter on the previous
|
|
|
|
|
line, that alignment is preserved.
|
|
|
|
|
|
|
|
|
|
Works with: comment-intro."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(back-to-indentation)
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(let ((col (current-column)))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(cond
|
1999-12-12 18:24:19 +00:00
|
|
|
|
;; CASE 1: preserve aligned comments
|
|
|
|
|
((save-excursion
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(and (c-backward-single-comment)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(= col (current-column))))
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(vector col)) ; Return an absolute column.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
;; indent as specified by c-comment-only-line-offset
|
|
|
|
|
((not (bolp))
|
|
|
|
|
(or (car-safe c-comment-only-line-offset)
|
|
|
|
|
c-comment-only-line-offset))
|
|
|
|
|
(t
|
|
|
|
|
(or (cdr-safe c-comment-only-line-offset)
|
|
|
|
|
(car-safe c-comment-only-line-offset)
|
|
|
|
|
-1000)) ;jam it against the left side
|
|
|
|
|
))))
|
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(defun c-lineup-knr-region-comment (langelem)
|
|
|
|
|
"Line up a comment in the \"K&R region\" with the declaration.
|
|
|
|
|
That is the region between the function or class header and the
|
|
|
|
|
beginning of the block. E.g:
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
/* This is the main function. */ <- c-lineup-knr-region-comment
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Return nil if called in any other situation, to be useful in list
|
|
|
|
|
expressions.
|
|
|
|
|
|
|
|
|
|
Works with: comment-intro."
|
|
|
|
|
(when (or (assq 'topmost-intro-cont c-syntactic-context)
|
|
|
|
|
(assq 'func-decl-cont c-syntactic-context)
|
|
|
|
|
(assq 'knr-argdecl-intro c-syntactic-context)
|
|
|
|
|
(assq 'lambda-intro-cont c-syntactic-context))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(c-beginning-of-statement-1)
|
|
|
|
|
(vector (current-column)))))
|
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(defun c-lineup-runin-statements (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up statements when the first statement is on the same line as
|
|
|
|
|
the block opening brace. E.g:
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{ puts (\"Hello world!\");
|
|
|
|
|
return 0; <- c-lineup-runin-statements
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
If there is no statement after the opening brace to align with, nil is
|
|
|
|
|
returned. This makes the function usable in list expressions.
|
|
|
|
|
|
|
|
|
|
Works with: The `statement' syntactic symbol."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(if (eq (char-after (cdr langelem)) ?{)
|
|
|
|
|
(save-excursion
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(if (cdr langelem) (goto-char (cdr langelem)))
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(unless (eolp)
|
|
|
|
|
(vector (current-column))))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
(defun c-lineup-math (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up the current line after the equal sign on the first line in
|
|
|
|
|
the statement. If there isn't any, indent with `c-basic-offset'. If
|
|
|
|
|
the current line contains an equal sign too, try to align it with the
|
|
|
|
|
first one.
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
Works with: topmost-intro-cont, statement-cont, arglist-cont,
|
|
|
|
|
arglist-cont-nonempty."
|
|
|
|
|
(let (startpos endpos equalp)
|
|
|
|
|
|
|
|
|
|
(if (eq (car langelem) 'arglist-cont-nonempty)
|
|
|
|
|
;; If it's an arglist-cont-nonempty then we're only interested
|
|
|
|
|
;; in equal signs outside it. We don't search for a "=" on
|
|
|
|
|
;; the current line since that'd have a different nesting
|
|
|
|
|
;; compared to the one we should align with.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(setq endpos (nth 2 c-syntactic-element))
|
|
|
|
|
(narrow-to-region (cdr langelem) endpos)
|
|
|
|
|
(if (setq startpos (c-up-list-backward endpos))
|
|
|
|
|
(setq startpos (1+ startpos))
|
|
|
|
|
(setq startpos (cdr langelem)))))
|
|
|
|
|
|
|
|
|
|
(setq startpos (cdr langelem)
|
|
|
|
|
endpos (point))
|
|
|
|
|
|
|
|
|
|
;; Find a syntactically relevant and unnested "=" token on the
|
|
|
|
|
;; current line. equalp is in that case set to the number of
|
|
|
|
|
;; columns to left shift the current line to align it with the
|
|
|
|
|
;; goal column.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(when (c-syntactic-re-search-forward
|
2003-08-26 11:52:40 +00:00
|
|
|
|
c-assignment-op-regexp
|
|
|
|
|
(c-point 'eol) t t t)
|
|
|
|
|
(setq equalp (- (or (match-beginning 1)
|
|
|
|
|
(match-end 0))
|
|
|
|
|
(c-point 'boi))))))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char startpos)
|
|
|
|
|
(if (or (if (c-syntactic-re-search-forward
|
2003-08-26 11:52:40 +00:00
|
|
|
|
c-assignment-op-regexp
|
|
|
|
|
(min endpos (c-point 'eol)) t t t)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(progn
|
2003-08-26 11:52:40 +00:00
|
|
|
|
(goto-char (or (match-beginning 1)
|
|
|
|
|
(match-end 0)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
nil)
|
|
|
|
|
t)
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(c-forward-syntactic-ws (c-point 'eol))
|
|
|
|
|
(eolp)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
;; There's no equal sign on the line, or there is one but
|
|
|
|
|
;; nothing follows it.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
c-basic-offset
|
2003-07-03 12:30:59 +00:00
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
;; calculate indentation column after equals and ws, unless
|
|
|
|
|
;; our line contains an equals sign
|
|
|
|
|
(if (not equalp)
|
|
|
|
|
(progn
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(setq equalp 0)))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (- (current-column) equalp)))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
)))
|
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(defun c-lineup-cascaded-calls (langelem)
|
|
|
|
|
"Line up \"cascaded calls\" under each other.
|
2003-07-03 12:30:59 +00:00
|
|
|
|
If the line begins with \"->\" or \".\" and the preceding line ends
|
|
|
|
|
with one or more function calls preceded by the same token, then the
|
|
|
|
|
arrow is lined up with the first of those tokens. E.g:
|
2002-04-22 00:35:36 +00:00
|
|
|
|
|
|
|
|
|
result = proc->add(17)->add(18)
|
|
|
|
|
->add(19) + <- c-lineup-cascaded-calls
|
|
|
|
|
offset; <- c-lineup-cascaded-calls (inactive)
|
|
|
|
|
|
|
|
|
|
In any other situation nil is returned to allow use in list
|
|
|
|
|
expressions.
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
Works with: topmost-intro-cont, statement-cont, arglist-cont,
|
|
|
|
|
arglist-cont-nonempty."
|
|
|
|
|
|
|
|
|
|
(if (and (eq (car langelem) 'arglist-cont-nonempty)
|
|
|
|
|
(not (eq (nth 2 c-syntactic-element)
|
|
|
|
|
(c-most-enclosing-brace (c-parse-state)))))
|
|
|
|
|
;; The innermost open paren is not our one, so don't do
|
|
|
|
|
;; anything. This can occur for arglist-cont-nonempty with
|
|
|
|
|
;; nested arglist starts on the same line.
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
(save-excursion
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(back-to-indentation)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(let ((operator (and (looking-at "->\\|\\.")
|
|
|
|
|
(regexp-quote (match-string 0))))
|
|
|
|
|
(stmt-start (cdr langelem)) col)
|
|
|
|
|
|
|
|
|
|
(when (and operator
|
|
|
|
|
(looking-at operator)
|
|
|
|
|
(zerop (c-backward-token-2 1 t stmt-start))
|
|
|
|
|
(eq (char-after) ?\()
|
|
|
|
|
(zerop (c-backward-token-2 2 t stmt-start))
|
|
|
|
|
(looking-at operator))
|
|
|
|
|
(setq col (current-column))
|
|
|
|
|
|
|
|
|
|
(while (and (zerop (c-backward-token-2 1 t stmt-start))
|
|
|
|
|
(eq (char-after) ?\()
|
|
|
|
|
(zerop (c-backward-token-2 2 t stmt-start))
|
|
|
|
|
(looking-at operator))
|
|
|
|
|
(setq col (current-column)))
|
|
|
|
|
|
|
|
|
|
(vector col))))))
|
|
|
|
|
|
|
|
|
|
(defun c-lineup-string-cont (langelem)
|
|
|
|
|
"Line up a continued string under the one it continues.
|
|
|
|
|
A continued string in this sense is where a string literal follows
|
|
|
|
|
directly after another one. E.g:
|
|
|
|
|
|
|
|
|
|
result = prefix + \"A message \"
|
|
|
|
|
\"string.\"; <- c-lineup-string-cont
|
|
|
|
|
|
|
|
|
|
Nil is returned in other situations, to allow stacking with other
|
|
|
|
|
lineup functions.
|
|
|
|
|
|
|
|
|
|
Works with: topmost-intro-cont, statement-cont, arglist-cont,
|
|
|
|
|
arglist-cont-nonempty."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(and (looking-at "\\s\"")
|
|
|
|
|
(let ((quote (char-after)) pos)
|
|
|
|
|
(while (and (progn (c-backward-syntactic-ws)
|
|
|
|
|
(eq (char-before) quote))
|
|
|
|
|
(c-safe (c-backward-sexp) t)
|
|
|
|
|
(/= (setq pos (point)) (c-point 'boi))))
|
|
|
|
|
(when pos
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(vector (current-column)))))))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(defun c-lineup-template-args (langelem)
|
|
|
|
|
"Line up template argument lines under the first argument.
|
|
|
|
|
To allow this function to be used in a list expression, nil is
|
|
|
|
|
returned if there's no template argument on the first line.
|
|
|
|
|
|
|
|
|
|
Works with: template-args-cont."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(c-with-syntax-table c++-template-syntax-table
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(backward-up-list 1)
|
|
|
|
|
(if (and (eq (char-after) ?<)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(zerop (c-forward-token-2 1 nil (c-point 'eol))))
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(vector (current-column))))))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(defun c-lineup-ObjC-method-call (langelem)
|
2003-07-03 12:30:59 +00:00
|
|
|
|
"Line up selector args as Emacs Lisp mode does with function args:
|
1999-12-12 18:24:19 +00:00
|
|
|
|
Go to the position right after the message receiver, and if you are at
|
|
|
|
|
the end of the line, indent the current line c-basic-offset columns
|
|
|
|
|
from the opening bracket; otherwise you are looking at the first
|
|
|
|
|
character of the first method call argument, so lineup the current
|
|
|
|
|
line with it.
|
|
|
|
|
|
|
|
|
|
Works with: objc-method-call-cont."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((extra (save-excursion
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(c-backward-syntactic-ws (cdr langelem))
|
|
|
|
|
(if (eq (char-before) ?:)
|
|
|
|
|
(- c-basic-offset)
|
|
|
|
|
0)))
|
|
|
|
|
(open-bracket-pos (cdr langelem))
|
|
|
|
|
(open-bracket-col (progn
|
|
|
|
|
(goto-char open-bracket-pos)
|
|
|
|
|
(current-column)))
|
|
|
|
|
(target-col (progn
|
|
|
|
|
(forward-char)
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(c-forward-sexp)
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(if (eolp)
|
|
|
|
|
(+ open-bracket-col c-basic-offset)
|
|
|
|
|
(current-column))))
|
|
|
|
|
)
|
|
|
|
|
(- target-col open-bracket-col extra))))
|
|
|
|
|
|
|
|
|
|
(defun c-lineup-ObjC-method-args (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up the colons that separate args.
|
|
|
|
|
The colon on the current line is aligned with the one on the first
|
|
|
|
|
line.
|
|
|
|
|
|
|
|
|
|
Works with: objc-method-args-cont."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((here (c-point 'boi))
|
|
|
|
|
(curcol (progn (goto-char here) (current-column)))
|
|
|
|
|
(eol (c-point 'eol))
|
|
|
|
|
(relpos (cdr langelem))
|
|
|
|
|
(first-col-column (progn
|
|
|
|
|
(goto-char relpos)
|
|
|
|
|
(skip-chars-forward "^:" eol)
|
|
|
|
|
(and (eq (char-after) ?:)
|
|
|
|
|
(current-column)))))
|
|
|
|
|
(if (not first-col-column)
|
|
|
|
|
c-basic-offset
|
|
|
|
|
(goto-char here)
|
|
|
|
|
(skip-chars-forward "^:" eol)
|
|
|
|
|
(if (eq (char-after) ?:)
|
|
|
|
|
(+ curcol (- first-col-column (current-column)))
|
|
|
|
|
c-basic-offset)))))
|
|
|
|
|
|
|
|
|
|
(defun c-lineup-ObjC-method-args-2 (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up the colons that separate args.
|
|
|
|
|
The colon on the current line is aligned with the one on the previous
|
|
|
|
|
line.
|
|
|
|
|
|
|
|
|
|
Works with: objc-method-args-cont."
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((here (c-point 'boi))
|
|
|
|
|
(curcol (progn (goto-char here) (current-column)))
|
|
|
|
|
(eol (c-point 'eol))
|
|
|
|
|
(relpos (cdr langelem))
|
|
|
|
|
(prev-col-column (progn
|
|
|
|
|
(skip-chars-backward "^:" relpos)
|
|
|
|
|
(and (eq (char-before) ?:)
|
|
|
|
|
(- (current-column) 1)))))
|
|
|
|
|
(if (not prev-col-column)
|
|
|
|
|
c-basic-offset
|
|
|
|
|
(goto-char here)
|
|
|
|
|
(skip-chars-forward "^:" eol)
|
|
|
|
|
(if (eq (char-after) ?:)
|
|
|
|
|
(+ curcol (- prev-col-column (current-column)))
|
|
|
|
|
c-basic-offset)))))
|
|
|
|
|
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(defun c-lineup-inexpr-block (langelem)
|
1999-12-12 18:24:19 +00:00
|
|
|
|
"Line up the block for constructs that use a block inside an expression,
|
|
|
|
|
e.g. anonymous classes in Java and lambda functions in Pike. The body
|
|
|
|
|
is aligned with the start of the header, e.g. with the \"new\" or
|
|
|
|
|
\"lambda\" keyword. Returns nil if the block isn't part of such a
|
|
|
|
|
construct.
|
|
|
|
|
|
|
|
|
|
Works with: inlambda, inexpr-statement, inexpr-class."
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(back-to-indentation)
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(let* ((paren-state (c-parse-state))
|
|
|
|
|
(containing-sexp (c-most-enclosing-brace paren-state))
|
|
|
|
|
(res (or (c-looking-at-inexpr-block
|
|
|
|
|
(c-safe-position containing-sexp paren-state)
|
|
|
|
|
containing-sexp)
|
|
|
|
|
(and containing-sexp
|
|
|
|
|
(progn (goto-char containing-sexp)
|
|
|
|
|
(eq (char-after) ?{))
|
|
|
|
|
(progn (setq containing-sexp
|
|
|
|
|
(c-most-enclosing-brace paren-state
|
|
|
|
|
(point)))
|
|
|
|
|
(c-looking-at-inexpr-block
|
|
|
|
|
(c-safe-position containing-sexp paren-state)
|
|
|
|
|
containing-sexp))))))
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(when res
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(goto-char (cdr res))
|
|
|
|
|
(- (current-column)
|
|
|
|
|
(progn
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(current-column)))))))
|
|
|
|
|
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(defun c-lineup-whitesmith-in-block (langelem)
|
|
|
|
|
"Line up lines inside a block in whitesmith style.
|
|
|
|
|
It's done in a way that works both when the opening brace hangs and
|
|
|
|
|
when it doesn't. E.g:
|
|
|
|
|
|
|
|
|
|
something
|
|
|
|
|
{ something {
|
|
|
|
|
foo; <-> foo; <- c-lineup-whitesmith-in-block
|
|
|
|
|
} }
|
|
|
|
|
<--> c-basic-offset
|
|
|
|
|
|
|
|
|
|
In the first case the indentation is kept unchanged, in the
|
|
|
|
|
second `c-basic-offset' is added.
|
|
|
|
|
|
|
|
|
|
Works with: defun-close, defun-block-intro, block-close,
|
2003-07-03 12:30:59 +00:00
|
|
|
|
brace-list-close, brace-list-intro, statement-block-intro and all in*
|
|
|
|
|
symbols, e.g. inclass and inextern-lang."
|
1998-02-17 07:02:18 +00:00
|
|
|
|
(save-excursion
|
2004-08-11 16:22:21 +00:00
|
|
|
|
(+ (progn
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(if (eq (char-syntax (char-after)) ?\()
|
|
|
|
|
c-basic-offset
|
|
|
|
|
0))
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (cdr langelem))
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(if (eq (char-syntax (char-after)) ?\()
|
|
|
|
|
0
|
|
|
|
|
c-basic-offset)))))
|
1998-02-17 07:02:18 +00:00
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
(defun c-lineup-cpp-define (langelem)
|
|
|
|
|
"Line up macro continuation lines according to the indentation of
|
|
|
|
|
the construct preceding the macro. E.g:
|
|
|
|
|
|
|
|
|
|
v beg of preceding constr v beg of preceding constr
|
|
|
|
|
int dribble() {
|
|
|
|
|
const char msg[] = if (!running)
|
|
|
|
|
\"Some text.\"; error(\"Not running!\");
|
|
|
|
|
|
|
|
|
|
#define X(A, B) \ #define X(A, B) \
|
|
|
|
|
do { \ <-> do { \ <- c-lineup-cpp-define
|
|
|
|
|
printf (A, B); \ printf (A, B); \
|
|
|
|
|
} while (0) } while (0)
|
|
|
|
|
|
|
|
|
|
If `c-syntactic-indentation-in-macros' is non-nil, the function
|
|
|
|
|
returns the relative indentation to the macro start line to allow
|
|
|
|
|
accumulation with other offsets. E.g. in the following cases,
|
|
|
|
|
cpp-define-intro is combined with the statement-block-intro that comes
|
|
|
|
|
from the \"do {\" that hangs on the \"#define\" line:
|
|
|
|
|
|
|
|
|
|
int dribble() {
|
|
|
|
|
const char msg[] = if (!running)
|
|
|
|
|
\"Some text.\"; error(\"Not running!\");
|
|
|
|
|
|
|
|
|
|
#define X(A, B) do { \ #define X(A, B) do { \
|
|
|
|
|
printf (A, B); \ <-> printf (A, B); \ <- c-lineup-cpp-define
|
|
|
|
|
this->refs++; \ this->refs++; \
|
|
|
|
|
} while (0) <-> } while (0) <- c-lineup-cpp-define
|
|
|
|
|
|
|
|
|
|
The relative indentation returned by `c-lineup-cpp-define' is zero and
|
2003-07-03 12:30:59 +00:00
|
|
|
|
two, respectively, in these two examples. They are then added to the
|
2002-04-22 00:35:36 +00:00
|
|
|
|
two column indentation that statement-block-intro gives in both cases
|
|
|
|
|
here.
|
|
|
|
|
|
|
|
|
|
If the relative indentation is zero, then nil is returned instead.
|
2003-07-03 12:30:59 +00:00
|
|
|
|
That is useful in a list expression to specify the default indentation
|
|
|
|
|
on the top level.
|
2002-04-22 00:35:36 +00:00
|
|
|
|
|
|
|
|
|
If `c-syntactic-indentation-in-macros' is nil then this function keeps
|
|
|
|
|
the current indentation, except for empty lines \(ignoring the ending
|
|
|
|
|
backslash) where it takes the indentation from the closest preceding
|
|
|
|
|
nonempty line in the macro. If there's no such line in the macro then
|
|
|
|
|
the indentation is taken from the construct preceding it, as described
|
|
|
|
|
above.
|
|
|
|
|
|
|
|
|
|
Works with: cpp-define-intro."
|
|
|
|
|
(let (offset)
|
|
|
|
|
(if c-syntactic-indentation-in-macros
|
|
|
|
|
;; Go to the macro start and do a syntactic analysis of it.
|
|
|
|
|
;; Then remove the cpp-macro element it should contain and
|
|
|
|
|
;; calculate the indentation it then would get.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(c-beginning-of-macro)
|
|
|
|
|
(setq offset (- (c-get-syntactic-indentation
|
|
|
|
|
(delete '(cpp-macro) (c-guess-basic-syntax)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(current-column))))
|
|
|
|
|
(if (zerop offset)
|
|
|
|
|
nil
|
|
|
|
|
offset))
|
|
|
|
|
;; Do not indent syntactically inside the macro.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((macro-start-line (save-excursion
|
|
|
|
|
(goto-char (c-query-macro-start))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(point))))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
;; Check every line while inside the macro.
|
|
|
|
|
(while (and (> (point) macro-start-line)
|
|
|
|
|
(looking-at "[ \t]*\\\\?$")
|
|
|
|
|
(= (forward-line -1) 0)))
|
|
|
|
|
(if (<= (point) macro-start-line)
|
|
|
|
|
;; If we've stepped out of the macro we take the
|
|
|
|
|
;; syntactic offset.
|
|
|
|
|
(setq offset (c-get-syntactic-indentation
|
|
|
|
|
(delete '(cpp-macro) (c-guess-basic-syntax))))
|
|
|
|
|
(setq offset (current-indentation)))
|
|
|
|
|
(if (zerop offset)
|
|
|
|
|
nil
|
|
|
|
|
(vector offset)))))))
|
|
|
|
|
|
|
|
|
|
;; Contributed by Kevin Ryde <user42@zip.com.au>.
|
|
|
|
|
(defun c-lineup-gcc-asm-reg (elem)
|
|
|
|
|
"Line up a gcc asm register under one on a previous line.
|
|
|
|
|
|
|
|
|
|
asm (\"foo %1, %0\\n\"
|
|
|
|
|
\"bar %0, %1\"
|
|
|
|
|
: \"=r\" (w),
|
|
|
|
|
\"=r\" (x)
|
|
|
|
|
: \"0\" (y),
|
|
|
|
|
\"1\" (z));
|
|
|
|
|
|
|
|
|
|
The \"x\" line is aligned to the text after the \":\" on the \"w\" line, and
|
|
|
|
|
similarly \"z\" under \"y\".
|
|
|
|
|
|
|
|
|
|
This is done only in an \"asm\" or \"__asm__\" block, and only to those
|
2003-05-06 17:44:11 +00:00
|
|
|
|
lines mentioned. Anywhere else nil is returned. The usual arrangement is
|
2002-04-22 00:35:36 +00:00
|
|
|
|
to have this routine as an extra feature at the start of arglist lineups, e.g.
|
|
|
|
|
|
|
|
|
|
(c-lineup-gcc-asm-reg c-lineup-arglist)
|
|
|
|
|
|
|
|
|
|
Works with: arglist-cont, arglist-cont-nonempty."
|
|
|
|
|
|
|
|
|
|
(let ((orig-pos (point))
|
|
|
|
|
alignto)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(and
|
|
|
|
|
c-opt-asm-stmt-key
|
|
|
|
|
|
2003-07-03 12:30:59 +00:00
|
|
|
|
;; Don't do anything if the innermost open paren isn't our one.
|
|
|
|
|
;; This can occur for arglist-cont-nonempty with nested arglist
|
|
|
|
|
;; starts on the same line.
|
|
|
|
|
(or (not (eq (car elem) 'arglist-cont-nonempty))
|
|
|
|
|
(eq (elt c-syntactic-element 2)
|
|
|
|
|
(c-most-enclosing-brace (c-parse-state))))
|
|
|
|
|
|
2002-04-22 00:35:36 +00:00
|
|
|
|
;; Find the ":" to align to. Look for this first so as to quickly
|
|
|
|
|
;; eliminate pretty much all cases which are not for us.
|
|
|
|
|
(re-search-backward "^[ \t]*:[ \t]*\\(.\\)?" (cdr elem) t)
|
|
|
|
|
|
|
|
|
|
;; Must have something after the ":".
|
|
|
|
|
(setq alignto (match-beginning 1))
|
|
|
|
|
|
|
|
|
|
;; Don't touch ":" lines themselves.
|
|
|
|
|
(progn (goto-char orig-pos)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(not (looking-at "^[ \t]*:")))
|
|
|
|
|
|
|
|
|
|
;; Only operate in an asm statement.
|
|
|
|
|
(progn (goto-char orig-pos)
|
|
|
|
|
(c-in-gcc-asm-p))
|
|
|
|
|
|
|
|
|
|
(vector (progn (goto-char alignto) (current-column)))))))
|
|
|
|
|
|
1999-12-12 18:24:19 +00:00
|
|
|
|
(defun c-lineup-dont-change (langelem)
|
|
|
|
|
"Do not change the indentation of the current line.
|
|
|
|
|
|
|
|
|
|
Works with: Any syntactic symbol."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(back-to-indentation)
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(vector (current-column))))
|
1998-02-17 07:02:18 +00:00
|
|
|
|
|
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(defun c-snug-do-while (syntax pos)
|
|
|
|
|
"Dynamically calculate brace hanginess for do-while statements.
|
|
|
|
|
Using this function, `while' clauses that end a `do-while' block will
|
|
|
|
|
remain on the same line as the brace that closes that block.
|
|
|
|
|
|
|
|
|
|
See `c-hanging-braces-alist' for how to utilize this function as an
|
|
|
|
|
ACTION associated with `block-close' syntax."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let (langelem)
|
|
|
|
|
(if (and (eq syntax 'block-close)
|
|
|
|
|
(setq langelem (assq 'block-close c-syntactic-context))
|
2003-07-03 12:30:59 +00:00
|
|
|
|
(progn (goto-char (elt langelem 1))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(if (eq (char-after) ?{)
|
1999-02-08 16:53:18 +00:00
|
|
|
|
(c-safe (c-forward-sexp -1)))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(looking-at "\\<do\\>[^_]")))
|
|
|
|
|
'(before)
|
|
|
|
|
'(before after)))))
|
|
|
|
|
|
|
|
|
|
(defun c-gnu-impose-minimum ()
|
2003-11-16 16:55:08 +00:00
|
|
|
|
"Imposes a minimum indentation for lines inside code blocks.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
The variable `c-label-minimum-indentation' specifies the minimum
|
|
|
|
|
indentation amount."
|
2003-07-03 12:30:59 +00:00
|
|
|
|
|
2003-11-16 16:55:08 +00:00
|
|
|
|
(when (and (not
|
|
|
|
|
;; Don't adjust macro or comment-only lines.
|
|
|
|
|
(or (assq 'cpp-macro c-syntactic-context)
|
|
|
|
|
(assq 'comment-intro c-syntactic-context)))
|
|
|
|
|
(c-intersect-lists c-inside-block-syms c-syntactic-context)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(< (current-column) c-label-minimum-indentation)))
|
|
|
|
|
(c-shift-line-indentation (- c-label-minimum-indentation
|
|
|
|
|
(current-indentation)))))
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Useful for c-hanging-semi&comma-criteria
|
1999-12-12 18:24:19 +00:00
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
(defun c-semi&comma-inside-parenlist ()
|
1998-02-17 07:02:18 +00:00
|
|
|
|
"Controls newline insertion after semicolons in parenthesis lists.
|
1997-07-10 07:54:06 +00:00
|
|
|
|
If a comma was inserted, no determination is made. If a semicolon was
|
|
|
|
|
inserted inside a parenthesis list, no newline is added otherwise a
|
|
|
|
|
newline is added. In either case, checking is stopped. This supports
|
|
|
|
|
exactly the old newline insertion behavior."
|
|
|
|
|
;; newline only after semicolon, but only if that semicolon is not
|
|
|
|
|
;; inside a parenthesis list (e.g. a for loop statement)
|
|
|
|
|
(if (not (eq last-command-char ?\;))
|
|
|
|
|
nil ; continue checking
|
|
|
|
|
(if (condition-case nil
|
|
|
|
|
(save-excursion
|
|
|
|
|
(up-list -1)
|
|
|
|
|
(not (eq (char-after) ?\()))
|
|
|
|
|
(error t))
|
|
|
|
|
t
|
|
|
|
|
'stop)))
|
|
|
|
|
|
1998-02-17 07:02:18 +00:00
|
|
|
|
;; Suppresses newlines before non-blank lines
|
|
|
|
|
(defun c-semi&comma-no-newlines-before-nonblanks ()
|
|
|
|
|
"Controls newline insertion after semicolons.
|
|
|
|
|
If a comma was inserted, no determination is made. If a semicolon was
|
|
|
|
|
inserted, and the following line is not blank, no newline is inserted.
|
|
|
|
|
Otherwise, no determination is made."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if (and (= last-command-char ?\;)
|
|
|
|
|
;;(/= (point-max)
|
|
|
|
|
;; (save-excursion (skip-syntax-forward " ") (point))
|
|
|
|
|
(zerop (forward-line 1))
|
2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
CC Mode update to 5.30.10:
* cc-fonts.el (c-font-lock-declarators): Fixed bug where the point
could go past the limit in decoration level 2, thereby causing
errors during interactive fontification.
* cc-mode.el (c-make-inherited-keymap): Fixed cc-bytecomp bug when
the file is evaluated interactively.
* cc-engine.el (c-guess-basic-syntax): Handle operator
declarations somewhat better in C++.
* cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
make use of run-mode-hooks' which has been added in Emacs 21.1.
(c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode,
awk-mode): Use it.
(make-local-hook): Suppress warning about obsoleteness.
* cc-engine.el, cc-align.el, cc-cmds.el
(c-append-backslashes-forward, c-delete-backslashes-forward,
c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
Compensate for return value from forward-line' when it has moved
but not to a different line due to eob.
* cc-engine.el (c-guess-basic-syntax): Fixed anchoring in
objc-method-intro' and objc-method-args-cont'.
2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
CC Mode update to 5.30.10:
* cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
in the copyright statement. Incidentally, change "along with GNU
Emacs" to "along with this program" where it occurs.
* cc-mode.el: Add a fourth parameter t' to the awk-mode autoload,
so that it is interactive, hence can be found by M-x awk-mode
whilst cc-mode is yet to be loaded. Reported by Glenn Morris
<gmorris+emacs@ast.cam.ac.uk>.
* cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
Mode's regexps.
2005-05-23 Kevin Ryde <user42@zip.com.au>:
* cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
c-parse-state, to avoid a lisp error (on bad code).
2005-05-23 00:03:59 +00:00
|
|
|
|
(bolp) ; forward-line has funny behavior at eob.
|
1998-02-17 07:02:18 +00:00
|
|
|
|
(not (looking-at "^[ \t]*$")))
|
|
|
|
|
'stop
|
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
|
|
;; Suppresses new lines after semicolons in one-liners methods
|
|
|
|
|
(defun c-semi&comma-no-newlines-for-oneline-inliners ()
|
|
|
|
|
"Controls newline insertion after semicolons for some one-line methods.
|
|
|
|
|
If a comma was inserted, no determination is made. Newlines are
|
|
|
|
|
suppressed in one-liners, if the line is an in-class inline function.
|
|
|
|
|
For other semicolon contexts, no determination is made."
|
|
|
|
|
(let ((syntax (c-guess-basic-syntax))
|
|
|
|
|
(bol (save-excursion
|
|
|
|
|
(if (c-safe (up-list -1) t)
|
|
|
|
|
(c-point 'bol)
|
|
|
|
|
-1))))
|
|
|
|
|
(if (and (eq last-command-char ?\;)
|
|
|
|
|
(eq (car (car syntax)) 'inclass)
|
|
|
|
|
(eq (car (car (cdr syntax))) 'topmost-intro)
|
|
|
|
|
(= (c-point 'bol) bol))
|
|
|
|
|
'stop
|
|
|
|
|
nil)))
|
|
|
|
|
|
1997-07-10 07:54:06 +00:00
|
|
|
|
|
2001-03-21 12:59:36 +00:00
|
|
|
|
(cc-provide 'cc-align)
|
2001-07-16 07:46:48 +00:00
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
|
;;; arch-tag: 4d71ed28-bf51-4509-a148-f39669669a2e
|
1997-07-10 07:54:06 +00:00
|
|
|
|
;;; cc-align.el ends here
|