mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(ps-mule-show-warning): If a character is in
ps-print-translation-table, don't treat it as non-printable.
This commit is contained in:
parent
01c5577a87
commit
070860c37a
2 changed files with 7 additions and 1 deletions
|
|
@ -1415,7 +1415,8 @@ FONTTAG should be a string \"/h0\" or \"/h1\"."
|
|||
(goto-char from)
|
||||
(while (and (<= (length char-pos-list) max-unprintable-chars)
|
||||
(re-search-forward "\\cu" to t))
|
||||
(push (cons (preceding-char) (1- (point))) char-pos-list))))
|
||||
(or (aref ps-print-translation-table (preceding-char))
|
||||
(push (cons (preceding-char) (1- (point))) char-pos-list)))))
|
||||
(with-output-to-temp-buffer "*Warning*"
|
||||
(with-current-buffer standard-output
|
||||
(when char-pos-list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue