Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0608d57e
Commit
0608d57e
authored
Mar 02, 1995
by
Boris Goldowsky
Browse files
(nroff-mode): Remove ^ from paragraph-start & paragraph-separate.
parent
6f2096a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/textmodes/nroff-mode.el
lisp/textmodes/nroff-mode.el
+2
-2
No files found.
lisp/textmodes/nroff-mode.el
View file @
0608d57e
...
...
@@ -71,9 +71,9 @@ closing requests for requests that are used in matched pairs."
(
make-local-variable
'page-delimiter
)
(
setq
page-delimiter
"^\\.\\(bp\\|SK\\|OP\\)"
)
(
make-local-variable
'paragraph-start
)
(
setq
paragraph-start
(
concat
"
^
[.']\\|"
paragraph-start
))
(
setq
paragraph-start
(
concat
"[.']\\|"
paragraph-start
))
(
make-local-variable
'paragraph-separate
)
(
setq
paragraph-separate
(
concat
"
^
[.']\\|"
paragraph-separate
))
(
setq
paragraph-separate
(
concat
"[.']\\|"
paragraph-separate
))
;; comment syntax added by mit-erl!gildea 18 Apr 86
(
make-local-variable
'comment-start
)
(
setq
comment-start
"\\\" "
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment