From 16c1fb84b526b54383e265759de7508d6e8b8e3b Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 27 Jul 1999 02:37:24 +0000 Subject: [PATCH] (ps-mule-begin-job): Fix malformed regexp. --- lisp/ps-mule.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- 2.39.5