From: Boris Goldowsky Date: Wed, 1 Mar 1995 15:41:51 +0000 (+0000) Subject: (awk-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4990 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8e32e928fe0427307d4f0856de7b08ce578ec5f1;p=emacs.git (awk-mode): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/progmodes/awk-mode.el b/lisp/progmodes/awk-mode.el index d606f8e06d0..afacf7d8838 100644 --- a/lisp/progmodes/awk-mode.el +++ b/lisp/progmodes/awk-mode.el @@ -71,7 +71,7 @@ with no args, if that value is non-nil." (setq local-abbrev-table awk-mode-abbrev-table) (set-syntax-table awk-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)