diff options
| -rw-r--r-- | lisp/progmodes/c-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el index 41c75c69ddd..aa766148743 100644 --- a/lisp/progmodes/c-mode.el +++ b/lisp/progmodes/c-mode.el | |||
| @@ -320,7 +320,7 @@ preserving the comment indentation or line-starting decorations." | |||
| 320 | ;; given the narrowing) and don't leave it on its own line. | 320 | ;; given the narrowing) and don't leave it on its own line. |
| 321 | (goto-char (point-max)) | 321 | (goto-char (point-max)) |
| 322 | (forward-line -1) | 322 | (forward-line -1) |
| 323 | (search-forward "*/") | 323 | (search-forward "*/" nil 'move) |
| 324 | (beginning-of-line) | 324 | (beginning-of-line) |
| 325 | (if (looking-at "[ \t]*\\*/") | 325 | (if (looking-at "[ \t]*\\*/") |
| 326 | (delete-indentation))))) | 326 | (delete-indentation))))) |