diff options
| author | Boris Goldowsky | 1995-03-01 15:41:51 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-01 15:41:51 +0000 |
| commit | 8e32e928fe0427307d4f0856de7b08ce578ec5f1 (patch) | |
| tree | de159521f17c78f92da74c801031adad8a624971 | |
| parent | 35ad468319112e78f6b182ddd3aa14b02f84f2ac (diff) | |
| download | emacs-8e32e928fe0427307d4f0856de7b08ce578ec5f1.tar.gz emacs-8e32e928fe0427307d4f0856de7b08ce578ec5f1.zip | |
(awk-mode): Remove ^ from paragraph-start & paragraph-separate.
| -rw-r--r-- | lisp/progmodes/awk-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 71 | (setq local-abbrev-table awk-mode-abbrev-table) | 71 | (setq local-abbrev-table awk-mode-abbrev-table) |
| 72 | (set-syntax-table awk-mode-syntax-table) | 72 | (set-syntax-table awk-mode-syntax-table) |
| 73 | (make-local-variable 'paragraph-start) | 73 | (make-local-variable 'paragraph-start) |
| 74 | (setq paragraph-start (concat "^$\\|" page-delimiter)) | 74 | (setq paragraph-start (concat "$\\|" page-delimiter)) |
| 75 | (make-local-variable 'paragraph-separate) | 75 | (make-local-variable 'paragraph-separate) |
| 76 | (setq paragraph-separate paragraph-start) | 76 | (setq paragraph-separate paragraph-start) |
| 77 | (make-local-variable 'paragraph-ignore-fill-prefix) | 77 | (make-local-variable 'paragraph-ignore-fill-prefix) |