# HG changeset patch # User Kenichi Handa # Date 1128063611 0 # Node ID 98039988321657af3b1c41bbec5000919ea2ead3 # Parent cfaa6269b03d25bfdf4aff156908d29470867260 (ps-mule-show-warning): If a character is in ps-print-translation-table, don't treat it as non-printable. diff -r cfaa6269b03d -r 980399883216 lisp/ps-mule.el --- a/lisp/ps-mule.el Fri Sep 30 06:28:53 2005 +0000 +++ b/lisp/ps-mule.el Fri Sep 30 07:00:11 2005 +0000 @@ -1415,7 +1415,8 @@ (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