aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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 ddda62454f5..429d0bf2292 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."
1191(defun c-indent-region (start end) 1191(defun c-indent-region (start end)
1192 (save-excursion 1192 (save-excursion
1193 (goto-char start) 1193 (goto-char start)
1194 ;; Advance to first nonblank line.
1195 (skip-chars-forward " \t\n")
1196 (beginning-of-line)
1194 (let ((endmark (copy-marker end)) 1197 (let ((endmark (copy-marker end))
1195 (c-tab-always-indent t)) 1198 (c-tab-always-indent t))
1196 (while (and (bolp) (not (eolp))) 1199 (while (and (bolp) (not (eolp)))