diff options
Diffstat (limited to 'lisp/ps-mule.el')
-rw-r--r-- | lisp/ps-mule.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ps-mule.el b/lisp/ps-mule.el index 748cfd560b4..1be2eafba9d 100644 --- a/lisp/ps-mule.el +++ b/lisp/ps-mule.el @@ -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 |