summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-07-09 15:38:19 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-07-09 15:38:26 +0200
commit0947c44306d59883d5b065f1dc7444a475ecde9b (patch)
tree5a50e477b671b01d724ee6a7a6f2b08d889b69a5 /lisp/textmodes
parentcdaa41ad9269ed9ec64149d1de5f6ca6bcc934d2 (diff)
downloademacs-0947c44306d59883d5b065f1dc7444a475ecde9b.tar.gz
Add more quote-end characters to sentence-end-base
* lisp/textmodes/paragraphs.el (sentence-end-base): Add › and » (bug#36359).
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/paragraphs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 1d12e53c10a..3762010985f 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -165,7 +165,7 @@ to obtain the value of this variable."
:type '(choice regexp (const :tag "Use default value" nil)))
(put 'sentence-end 'safe-local-variable 'string-or-null-p)
-(defcustom sentence-end-base "[.?!…‽][]\"'”’)}]*"
+(defcustom sentence-end-base "[.?!…‽][]\"'”’)}»›]*"
"Regexp matching the basic end of a sentence, not including following space."
:group 'paragraphs
:type 'string