aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Goldowsky1995-03-02 15:32:57 +0000
committerBoris Goldowsky1995-03-02 15:32:57 +0000
commit0608d57e5caa002f56163118db0c94133268d84e (patch)
tree406be3cc99bb51137290399ac13f448e5a017c01
parent6f2096a7d4cc61f903c0cbf1e066703bbfe49eca (diff)
downloademacs-0608d57e5caa002f56163118db0c94133268d84e.tar.gz
emacs-0608d57e5caa002f56163118db0c94133268d84e.zip
(nroff-mode): Remove ^ from paragraph-start & paragraph-separate.
-rw-r--r--lisp/textmodes/nroff-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el
index 9674c362efb..b3258f38e11 100644
--- a/lisp/textmodes/nroff-mode.el
+++ b/lisp/textmodes/nroff-mode.el
@@ -71,9 +71,9 @@ closing requests for requests that are used in matched pairs."
71 (make-local-variable 'page-delimiter) 71 (make-local-variable 'page-delimiter)
72 (setq page-delimiter "^\\.\\(bp\\|SK\\|OP\\)") 72 (setq page-delimiter "^\\.\\(bp\\|SK\\|OP\\)")
73 (make-local-variable 'paragraph-start) 73 (make-local-variable 'paragraph-start)
74 (setq paragraph-start (concat "^[.']\\|" paragraph-start)) 74 (setq paragraph-start (concat "[.']\\|" paragraph-start))
75 (make-local-variable 'paragraph-separate) 75 (make-local-variable 'paragraph-separate)
76 (setq paragraph-separate (concat "^[.']\\|" paragraph-separate)) 76 (setq paragraph-separate (concat "[.']\\|" paragraph-separate))
77 ;; comment syntax added by mit-erl!gildea 18 Apr 86 77 ;; comment syntax added by mit-erl!gildea 18 Apr 86
78 (make-local-variable 'comment-start) 78 (make-local-variable 'comment-start)
79 (setq comment-start "\\\" ") 79 (setq comment-start "\\\" ")