lisp/gnus/gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left double angle quotation mark
This commit is contained in:
parent
91e8418bab
commit
348afb1554
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue