aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Goldowsky <[email protected]>1995-03-01 15:47:38 +0000
committerBoris Goldowsky <[email protected]>1995-03-01 15:47:38 +0000
commit52af0e475659371b682d590c483ea470fcff2aa1 (patch)
tree3479a3e254af112b3bf8a3f7b4fa76c87615d1ce
parentac0e96eb6e7aab3368836af7ee78ed939248a04e (diff)
(c-mode, c-fill-paragraph): Remove ^ from paragraph-start & paragraph-separate.
-rw-r--r--lisp/progmodes/c-mode.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el
index 7bc185dd55..97945336ad 100644
--- a/lisp/progmodes/c-mode.el
+++ b/lisp/progmodes/c-mode.el
@@ -220,7 +220,7 @@ if that value is non-nil."
(setq local-abbrev-table c-mode-abbrev-table)
(set-syntax-table c-mode-syntax-table)
(make-local-variable 'paragraph-start)
- (setq paragraph-start (concat "^$\\|" page-delimiter))
+ (setq paragraph-start (concat "$\\|" page-delimiter))
(make-local-variable 'paragraph-separate)
(setq paragraph-separate paragraph-start)
(make-local-variable 'paragraph-ignore-fill-prefix)
@@ -308,11 +308,11 @@ preserving the comment indentation or line-starting decorations."
;; should not be filled into paragraphs they are next to.
(concat
paragraph-start
- "\\|^[ \t]*/\\*[ \t]*$\\|^[ \t]*\\*/[ \t]*$\\|^[ \t/*]*$"))
+ "\\|[ \t]*/\\*[ \t]*$\\|[ \t]*\\*/[ \t]*$\\|[ \t/*]*$"))
(paragraph-separate
(concat
paragraph-separate
- "\\|^[ \t]*/\\*[ \t]*$\\|^[ \t]*\\*/[ \t]*$\\|^[ \t/*]*$")))
+ "\\|[ \t]*/\\*[ \t]*$\\|[ \t]*\\*/[ \t]*$\\|[ \t/*]*$")))
(save-excursion
(beginning-of-line)
;; Move up to first line of this comment.
@@ -419,11 +419,11 @@ preserving the comment indentation or line-starting decorations."
;; should not be filled into paragraphs they are next to.
(concat
paragraph-start
- "\\|^[ \t]*/\\*[ \t]*$\\|^[ \t]*\\*/[ \t]*$\\|^[ \t/*]*$"))
+ "\\|[ \t]*/\\*[ \t]*$\\|[ \t]*\\*/[ \t]*$\\|[ \t/*]*$"))
(paragraph-separate
(concat
paragraph-separate
- "\\|^[ \t]*/\\*[ \t]*$\\|^[ \t]*\\*/[ \t]*$\\|^[ \t/*]*$"))
+ "\\|[ \t]*/\\*[ \t]*$\\|[ \t]*\\*/[ \t]*$\\|[ \t/*]*$"))
(chars-to-delete 0))
(save-restriction
;; Don't fill the comment together with the code following it.