]> git.eshelyaron.com Git - emacs.git/commitdiff
"]" is not a standard citation prefix character
authornitishch <nitishchandrachinta@gmail.com>
Mon, 23 Sep 2019 10:02:08 +0000 (12:02 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 23 Sep 2019 10:02:08 +0000 (12:02 +0200)
* 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

lisp/mail/sendmail.el

index 1da33a43eb8a2060c261cde01db1efb2a253354a..e71f98282ad8d04204621dba63b1b08149ab64d0 100644 (file)
@@ -249,7 +249,7 @@ regardless of what part of it (if any) is included in the cited text.")
 
 ;;;###autoload
 (defcustom mail-citation-prefix-regexp
-  (purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[]>|]\\)+")
+  (purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[>|]\\)+")
   "Regular expression to match a citation prefix plus whitespace.
 It should match whatever sort of citation prefixes you want to handle,
 with whitespace before and after; it should also match just whitespace.