lisp/gnus/gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left double angle quotation mark

This commit is contained in:
Adam Sjøgren 2013-05-20 22:37:06 +00:00 committed by Katsumi Yamaoka
parent 91e8418bab
commit 348afb1554
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-05-20 Adam Sjøgren <asjo@koldfront.dk>
* gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
double angle quotation mark.
2013-05-19 Adam Sjøgren <asjo@koldfront.dk>
* message.el (message-insert-formatted-citation-line): Handle finding

View file

@ -441,7 +441,7 @@ characters when given a pad value."
(delim (aref (match-string 2) 0)))
(if (or (= delim ?\()
(= delim ?\{)
(= delim ?\«))
(= delim ?\u00AB)) ; «
(replace-match (concat "\"("
(cond ((= delim ?\() "mouse")
((= delim ?\{) "face")