aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ps-print.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el
index 212c10b1977..cb2ab1d686d 100644
--- a/lisp/ps-print.el
+++ b/lisp/ps-print.el
@@ -2931,8 +2931,10 @@ page-height == bm + print-height + tm - ho - hh
2931 ;; (, ) and \. 2931 ;; (, ) and \.
2932 (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp))) 2932 (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
2933 (let ((special (following-char))) 2933 (let ((special (following-char)))
2934 (delete-char 1) 2934 (if (> (char-bytes special) 1)
2935 (insert (aref ps-string-escape-codes special)))) 2935 (forward-char)
2936 (delete-char 1)
2937 (insert (aref ps-string-escape-codes special)))))
2936 (goto-char (point-max)) 2938 (goto-char (point-max))
2937 (insert ")")) ;insert end-string delimiter 2939 (insert ")")) ;insert end-string delimiter
2938 2940