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
7e31e83e
Commit
7e31e83e
authored
May 09, 1995
by
Richard M. Stallman
Browse files
(news-reply-mode): Add ^ to paragraph delimiters.
parent
07e4a20d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/mail/rnewspost.el
lisp/mail/rnewspost.el
+6
-4
No files found.
lisp/mail/rnewspost.el
View file @
7e31e83e
...
...
@@ -131,10 +131,12 @@ C-c C-r caesar rotate all letters by 13 places in the article's body (rot13)."
(
setq
mode-name
"News Reply"
)
(
make-local-variable
'paragraph-separate
)
(
make-local-variable
'paragraph-start
)
(
setq
paragraph-start
(
concat
(
regexp-quote
mail-header-separator
)
"$\\|"
paragraph-start
))
(
setq
paragraph-separate
(
concat
(
regexp-quote
mail-header-separator
)
"$\\|"
paragraph-separate
))
(
setq
paragraph-start
(
concat
"^"
(
regexp-quote
mail-header-separator
)
"$\\|"
paragraph-start
))
(
setq
paragraph-separate
(
concat
"^"
(
regexp-quote
mail-header-separator
)
"$\\|"
paragraph-separate
))
(
run-hooks
'text-mode-hook
'news-reply-mode-hook
))
(
defvar
news-reply-yank-from
...
...
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