diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-05-17 12:16:19 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-05-17 12:16:31 +0200 |
commit | 004ef8a8e162639a5de9b6abe49ce741a6da00c3 (patch) | |
tree | 0e82a4546165c15bfe9d288c3023d44f369b4a1b /lisp/ps-print.el | |
parent | 53e18401e5c3fbbeef952f75b153d240921c1a4d (diff) | |
download | emacs-004ef8a8e162639a5de9b6abe49ce741a6da00c3.tar.gz emacs-004ef8a8e162639a5de9b6abe49ce741a6da00c3.tar.bz2 emacs-004ef8a8e162639a5de9b6abe49ce741a6da00c3.zip |
(ps-begin-job): Remove two unneeded string-as-unibyte calls
* lisp/ps-print.el (ps-begin-job): Remove two unneeded
string-as-unibyte calls to avoid byte compilation warnings.
Diffstat (limited to 'lisp/ps-print.el')
-rw-r--r-- | lisp/ps-print.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 881d6a8f4bc..8569500fe0f 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -5772,9 +5772,9 @@ XSTART YSTART are the relative position for the first page in a sheet.") ps-footer-font-size-internal (ps-get-font-size 'ps-footer-font-size) ps-control-or-escape-regexp (cond ((eq ps-print-control-characters '8-bit) - (string-as-unibyte "[\000-\037\177-\377]")) + "[\000-\037\177-\377]") ((eq ps-print-control-characters 'control-8-bit) - (string-as-unibyte "[\000-\037\177-\237]")) + "[\000-\037\177-\237]") ((eq ps-print-control-characters 'control) "[\000-\037\177]") (t "[\t\n\f]")) @@ -5829,6 +5829,7 @@ XSTART YSTART are the relative position for the first page in a sheet.") ;; They may be overridden by ps-mule-begin-job. ps-basic-plot-string-function 'ps-basic-plot-string ps-encode-header-string-function nil) + (assert (not (multibyte-string-p ps-control-or-escape-regexp))) ;; initialize page dimensions (ps-get-page-dimensions) ;; final check |