aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authornitishch2019-09-23 12:02:08 +0200
committerLars Ingebrigtsen2019-09-23 12:02:08 +0200
commit0f45f383b9e66e90f092a6095b2f0faa19e55af3 (patch)
tree31db36c5e14c55b545d52c5f277eff53b94f85b2 /lisp
parent72b2b4a5dbac0199ae50430cf956ec85651f38b3 (diff)
downloademacs-0f45f383b9e66e90f092a6095b2f0faa19e55af3.tar.gz
emacs-0f45f383b9e66e90f092a6095b2f0faa19e55af3.zip
"]" is not a standard citation prefix character
* lisp/mail/sendmail.el (mail-citation-prefix-regexp): Don't regard "]" as a citation prefix character (bug#25150). This allows some motion commands (like forward-sexp) to behave more as expected in Message mode buffers. Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/sendmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 1da33a43eb8..e71f98282ad 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -249,7 +249,7 @@ regardless of what part of it (if any) is included in the cited text.")
249 249
250;;;###autoload 250;;;###autoload
251(defcustom mail-citation-prefix-regexp 251(defcustom mail-citation-prefix-regexp
252 (purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[]>|]\\)+") 252 (purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[>|]\\)+")
253 "Regular expression to match a citation prefix plus whitespace. 253 "Regular expression to match a citation prefix plus whitespace.
254It should match whatever sort of citation prefixes you want to handle, 254It should match whatever sort of citation prefixes you want to handle,
255with whitespace before and after; it should also match just whitespace. 255with whitespace before and after; it should also match just whitespace.