(ps-output-string-prim): Don't quote multibyte characters.
This commit is contained in:
parent
0140c6007b
commit
bb58920cd3
1 changed files with 4 additions and 2 deletions
|
@ -2931,8 +2931,10 @@ page-height == bm + print-height + tm - ho - hh
|
|||
;; (, ) and \.
|
||||
(while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
|
||||
(let ((special (following-char)))
|
||||
(delete-char 1)
|
||||
(insert (aref ps-string-escape-codes special))))
|
||||
(if (> (char-bytes special) 1)
|
||||
(forward-char)
|
||||
(delete-char 1)
|
||||
(insert (aref ps-string-escape-codes special)))))
|
||||
(goto-char (point-max))
|
||||
(insert ")")) ;insert end-string delimiter
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue