From: Kenichi Handa Date: Tue, 27 Jul 1999 02:37:24 +0000 (+0000) Subject: (ps-mule-begin-job): Fix malformed regexp. X-Git-Tag: emacs-pretest-21.0.90~7355 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16c1fb84b526b54383e265759de7508d6e8b8e3b;p=emacs.git (ps-mule-begin-job): Fix malformed regexp. --- diff --git a/lisp/ps-mule.el b/lisp/ps-mule.el index 3975fe4a339..ddc5ca44bfa 100644 --- a/lisp/ps-mule.el +++ b/lisp/ps-mule.el @@ -1190,7 +1190,7 @@ This checks if all multi-byte characters in the region are printable or not." (string-as-multibyte "[^\040-\176\240-\377]")) ((eq ps-print-control-characters 'control) (string-as-multibyte "[^\040-\176\200-\377]")) - (t (string-as-multibyte "[^\000-\011\013\015-\377")))))) + (t (string-as-multibyte "[^\000-\011\013\015-\377]")))))) ;;;###autoload (defun ps-mule-begin-page ()