aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-23 11:20:27 +0000
committerRichard M. Stallman <[email protected]>1993-11-23 11:20:27 +0000
commit988e2aa66b5fac1864a0d58c95a3ffcc02ca6d37 (patch)
tree04018472b11569c39b88c5d81471f01f2d95875e
parentf4a7e5bd470df636724f8f5bda763c9435891dd5 (diff)
(c-indent-region): As first thing, advance to a nonblank line.
-rw-r--r--lisp/progmodes/c-mode.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el
index ddda62454f..429d0bf229 100644
--- a/lisp/progmodes/c-mode.el
+++ b/lisp/progmodes/c-mode.el
@@ -1191,6 +1191,9 @@ If within a string or comment, move by sentences instead of statements."
(defun c-indent-region (start end)
(save-excursion
(goto-char start)
+ ;; Advance to first nonblank line.
+ (skip-chars-forward " \t\n")
+ (beginning-of-line)
(let ((endmark (copy-marker end))
(c-tab-always-indent t))
(while (and (bolp) (not (eolp)))