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

Import from CVS: tag r20-3b20
author cvs
date Mon, 13 Aug 2007 09:56:28 +0200
parents e121b013d1f0
children 489f57a838ef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1 ;;; cc-cmds.el --- user level commands for CC Mode
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97 Free Software Foundation, Inc.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
5 ;; Authors: 1992-1997 Barry A. Warsaw
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6 ;; 1987 Dave Detlefs and Stewart Clamen
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7 ;; 1985 Richard M. Stallman
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
8 ;; Maintainer: cc-mode-help@python.org
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9 ;; Created: 22-Apr-1997 (split from cc-mode.el)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
10 ;; Version: 5.17
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11 ;; Keywords: c languages oop
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13 ;; This file is part of GNU Emacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16 ;; it under the terms of the GNU General Public License as published by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17 ;; the Free Software Foundation; either version 2, or (at your option)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18 ;; any later version.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20 ;; GNU Emacs is distributed in the hope that it will be useful,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23 ;; GNU General Public License for more details.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25 ;; You should have received a copy of the GNU General Public License
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28 ;; Boston, MA 02111-1307, USA.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
30 (eval-when-compile
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
31 (require 'cc-defs))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
32
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
33
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
34 (defun c-calculate-state (arg prevstate)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
35 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
36 ;; arg is nil or zero, toggle the state. If arg is negative, turn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
37 ;; the state off, and if arg is positive, turn the state on
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
38 (if (or (not arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
39 (zerop (setq arg (prefix-numeric-value arg))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
40 (not prevstate)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
41 (> arg 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
42
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
43 ;; Auto-newline and hungry-delete
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
44 (defun c-toggle-auto-state (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
45 "Toggle auto-newline feature.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
46 Optional numeric ARG, if supplied turns on auto-newline when positive,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 turns it off when negative, and just toggles it when zero.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
49 When the auto-newline feature is enabled (as evidenced by the `/a' or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50 `/ah' on the modeline after the mode name) newlines are automatically
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
51 inserted after special characters such as brace, comma, semi-colon,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52 and colon."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 (setq c-auto-newline (c-calculate-state arg c-auto-newline))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
55 (c-update-modeline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 (defun c-toggle-hungry-state (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59 "Toggle hungry-delete-key feature.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
60 Optional numeric ARG, if supplied turns on hungry-delete when positive,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61 turns it off when negative, and just toggles it when zero.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63 When the hungry-delete-key feature is enabled (as evidenced by the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64 `/h' or `/ah' on the modeline after the mode name) the delete key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65 gobbles all preceding whitespace in one fell swoop."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67 (setq c-hungry-delete-key (c-calculate-state arg c-hungry-delete-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
68 (c-update-modeline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
69 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
70
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
71 (defun c-toggle-auto-hungry-state (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
72 "Toggle auto-newline and hungry-delete-key features.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
73 Optional numeric ARG, if supplied turns on auto-newline and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
74 hungry-delete when positive, turns them off when negative, and just
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
75 toggles them when zero.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
76
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
77 See `c-toggle-auto-state' and `c-toggle-hungry-state' for details."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
78 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
79 (setq c-auto-newline (c-calculate-state arg c-auto-newline))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
80 (setq c-hungry-delete-key (c-calculate-state arg c-hungry-delete-key))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
81 (c-update-modeline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
82 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
83
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
84
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
85 ;; Electric keys
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
86
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
87 ;; Note: In XEmacs 20.3 the Delete and BackSpace keysyms have been
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
88 ;; separated and "\177" is no longer an alias for both keys. Also,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
89 ;; the variable delete-key-deletes-forward controls in which direction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
90 ;; the Delete keysym deletes characters. The functions
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
91 ;; c-electric-delete and c-electric-backspace attempt to deal with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
92 ;; this new functionality. For Emacs 19 and XEmacs 19 backwards
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
93 ;; compatibility, the old behavior has moved to c-electric-backspace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
94 ;; and c-backspace-function.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
95
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
96 (defun c-electric-backspace (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
97 "Deletes preceding character or whitespace.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
98 If `c-hungry-delete-key' is non-nil, as evidenced by the \"/h\" or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
99 \"/ah\" string on the mode line, then all preceding whitespace is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
100 consumed. If however an ARG is supplied, or `c-hungry-delete-key' is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
101 nil, or point is inside a literal then the function in the variable
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
102 `c-backspace-function' is called.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
103
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
104 See also \\[c-electric-delete]."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
105 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
106 (if (or (not c-hungry-delete-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
107 arg
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
108 (c-in-literal))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
109 (funcall c-backspace-function (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
110 (let ((here (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
111 (skip-chars-backward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
112 (if (/= (point) here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
113 (delete-region (point) here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
114 (funcall c-backspace-function 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
115 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
116
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
117 (defun c-electric-delete (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
118 "Deletes preceding or following character or whitespace.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
119
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
120 The behavior of this function depends on the variable
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
121 `delete-key-deletes-forward'. If this variable is nil (or does not
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
122 exist, as in older Emacsen), then this function behaves identical to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
123 \\[c-electric-backspace].
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
124
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
125 If `delete-key-deletes-forward' is non-nil, then deletion occurs in
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
126 the forward direction. So if `c-hungry-delete-key' is non-nil, as
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
127 evidenced by the \"/h\" or \"/ah\" string on the mode line, then all
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
128 following whitespace is consumed. If however an ARG is supplied, or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
129 `c-hungry-delete-key' is nil, or point is inside a literal then the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
130 function in the variable `c-delete-function' is called."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
131 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
132 (if (and (boundp 'delete-key-deletes-forward)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
133 delete-key-deletes-forward)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
134 (if (or (not c-hungry-delete-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
135 arg
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
136 (c-in-literal))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
137 (funcall c-delete-function (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
138 (let ((here (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
139 (skip-chars-forward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
140 (if (/= (point) here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
141 (delete-region (point) here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
142 (funcall c-delete-function 1))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
143 ;; act just like c-electric-backspace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
144 (c-electric-backspace arg)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
145
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
146 (defun c-electric-pound (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
147 "Electric pound (`#') insertion.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
148 Inserts a `#' character specially depending on the variable
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
149 `c-electric-pound-behavior'. If a numeric ARG is supplied, or if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
150 point is inside a literal, nothing special happens."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
151 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
152 (if (or (c-in-literal)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
153 arg
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
154 (not (memq 'alignleft c-electric-pound-behavior)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
155 ;; do nothing special
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
156 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
157 ;; place the pound character at the left edge
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
158 (let ((pos (- (point-max) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
159 (bolp (bolp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
160 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
161 (delete-horizontal-space)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
162 (insert-char last-command-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
163 (and (not bolp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
164 (goto-char (- (point-max) pos)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
165 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
166
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
167 (defun c-electric-brace (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
168 "Insert a brace.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
169
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
170 If the auto-newline feature is turned on, as evidenced by the \"/a\"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
171 or \"/ah\" string on the mode line, newlines are inserted before and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
172 after braces based on the value of `c-hanging-braces-alist'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
173
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
174 Also, the line is re-indented unless a numeric ARG is supplied, there
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
175 are non-whitespace characters present on the line after the brace, or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
176 the brace is inserted inside a literal."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
177 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
178 (let* ((c-state-cache (c-parse-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
179 (safepos (c-safe-position (point) c-state-cache))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
180 (literal (c-in-literal safepos)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
181 ;; if we're in a literal, or we're not at the end of the line, or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
182 ;; a numeric arg is provided, or auto-newlining is turned off,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
183 ;; then just insert the character.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
184 (if (or literal arg
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
185 ; (not c-auto-newline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
186 (not (looking-at "[ \t]*$")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
187 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
188 (let* ((syms '(class-open class-close defun-open defun-close
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
189 inline-open inline-close brace-list-open brace-list-close
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
190 brace-list-intro brace-list-entry block-open block-close
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
191 substatement-open statement-case-open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
192 extern-lang-open extern-lang-close))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
193 ;; we want to inhibit blinking the paren since this will
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
194 ;; be most disruptive. we'll blink it ourselves later on
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
195 (old-blink-paren blink-paren-function)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
196 blink-paren-function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
197 (insertion-point (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
198 delete-temp-newline
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
199 (preserve-p (and (not (bobp))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
200 (eq ?\ (char-syntax (char-before)))))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
201 ;; shut this up too
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
202 (c-echo-syntactic-information-p nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
203 (syntax (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
204 ;; only insert a newline if there is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
205 ;; non-whitespace behind us
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
206 (if (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
207 (skip-chars-backward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
208 (not (bolp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
209 (progn (newline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
210 (setq delete-temp-newline t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
211 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
212 ;; state cache doesn't change
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
213 (c-guess-basic-syntax)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
214 (newlines (and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
215 c-auto-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
216 (or (c-lookup-lists syms syntax c-hanging-braces-alist)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
217 '(ignore before after)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
218 ;; If syntax is a function symbol, then call it using the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
219 ;; defined semantics.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
220 (if (and (not (consp (cdr newlines)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
221 (functionp (cdr newlines)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
222 (let ((c-syntactic-context syntax))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
223 (setq newlines
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
224 (funcall (cdr newlines) (car newlines) insertion-point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
225 ;; does a newline go before the open brace?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
226 (if (memq 'before newlines)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
227 ;; we leave the newline we've put in there before,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
228 ;; but we need to re-indent the line above
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
229 (let ((pos (- (point-max) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
230 (here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
231 (c-state-cache c-state-cache))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
232 (forward-line -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
233 ;; we may need to update the cache. this should still be
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
234 ;; faster than recalculating the state in many cases
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
235 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
236 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
237 (narrow-to-region here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
238 (if (and (c-safe (progn (backward-up-list -1) t))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
239 (memq (char-before) '(?\) ?}))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
240 (progn (widen)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
241 (c-safe (progn (forward-sexp -1) t))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
242 (setq c-state-cache
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
243 (c-hack-state (point) 'open c-state-cache))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
244 (if (and (car c-state-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
245 (not (consp (car c-state-cache)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
246 (<= (point) (car c-state-cache)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
247 (setq c-state-cache (cdr c-state-cache))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
248 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
249 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
250 (shift (c-indent-line)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
251 (setq c-state-cache (c-adjust-state (c-point 'bol) here
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
252 (- shift) c-state-cache)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
253 (goto-char (- (point-max) pos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
254 ;; if the buffer has changed due to the indentation, we
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
255 ;; need to recalculate syntax for the current line, but
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
256 ;; we won't need to update the state cache.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
257 (if (/= (point) here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
258 (setq syntax (c-guess-basic-syntax))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
259 ;; must remove the newline we just stuck in (if we really did it)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
260 (and delete-temp-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
261 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
262 ;; if there is whitespace before point, then preserve
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
263 ;; at least one space.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
264 (delete-indentation)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
265 (just-one-space)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
266 (if (not preserve-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
267 (delete-char -1))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
268 ;; since we're hanging the brace, we need to recalculate
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
269 ;; syntax. Update the state to accurately reflect the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
270 ;; beginning of the line. We punt if we cross any open or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
271 ;; closed parens because its just too hard to modify the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
272 ;; known state. This limitation will be fixed in v5.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
273 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
274 (let ((bol (c-point 'bol)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
275 (if (zerop (car (parse-partial-sexp bol (1- (point)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
276 (setq c-state-cache (c-whack-state bol c-state-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
277 syntax (c-guess-basic-syntax))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
278 ;; gotta punt. this requires some horrible kludgery
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
279 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
280 (makunbound 'c-state-cache)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
281 (setq c-state-cache (c-parse-state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
282 syntax nil))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
283 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
284 ;; now adjust the line's indentation. don't update the state
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
285 ;; cache since c-guess-basic-syntax isn't called when the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
286 ;; syntax is passed to c-indent-line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
287 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
288 (shift (c-indent-line syntax)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
289 (setq c-state-cache (c-adjust-state (c-point 'bol) here
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
290 (- shift) c-state-cache)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
291 ;; Do all appropriate clean ups
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
292 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
293 (pos (- (point-max) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
294 mbeg mend)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
295 ;; clean up empty defun braces
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
296 (if (and c-auto-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
297 (memq 'empty-defun-braces c-cleanup-list)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
298 (eq last-command-char ?\})
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
299 (c-intersect-lists '(defun-close class-close inline-close)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
300 syntax)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
301 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
302 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
303 (skip-chars-backward " \t\n")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
304 (eq (char-before) ?\{))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
305 ;; make sure matching open brace isn't in a comment
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
306 (not (c-in-literal)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
307 (delete-region (point) (1- here)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
308 ;; clean up brace-else-brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
309 (if (and c-auto-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
310 (memq 'brace-else-brace c-cleanup-list)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
311 (eq last-command-char ?\{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
312 (re-search-backward "}[ \t\n]*else[ \t\n]*{" nil t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
313 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
314 (setq mbeg (match-beginning 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
315 mend (match-end 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
316 (= mend here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
317 (not (c-in-literal)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
318 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
319 (delete-region mbeg mend)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
320 (insert "} else {")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
321 ;; clean up brace-elseif-brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
322 (if (and c-auto-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
323 (memq 'brace-elseif-brace c-cleanup-list)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
324 (eq last-command-char ?\{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
325 (re-search-backward "}[ \t\n]*else[ \t\n]+if[ \t\n]*" nil t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
326 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
327 (goto-char (match-end 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
328 (c-safe (forward-sexp 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
329 (skip-chars-forward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
330 (setq mbeg (match-beginning 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
331 mend (match-end 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
332 (= here (1+ (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
333 (not (c-in-literal)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
334 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
335 (delete-region mbeg mend)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
336 (insert "} else if ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
337 (goto-char (- (point-max) pos))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
338 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
339 ;; does a newline go after the brace?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
340 (if (memq 'after newlines)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
341 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
342 (newline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
343 ;; update on c-state-cache
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
344 (let* ((bufpos (- (point) 2))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
345 (which (if (eq (char-after bufpos) ?{) 'open 'close))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
346 (c-state-cache (c-hack-state bufpos which c-state-cache)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
347 (c-indent-line))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
348 ;; blink the paren
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
349 (and (eq last-command-char ?\})
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
350 old-blink-paren
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
351 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
352 (c-backward-syntactic-ws safepos)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
353 (funcall old-blink-paren)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
354 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
355
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
356 (defun c-electric-slash (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
357 "Insert a slash character.
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
358
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
359 Indent the line as a comment, if:
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
360
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
361 1. The slash is second of a `//' line oriented comment introducing
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
362 token and we are on a comment-only-line, or
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
363
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
364 2. The slash is part of a `*/' token that closes a block oriented
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
365 comment.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
366
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
367 If numeric ARG is supplied or point is inside a literal, indentation
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
368 is inhibited."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
369 (interactive "P")
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
370 (let* ((ch (char-before))
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
371 (indentp (and (not arg)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
372 (eq last-command-char ?/)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
373 (or (and (eq ch ?/)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
374 (not (c-in-literal)))
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
375 (and (eq ch ?*)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
376 (c-in-literal)))
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
377 ))
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
378 ;; shut this up
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
379 (c-echo-syntactic-information-p nil))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
380 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
381 (if indentp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
382 (c-indent-line))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
383
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
384 (defun c-electric-star (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
385 "Insert a star character.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
386 If the star is the second character of a C style comment introducing
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
387 construct, and we are on a comment-only-line, indent line as comment.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
388 If numeric ARG is supplied or point is inside a literal, indentation
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
389 is inhibited."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
390 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
391 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
392 ;; if we are in a literal, or if arg is given do not re-indent the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
393 ;; current line, unless this star introduces a comment-only line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
394 (if (and (not arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
395 (memq (c-in-literal) '(c))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
396 (eq (char-before) ?*)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
397 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
398 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
399 (skip-chars-backward "*")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
400 (if (eq (char-before) ?/)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
401 (forward-char -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
402 (skip-chars-backward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
403 (bolp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
404 ;; shut this up
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
405 (let (c-echo-syntactic-information-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
406 (c-indent-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
407 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
408
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
409 (defun c-electric-semi&comma (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
410 "Insert a comma or semicolon.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
411 When the auto-newline feature is turned on, as evidenced by the \"/a\"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
412 or \"/ah\" string on the mode line, a newline might be inserted. See
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
413 the variable `c-hanging-semi&comma-criteria' for how newline insertion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
414 is determined.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
415
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
416 When semicolon is inserted, the line is re-indented unless a numeric
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
417 arg is supplied, point is inside a literal, or there are
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
418 non-whitespace characters on the line following the semicolon."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
419 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
420 (let* ((lim (c-most-enclosing-brace (c-parse-state)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
421 (literal (c-in-literal lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
422 (here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
423 ;; shut this up
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
424 (c-echo-syntactic-information-p nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
425 (if (or literal
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
426 arg
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
427 (not (looking-at "[ \t]*$")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
428 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
429 ;; do some special stuff with the character
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
430 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
431 ;; do all cleanups, reindentations, and newline insertions, but
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
432 ;; only if c-auto-newline is turned on
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
433 (if (not c-auto-newline) nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
434 ;; clean ups
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
435 (let ((pos (- (point-max) (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
436 (if (and (or (and
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
437 (eq last-command-char ?,)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
438 (memq 'list-close-comma c-cleanup-list))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
439 (and
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
440 (eq last-command-char ?\;)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
441 (memq 'defun-close-semi c-cleanup-list)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
442 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
443 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
444 (skip-chars-backward " \t\n")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
445 (eq (char-before) ?}))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
446 ;; make sure matching open brace isn't in a comment
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
447 (not (c-in-literal lim)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
448 (delete-region (point) here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
449 (goto-char (- (point-max) pos)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
450 ;; re-indent line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
451 (c-indent-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
452 ;; check to see if a newline should be added
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
453 (let ((criteria c-hanging-semi&comma-criteria)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
454 answer add-newline-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
455 (while criteria
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
456 (setq answer (funcall (car criteria)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
457 ;; only nil value means continue checking
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
458 (if (not answer)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
459 (setq criteria (cdr criteria))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
460 (setq criteria nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
461 ;; only 'stop specifically says do not add a newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
462 (setq add-newline-p (not (eq answer 'stop)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
463 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
464 (if add-newline-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
465 (progn (newline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
466 (c-indent-line)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
467 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
468
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
469 (defun c-electric-colon (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
470 "Insert a colon.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
471
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
472 If the auto-newline feature is turned on, as evidenced by the \"/a\"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
473 or \"/ah\" string on the mode line, newlines are inserted before and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
474 after colons based on the value of `c-hanging-colons-alist'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
475
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
476 Also, the line is re-indented unless a numeric ARG is supplied, there
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
477 are non-whitespace characters present on the line after the colon, or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
478 the colon is inserted inside a literal.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
479
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
480 This function cleans up double colon scope operators based on the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
481 value of `c-cleanup-list'."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
482 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
483 (let* ((bod (c-point 'bod))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
484 (literal (c-in-literal bod))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
485 syntax newlines
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
486 ;; shut this up
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
487 (c-echo-syntactic-information-p nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
488 (if (or literal
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
489 arg
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
490 (not (looking-at "[ \t]*$")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
491 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
492 ;; insert the colon, then do any specified cleanups
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
493 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
494 (let ((pos (- (point-max) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
495 (here (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
496 (if (and c-auto-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
497 (memq 'scope-operator c-cleanup-list)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
498 (eq (char-before) ?:)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
499 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
500 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
501 (skip-chars-backward " \t\n")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
502 (eq (char-before) ?:))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
503 (not (c-in-literal))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
504 (not (eq (char-after (- (point) 2)) ?:)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
505 (delete-region (point) (1- here)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
506 (goto-char (- (point-max) pos)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
507 ;; lets do some special stuff with the colon character
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
508 (setq syntax (c-guess-basic-syntax)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
509 ;; some language elements can only be determined by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
510 ;; checking the following line. Lets first look for ones
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
511 ;; that can be found when looking on the line with the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
512 ;; colon
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
513 newlines
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
514 (and c-auto-newline
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
515 (or (c-lookup-lists '(case-label label access-label)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
516 syntax c-hanging-colons-alist)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
517 (c-lookup-lists '(member-init-intro inher-intro)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
518 (prog2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
519 (insert "\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
520 (c-guess-basic-syntax)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
521 (delete-char -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
522 c-hanging-colons-alist))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
523 ;; indent the current line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
524 (c-indent-line syntax)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
525 ;; does a newline go before the colon? Watch out for already
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
526 ;; non-hung colons. However, we don't unhang them because that
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
527 ;; would be a cleanup (and anti-social).
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
528 (if (and (memq 'before newlines)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
529 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
530 (skip-chars-backward ": \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
531 (not (bolp))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
532 (let ((pos (- (point-max) (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
533 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
534 (newline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
535 (c-indent-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
536 (goto-char (- (point-max) pos))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
537 ;; does a newline go after the colon?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
538 (if (memq 'after (cdr-safe newlines))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
539 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
540 (newline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
541 (c-indent-line)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
542 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
543
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
544 (defun c-electric-lt-gt (arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
545 "Insert a less-than, or greater-than character.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
546 When the auto-newline feature is turned on, as evidenced by the \"/a\"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
547 or \"/ah\" string on the mode line, the line will be re-indented if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
548 the character inserted is the second of a C++ style stream operator
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
549 and the buffer is in C++ mode.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
550
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
551 The line will also not be re-indented if a numeric argument is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
552 supplied, or point is inside a literal."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
553 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
554 (let ((indentp (and (not arg)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
555 (eq (char-before) last-command-char)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
556 (not (c-in-literal))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
557 ;; shut this up
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
558 (c-echo-syntactic-information-p nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
559 (self-insert-command (prefix-numeric-value arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
560 (if indentp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
561 (c-indent-line))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
562
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
563
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
564
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
565 ;; better movement routines for ThisStyleOfVariablesCommonInCPlusPlus
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
566 ;; originally contributed by Terry_Glanfield.Southern@rxuk.xerox.com
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
567 (defun c-forward-into-nomenclature (&optional arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
568 "Move forward to end of a nomenclature section or word.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
569 With arg, to it arg times."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
570 (interactive "p")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
571 (let ((case-fold-search nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
572 (if (> arg 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
573 (re-search-forward "\\W*\\([A-Z]*[a-z0-9]*\\)" (point-max) t arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
574 (while (and (< arg 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
575 (re-search-backward
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
576 "\\(\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\W\\w+\\)"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
577 (point-min) 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
578 (forward-char 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
579 (setq arg (1+ arg)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
580 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
581
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
582 (defun c-backward-into-nomenclature (&optional arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
583 "Move backward to beginning of a nomenclature section or word.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
584 With optional ARG, move that many times. If ARG is negative, move
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
585 forward."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
586 (interactive "p")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
587 (c-forward-into-nomenclature (- arg))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
588 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
589
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
590 (defun c-scope-operator ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
591 "Insert a double colon scope operator at point.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
592 No indentation or other \"electric\" behavior is performed."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
593 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
594 (insert "::"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
595
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
596
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
597 (defun c-beginning-of-statement (&optional count lim sentence-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
598 "Go to the beginning of the innermost C statement.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
599 With prefix arg, go back N - 1 statements. If already at the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
600 beginning of a statement then go to the beginning of the preceding
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
601 one. If within a string or comment, or next to a comment (only
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
602 whitespace between), move by sentences instead of statements.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
603
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
604 When called from a program, this function takes 3 optional args: the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
605 repetition count, a buffer position limit which is the farthest back
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
606 to search, and a flag saying whether to do sentence motion when in a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
607 comment."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
608 (interactive (list (prefix-numeric-value current-prefix-arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
609 nil t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
610 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
611 (count (or count 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
612 (lim (or lim (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
613 state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
614 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
615 (goto-char lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
616 (setq state (parse-partial-sexp (point) here nil nil)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
617 (if (and sentence-flag
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
618 (or (nth 3 state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
619 (nth 4 state)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
620 ;; skipping forward into a comment?
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
621 (and (> 0 count)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
622 (save-excursion
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
623 (skip-chars-forward " \t\n")
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
624 (or (eobp)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
625 (looking-at comment-start-skip))))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
626 (and (< 0 count)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
627 (save-excursion
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
628 (skip-chars-backward " \t\n")
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
629 (goto-char (- (point) 2))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
630 (looking-at "\\*/")))))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
631 (forward-sentence (- count))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
632 (while (> count 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
633 (c-beginning-of-statement-1 lim)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
634 (setq count (1- count)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
635 (while (< count 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
636 (c-end-of-statement-1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
637 (setq count (1+ count))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
638 ;; its possible we've been left up-buf of lim
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
639 (goto-char (max (point) lim))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
640 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
641 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
642
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
643 (defun c-end-of-statement (&optional count lim sentence-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
644 "Go to the end of the innermost C statement.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
645
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
646 With prefix arg, go forward N - 1 statements. Move forward to end of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
647 the next statement if already at end. If within a string or comment,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
648 move by sentences instead of statements.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
649
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
650 When called from a program, this function takes 3 optional args: the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
651 repetition count, a buffer position limit which is the farthest back
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
652 to search, and a flag saying whether to do sentence motion when in a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
653 comment."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
654 (interactive (list (prefix-numeric-value current-prefix-arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
655 nil t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
656 (c-beginning-of-statement (- (or count 1)) lim sentence-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
657 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
658
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
659
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
660 ;; set up electric character functions to work with pending-del,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
661 ;; (a.k.a. delsel) mode. All symbols get the t value except
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
662 ;; the functions which delete, which gets 'supersede.
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
663 (mapcar
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
664 (function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
665 (lambda (sym)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
666 (put sym 'delete-selection t) ; for delsel (Emacs)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
667 (put sym 'pending-delete t))) ; for pending-del (XEmacs)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
668 '(c-electric-pound
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
669 c-electric-brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
670 c-electric-slash
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
671 c-electric-star
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
672 c-electric-semi&comma
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
673 c-electric-lt-gt
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
674 c-electric-colon))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
675 (put 'c-electric-delete 'delete-selection 'supersede) ; delsel
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
676 (put 'c-electric-delete 'pending-delete 'supersede) ; pending-del
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
677 (put 'c-electric-backspace 'delete-selection 'supersede) ; delsel
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
678 (put 'c-electric-backspace 'pending-delete 'supersede) ; pending-del
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
679
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
680
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
681 ;; This is used by indent-for-comment to decide how much to indent a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
682 ;; comment in C code based on its context.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
683 (defun c-comment-indent ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
684 (if (looking-at (concat "^\\(" c-comment-start-regexp "\\)"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
685 0 ;Existing comment at bol stays there.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
686 (let ((opoint (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
687 placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
688 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
689 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
690 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
691 ;; CASE 1: A comment following a solitary close-brace should
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
692 ;; have only one space.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
693 ((looking-at (concat "[ \t]*}[ \t]*\\($\\|"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
694 c-comment-start-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
695 "\\)"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
696 (search-forward "}")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
697 (1+ (current-column)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
698 ;; CASE 2: 2 spaces after #endif
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
699 ((or (looking-at "^#[ \t]*endif[ \t]*")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
700 (looking-at "^#[ \t]*else[ \t]*"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
701 7)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
702 ;; CASE 3: when comment-column is nil, calculate the offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
703 ;; according to c-offsets-alist. E.g. identical to hitting
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
704 ;; TAB.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
705 ((and c-indent-comments-syntactically-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
706 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
707 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
708 (or (looking-at comment-start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
709 (eolp))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
710 (let ((syntax (c-guess-basic-syntax)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
711 ;; BOGOSITY ALERT: if we're looking at the eol, its
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
712 ;; because indent-for-comment hasn't put the comment-start
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
713 ;; in the buffer yet. this will screw up the syntactic
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
714 ;; analysis so we kludge in the necessary info. Another
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
715 ;; kludge is that if we're at the bol, then we really want
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
716 ;; to ignore any anchoring as specified by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
717 ;; c-comment-only-line-offset since it doesn't apply here.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
718 (if (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
719 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
720 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
721 (eolp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
722 (c-add-syntax 'comment-intro))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
723 (let ((c-comment-only-line-offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
724 (if (consp c-comment-only-line-offset)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
725 c-comment-only-line-offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
726 (cons c-comment-only-line-offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
727 c-comment-only-line-offset))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
728 (apply '+ (mapcar 'c-get-offset syntax)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
729 ;; CASE 4: use comment-column if previous line is a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
730 ;; comment-only line indented to the left of comment-column
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
731 ((save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
732 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
733 (and (not (bobp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
734 (forward-line -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
735 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
736 (prog1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
737 (looking-at c-comment-start-regexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
738 (setq placeholder (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
739 (goto-char placeholder)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
740 (if (< (current-column) comment-column)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
741 comment-column
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
742 (current-column)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
743 ;; CASE 5: If comment-column is 0, and nothing but space
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
744 ;; before the comment, align it at 0 rather than 1.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
745 ((progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
746 (goto-char opoint)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
747 (skip-chars-backward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
748 (and (= comment-column 0) (bolp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
749 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
750 ;; CASE 6: indent at comment column except leave at least one
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
751 ;; space.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
752 (t (max (1+ (current-column))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
753 comment-column))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
754 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
755
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
756
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
757 ;; for proposed new variable comment-line-break-function
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
758 (defun c-comment-line-break-function (&optional soft)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
759 ;; we currently don't do anything with soft line breaks
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
760 (let ((literal (c-in-literal)))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
761 (cond
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
762 ((eq literal 'string))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
763 ((or (not c-comment-continuation-stars)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
764 (not literal))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
765 (indent-new-comment-line soft))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
766 (t (let ((here (point))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
767 (leader c-comment-continuation-stars))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
768 (back-to-indentation)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
769 ;; are we looking at a block or lines style comment?
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
770 (if (and (looking-at (concat "\\(" c-comment-start-regexp
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
771 "\\)[ \t]+"))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
772 (string-equal (match-string 1) "//"))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
773 ;; line style
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
774 (setq leader "// "))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
775 (goto-char here)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
776 (delete-region (progn (skip-chars-backward " \t") (point))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
777 (progn (skip-chars-forward " \t") (point)))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
778 (newline)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
779 ;; to avoid having an anchored comment that c-indent-line will
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
780 ;; trip up on
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
781 (insert " " leader)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 183
diff changeset
782 (c-indent-line))))))
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
783
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
784 ;; advice for indent-new-comment-line for older Emacsen
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
785 (if (boundp 'comment-line-break-function)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
786 nil
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
787 (require 'advice)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
788 (defadvice indent-new-comment-line (around c-line-break-advice activate)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
789 (if (or (not c-buffer-is-cc-mode)
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
790 (not (c-in-literal))
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
791 (not c-comment-continuation-stars))
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
792 ad-do-it
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
793 (c-comment-line-break-function (ad-get-arg 0)))))
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
794
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
795 ;; used by outline-minor-mode
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
796 (defun c-outline-level ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
797 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
798 (skip-chars-forward "\t ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
799 (current-column)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
800
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
801
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
802 (defun c-up-conditional (count)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
803 "Move back to the containing preprocessor conditional, leaving mark behind.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
804 A prefix argument acts as a repeat count. With a negative argument,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
805 move forward to the end of the containing preprocessor conditional.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
806 When going backwards, `#elif' is treated like `#else' followed by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
807 `#if'. When going forwards, `#elif' is ignored."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
808 (interactive "p")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
809 (c-forward-conditional (- count) t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
810 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
811
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
812 (defun c-backward-conditional (count &optional up-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
813 "Move back across a preprocessor conditional, leaving mark behind.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
814 A prefix argument acts as a repeat count. With a negative argument,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
815 move forward across a preprocessor conditional."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
816 (interactive "p")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
817 (c-forward-conditional (- count) up-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
818 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
819
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
820 (defun c-forward-conditional (count &optional up-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
821 "Move forward across a preprocessor conditional, leaving mark behind.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
822 A prefix argument acts as a repeat count. With a negative argument,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
823 move backward across a preprocessor conditional."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
824 (interactive "p")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
825 (let* ((forward (> count 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
826 (increment (if forward -1 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
827 (search-function (if forward 're-search-forward 're-search-backward))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
828 (new))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
829 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
830 (while (/= count 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
831 (let ((depth (if up-flag 0 -1)) found)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
832 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
833 ;; Find the "next" significant line in the proper direction.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
834 (while (and (not found)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
835 ;; Rather than searching for a # sign that
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
836 ;; comes at the beginning of a line aside from
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
837 ;; whitespace, search first for a string
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
838 ;; starting with # sign. Then verify what
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
839 ;; precedes it. This is faster on account of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
840 ;; the fastmap feature of the regexp matcher.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
841 (funcall search-function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
842 "#[ \t]*\\(if\\|elif\\|endif\\)"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
843 nil t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
844 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
845 ;; Now verify it is really a preproc line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
846 (if (looking-at "^[ \t]*#[ \t]*\\(if\\|elif\\|endif\\)")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
847 (let ((prev depth))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
848 ;; Update depth according to what we found.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
849 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
850 (cond ((looking-at "[ \t]*#[ \t]*endif")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
851 (setq depth (+ depth increment)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
852 ((looking-at "[ \t]*#[ \t]*elif")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
853 (if (and forward (= depth 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
854 (setq found (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
855 (t (setq depth (- depth increment))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
856 ;; If we are trying to move across, and we find an
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
857 ;; end before we find a beginning, get an error.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
858 (if (and (< prev 0) (< depth prev))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
859 (error (if forward
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
860 "No following conditional at this level"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
861 "No previous conditional at this level")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
862 ;; When searching forward, start from next line so
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
863 ;; that we don't find the same line again.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
864 (if forward (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
865 ;; If this line exits a level of conditional, exit
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
866 ;; inner loop.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
867 (if (< depth 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
868 (setq found (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
869 ;; else
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
870 (if forward (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
871 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
872 (or found
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
873 (error "No containing preprocessor conditional"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
874 (goto-char (setq new found)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
875 (setq count (+ count increment))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
876 (push-mark)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
877 (goto-char new))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
878 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
879
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
880
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
881 ;; commands to indent lines, regions, defuns, and expressions
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
882 (defun c-indent-command (&optional whole-exp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
883 "Indent current line as C code, and/or insert some whitespace.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
884
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
885 If `c-tab-always-indent' is t, always just indent the current line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
886 If nil, indent the current line only if point is at the left margin or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
887 in the line's indentation; otherwise insert some whitespace[*]. If
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
888 other than nil or t, then some whitespace[*] is inserted only within
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
889 literals (comments and strings) and inside preprocessor directives,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
890 but the line is always reindented.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
891
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
892 A numeric argument, regardless of its value, means indent rigidly all
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
893 the lines of the expression starting after point so that this line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
894 becomes properly indented. The relative indentation among the lines
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
895 of the expression are preserved.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
896
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
897 [*] The amount and kind of whitespace inserted is controlled by the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
898 variable `c-insert-tab-function', which is called to do the actual
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
899 insertion of whitespace. Normally the function in this variable
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
900 just inserts a tab character, or the equivalent number of spaces,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
901 depending on the variable `indent-tabs-mode'."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
902
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
903 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
904 (let ((bod (c-point 'bod)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
905 (if whole-exp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
906 ;; If arg, always indent this line as C
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
907 ;; and shift remaining lines of expression the same amount.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
908 (let ((shift-amt (c-indent-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
909 beg end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
910 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
911 (if (eq c-tab-always-indent t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
912 (beginning-of-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
913 (setq beg (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
914 (forward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
915 (setq end (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
916 (goto-char beg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
917 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
918 (setq beg (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
919 (if (> end beg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
920 (indent-code-rigidly beg end (- shift-amt) "#")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
921 ;; No arg supplied, use c-tab-always-indent to determine
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
922 ;; behavior
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
923 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
924 ;; CASE 1: indent when at column zero or in lines indentation,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
925 ;; otherwise insert a tab
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
926 ((not c-tab-always-indent)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
927 (if (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
928 (skip-chars-backward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
929 (not (bolp)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
930 (funcall c-insert-tab-function)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
931 (c-indent-line)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
932 ;; CASE 2: just indent the line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
933 ((eq c-tab-always-indent t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
934 (c-indent-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
935 ;; CASE 3: if in a literal, insert a tab, but always indent the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
936 ;; line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
937 (t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
938 (if (c-in-literal bod)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
939 (funcall c-insert-tab-function))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
940 (c-indent-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
941 )))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
942
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
943 (defun c-indent-exp (&optional shutup-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
944 "Indent each line in balanced expression following point.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
945 Optional SHUTUP-P if non-nil, inhibits message printing and error checking."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
946 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
947 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
948 end progress-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
949 (unwind-protect
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
950 (let ((c-echo-syntactic-information-p nil) ;keep quiet for speed
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
951 (start (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
952 ;; try to be smarter about finding the range of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
953 ;; lines to indent. skip all following
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
954 ;; whitespace. failing that, try to find any
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
955 ;; opening brace on the current line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
956 (skip-chars-forward " \t\n")
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
957 (if (memq (char-after) '(?\( ?\[ ?\{))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
958 (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
959 (let ((state (parse-partial-sexp (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
960 (c-point 'eol))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
961 (and (nth 1 state)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
962 (goto-char (nth 1 state))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
963 (memq (char-after) '(?\( ?\[ ?\{))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
964 (point)))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
965 ;; find balanced expression end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
966 (setq end (and (c-safe (progn (forward-sexp 1) t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
967 (point-marker)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
968 ;; sanity check
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
969 (and (not start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
970 (not shutup-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
971 (error "Cannot find start of balanced expression to indent."))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
972 (and (not end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
973 (not shutup-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
974 (error "Cannot find end of balanced expression to indent."))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
975 (c-progress-init start end 'c-indent-exp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
976 (setq progress-p t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
977 (goto-char start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
978 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
979 (while (< (point) end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
980 (if (not (looking-at "[ \t]*$"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
981 (c-indent-line))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
982 (c-progress-update)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
983 (forward-line 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
984 ;; make sure marker is deleted
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
985 (and end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
986 (set-marker end nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
987 (and progress-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
988 (c-progress-fini 'c-indent-exp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
989 (goto-char here))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
990
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
991 (defun c-indent-defun ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
992 "Re-indents the current top-level function def, struct or class declaration."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
993 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
994 (let ((here (point-marker))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
995 (c-echo-syntactic-information-p nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
996 (brace (c-least-enclosing-brace (c-parse-state))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
997 (if brace
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
998 (goto-char brace)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
999 (beginning-of-defun))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1000 ;; if we're sitting at b-o-b, it might be because there was no
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1001 ;; least enclosing brace and we were sitting on the defun's open
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1002 ;; brace.
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1003 (if (and (bobp) (not (eq (char-after) ?\{)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1004 (goto-char here))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1005 ;; if defun-prompt-regexp is non-nil, b-o-d might not leave us at
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1006 ;; the open brace. I consider this an Emacs bug.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1007 (and (boundp 'defun-prompt-regexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1008 defun-prompt-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1009 (looking-at defun-prompt-regexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1010 (goto-char (match-end 0)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1011 ;; catch all errors in c-indent-exp so we can 1. give more
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1012 ;; meaningful error message, and 2. restore point
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1013 (unwind-protect
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1014 (c-indent-exp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1015 (goto-char here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1016 (set-marker here nil))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1017
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1018 (defun c-indent-region (start end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1019 ;; Indent every line whose first char is between START and END inclusive.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1020 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1021 (goto-char start)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1022 ;; Advance to first nonblank line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1023 (skip-chars-forward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1024 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1025 (let (endmark)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1026 (unwind-protect
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1027 (let ((c-tab-always-indent t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1028 ;; shut up any echo msgs on indiv lines
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1029 (c-echo-syntactic-information-p nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1030 fence)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1031 (c-progress-init start end 'c-indent-region)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1032 (setq endmark (copy-marker end))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1033 (while (and (bolp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1034 (not (eobp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1035 (< (point) endmark))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1036 ;; update progress
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1037 (c-progress-update)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1038 ;; Indent one line as with TAB.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1039 (let (nextline sexpend sexpbeg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1040 ;; skip blank lines
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1041 (skip-chars-forward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1042 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1043 ;; indent the current line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1044 (c-indent-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1045 (setq fence (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1046 (if (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1047 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1048 (looking-at "[ \t]*#"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1049 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1050 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1051 ;; Find beginning of following line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1052 (setq nextline (c-point 'bonl))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1053 ;; Find first beginning-of-sexp for sexp extending past
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1054 ;; this line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1055 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1056 (while (< (point) nextline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1057 (condition-case nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1058 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1059 (forward-sexp 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1060 (setq sexpend (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1061 (error (setq sexpend nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1062 (goto-char nextline)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1063 (c-forward-syntactic-ws))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1064 (if sexpend
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1065 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1066 ;; make sure the sexp we found really starts on the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1067 ;; current line and extends past it
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1068 (goto-char sexpend)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1069 (setq sexpend (point-marker))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1070 (c-safe (backward-sexp 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1071 (setq sexpbeg (point))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1072 (if (and sexpbeg (< sexpbeg fence))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1073 (setq sexpbeg fence)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1074 ;; check to see if the next line starts a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1075 ;; comment-only line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1076 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1077 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1078 (skip-chars-forward " \t")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1079 (if (looking-at c-comment-start-regexp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1080 (setq sexpbeg (c-point 'bol))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1081 ;; If that sexp ends within the region, indent it all at
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1082 ;; once, fast.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1083 (condition-case nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1084 (if (and sexpend
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1085 (> sexpend nextline)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1086 (<= sexpend endmark))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1087 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1088 (goto-char sexpbeg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1089 (c-indent-exp 'shutup)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1090 (c-progress-update)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1091 (goto-char sexpend)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1092 (error
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1093 (goto-char sexpbeg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1094 (c-indent-line)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1095 ;; Move to following line and try again.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1096 (and sexpend
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1097 (markerp sexpend)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1098 (set-marker sexpend nil))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1099 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1100 (setq fence (point))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1101 (set-marker endmark nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1102 (c-progress-fini 'c-indent-region)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1103 (c-echo-parsing-error)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1104 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1105
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1106 (defun c-mark-function ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1107 "Put mark at end of a C, C++, or Objective-C defun, point at beginning."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1108 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1109 (let ((here (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1110 ;; there should be a c-point position for 'eod
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1111 (eod (save-excursion (end-of-defun) (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1112 (state (c-parse-state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1113 brace)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1114 (while state
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1115 (setq brace (car state))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1116 (if (consp brace)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1117 (goto-char (cdr brace))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1118 (goto-char brace))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1119 (setq state (cdr state)))
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1120 (if (eq (char-after) ?{)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1121 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1122 (forward-line -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1123 (while (not (or (bobp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1124 (looking-at "[ \t]*$")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1125 (forward-line -1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1126 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1127 (skip-chars-forward " \t\n"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1128 (push-mark here)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1129 (push-mark eod nil t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1130
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1131
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1132 ;; for progress reporting
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1133 (defvar c-progress-info nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1134
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1135 (defun c-progress-init (start end context)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1136 ;; start the progress update messages. if this emacs doesn't have a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1137 ;; built-in timer, just be dumb about it
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1138 (if (not (fboundp 'current-time))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1139 (message "indenting region... (this may take a while)")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1140 ;; if progress has already been initialized, do nothing. otherwise
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1141 ;; initialize the counter with a vector of:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1142 ;; [start end lastsec context]
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1143 (if c-progress-info
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1144 ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1145 (setq c-progress-info (vector start
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1146 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1147 (goto-char end)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1148 (point-marker))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1149 (nth 1 (current-time))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1150 context))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1151 (message "indenting region..."))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1152
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1153 (defun c-progress-update ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1154 ;; update progress
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1155 (if (not (and c-progress-info c-progress-interval))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1156 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1157 (let ((now (nth 1 (current-time)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1158 (start (aref c-progress-info 0))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1159 (end (aref c-progress-info 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1160 (lastsecs (aref c-progress-info 2)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1161 ;; should we update? currently, update happens every 2 seconds,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1162 ;; what's the right value?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1163 (if (< c-progress-interval (- now lastsecs))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1164 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1165 (message "indenting region... (%d%% complete)"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1166 (/ (* 100 (- (point) start)) (- end start)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1167 (aset c-progress-info 2 now)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1168 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1169
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1170 (defun c-progress-fini (context)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1171 ;; finished
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1172 (if (or (eq context (aref c-progress-info 3))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1173 (eq context t))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1174 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1175 (set-marker (aref c-progress-info 1) nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1176 (setq c-progress-info nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1177 (message "indenting region...done"))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1178
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1179
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1180
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1181 ;;; This page handles insertion and removal of backslashes for C macros.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1182
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1183 (defun c-backslash-region (from to delete-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1184 "Insert, align, or delete end-of-line backslashes on the lines in the region.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1185 With no argument, inserts backslashes and aligns existing backslashes.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1186 With an argument, deletes the backslashes.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1187
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1188 This function does not modify blank lines at the start of the region.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1189 If the region ends at the start of a line, it always deletes the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1190 backslash (if any) at the end of the previous line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1191
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1192 You can put the region around an entire macro definition and use this
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1193 command to conveniently insert and align the necessary backslashes."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1194 (interactive "r\nP")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1195 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1196 (goto-char from)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1197 (let ((column c-backslash-column)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1198 (endmark (make-marker)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1199 (move-marker endmark to)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1200 ;; Compute the smallest column number past the ends of all the lines.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1201 (if (not delete-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1202 (while (< (point) to)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1203 (end-of-line)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1204 (if (eq (char-before) ?\\)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1205 (progn (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1206 (skip-chars-backward " \t")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1207 (setq column (max column (1+ (current-column))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1208 (forward-line 1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1209 ;; Adjust upward to a tab column, if that doesn't push past the margin.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1210 (if (> (% column tab-width) 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1211 (let ((adjusted (* (/ (+ column tab-width -1) tab-width) tab-width)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1212 (if (< adjusted (window-width))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1213 (setq column adjusted))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1214 ;; Don't modify blank lines at start of region.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1215 (goto-char from)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1216 (while (and (< (point) endmark) (eolp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1217 (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1218 ;; Add or remove backslashes on all the lines.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1219 (while (< (point) endmark)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1220 (if (and (not delete-flag)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1221 ;; Un-backslashify the last line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1222 ;; if the region ends right at the start of the next line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1223 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1224 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1225 (< (point) endmark)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1226 (c-append-backslash column)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1227 (c-delete-backslash))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1228 (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1229 (move-marker endmark nil)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1230 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1231
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1232 (defun c-append-backslash (column)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1233 (end-of-line)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1234 (if (eq (char-before) ?\\)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1235 (progn (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1236 (delete-horizontal-space)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1237 (indent-to column))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1238 (indent-to column)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1239 (insert "\\")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1240
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1241 (defun c-delete-backslash ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1242 (end-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1243 (or (bolp)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1244 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1245 (forward-char -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1246 (if (looking-at "\\\\")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1247 (delete-region (1+ (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1248 (progn (skip-chars-backward " \t") (point)))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1249
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1250
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1251 (defun c-fill-paragraph (&optional arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1252 "Like \\[fill-paragraph] but handles C and C++ style comments.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1253 If any of the current line is a comment or within a comment,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1254 fill the comment or the paragraph of it that point is in,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1255 preserving the comment indentation or line-starting decorations.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1256
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1257 Optional prefix ARG means justify paragraph as well."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1258 (interactive "P")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1259 (let* (comment-start-place
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1260 (first-line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1261 ;; Check for obvious entry to comment.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1262 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1263 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1264 (skip-chars-forward " \t\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1265 (and (looking-at comment-start-skip)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1266 (setq comment-start-place (point)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1267 (re1 "\\|[ \t]*/\\*[ \t]*$\\|[ \t]*\\*/[ \t]*$\\|[ \t/*]*$"))
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
1268 (if (save-excursion
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
1269 (beginning-of-line)
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
1270 (looking-at ".*//"))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1271 (let ((fill-prefix fill-prefix)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1272 ;; Lines containing just a comment start or just an end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1273 ;; should not be filled into paragraphs they are next
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1274 ;; to.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1275 (paragraph-start (concat paragraph-start re1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1276 (paragraph-separate (concat paragraph-separate re1)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1277 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1278 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1279 ;; Move up to first line of this comment.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1280 (while (and (not (bobp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1281 (looking-at "[ \t]*//[ \t]*[^ \t\n]"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1282 (forward-line -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1283 (if (not (looking-at ".*//[ \t]*[^ \t\n]"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1284 (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1285 ;; Find the comment start in this line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1286 (re-search-forward "[ \t]*//[ \t]*")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1287 ;; Set the fill-prefix to be what all lines except the first
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1288 ;; should start with. But do not alter a user set fill-prefix.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1289 (if (null fill-prefix)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1290 (setq fill-prefix (buffer-substring (match-beginning 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1291 (match-end 0))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1292 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1293 ;; Narrow down to just the lines of this comment.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1294 (narrow-to-region (c-point 'bol)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1295 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1296 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1297 (while (looking-at fill-prefix)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1298 (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1299 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1300 (fill-paragraph arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1301 t)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1302 ;; else C style comments
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1303 (if (or first-line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1304 ;; t if we enter a comment between start of function and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1305 ;; this line.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1306 (eq (c-in-literal) 'c)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1307 ;; t if this line contains a comment starter.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1308 (setq first-line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1309 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1310 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1311 (prog1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1312 (re-search-forward comment-start-skip
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1313 (save-excursion (end-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1314 (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1315 t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1316 (setq comment-start-place (point))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1317 ;; Inside a comment: fill one comment paragraph.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1318 (let ((fill-prefix
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1319 ;; The prefix for each line of this paragraph
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1320 ;; is the appropriate part of the start of this line,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1321 ;; up to the column at which text should be indented.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1322 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1323 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1324 (if (looking-at "[ \t]*/\\*.*\\*/")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1325 (progn (re-search-forward comment-start-skip)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1326 (make-string (current-column) ?\ ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1327 (if first-line (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1328
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1329 (let ((line-width (progn (end-of-line) (current-column))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1330 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1331 (prog1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1332 (buffer-substring
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1333 (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1334
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1335 ;; How shall we decide where the end of the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1336 ;; fill-prefix is?
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1337 (progn
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1338 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1339 (skip-chars-forward " \t*" (c-point 'eol))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1340 ;; kludge alert, watch out for */, in
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1341 ;; which case fill-prefix should *not*
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1342 ;; be "*"!
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1343 (if (and (eq (char-after) ?/)
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
1344 (eq (char-before) ?*))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1345 (forward-char -1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1346 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1347
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1348 ;; If the comment is only one line followed
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1349 ;; by a blank line, calling move-to-column
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1350 ;; above may have added some spaces and tabs
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1351 ;; to the end of the line; the fill-paragraph
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1352 ;; function will then delete it and the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1353 ;; newline following it, so we'll lose a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1354 ;; blank line when we shouldn't. So delete
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1355 ;; anything move-to-column added to the end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1356 ;; of the line. We record the line width
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1357 ;; instead of the position of the old line
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1358 ;; end because move-to-column might break a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1359 ;; tab into spaces, and the new characters
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1360 ;; introduced there shouldn't be deleted.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1361
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1362 ;; If you can see a better way to do this,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1363 ;; please make the change. This seems very
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1364 ;; messy to me.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1365 (delete-region (progn (move-to-column line-width)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1366 (point))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1367 (progn (end-of-line) (point))))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1368
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1369 ;; Lines containing just a comment start or just an end
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1370 ;; should not be filled into paragraphs they are next
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1371 ;; to.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1372 (paragraph-start (concat paragraph-start re1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1373 (paragraph-separate (concat paragraph-separate re1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1374 (chars-to-delete 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1375 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1376 (save-restriction
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1377 ;; Don't fill the comment together with the code
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1378 ;; following it. So temporarily exclude everything
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1379 ;; before the comment start, and everything after the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1380 ;; line where the comment ends. If comment-start-place
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1381 ;; is non-nil, the comment starter is there. Otherwise,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1382 ;; point is inside the comment.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1383 (narrow-to-region (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1384 (if comment-start-place
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1385 (goto-char comment-start-place)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1386 (search-backward "/*"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1387 (if (and (not c-hanging-comment-starter-p)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1388 (looking-at
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1389 (concat c-comment-start-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1390 "[ \t]*$")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1391 (forward-line 1))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1392 ;; Protect text before the comment
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1393 ;; start by excluding it. Add
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1394 ;; spaces to bring back proper
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1395 ;; indentation of that point.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1396 (let ((column (current-column)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1397 (prog1 (point)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1398 (setq chars-to-delete column)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1399 (insert-char ?\ column))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1400 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1401 (if comment-start-place
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1402 (goto-char (+ comment-start-place 2)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1403 (search-forward "*/" nil 'move)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1404 (forward-line 1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1405 (point)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1406 (fill-paragraph arg)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1407 (save-excursion
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1408 ;; Delete the chars we inserted to avoid clobbering
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1409 ;; the stuff before the comment start.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1410 (goto-char (point-min))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1411 (if (> chars-to-delete 0)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1412 (delete-region (point) (+ (point) chars-to-delete)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1413 ;; Find the comment ender (should be on last line of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1414 ;; buffer, given the narrowing) and don't leave it on
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1415 ;; its own line, unless that's the style that's desired.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1416 (goto-char (point-max))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1417 (forward-line -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1418 (search-forward "*/" nil 'move)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1419 (beginning-of-line)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1420 (if (and c-hanging-comment-ender-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1421 (looking-at "[ \t]*\\*/"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1422 ;(delete-indentation)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1423 (let ((fill-column (+ fill-column 9999)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1424 (forward-line -1)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1425 (fill-region-as-paragraph (point) (point-max))))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1426 t)))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1427
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1428
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1429 (provide 'cc-cmds)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1430 ;;; cc-cmds.el ends here