# HG changeset patch # User Vinicius Jose Latorre # Date 1193882088 0 # Node ID 74fda5245f7ede68ca4d7b19389ee193920995da # Parent b55268b337cd233f4ebf4620aa85c748be585431 Eliminate the check if ps-print was running on Lucid or Epoch emacsen diff -r b55268b337cd -r 74fda5245f7e lisp/ChangeLog --- a/lisp/ChangeLog Mon Oct 29 23:31:22 2007 +0000 +++ b/lisp/ChangeLog Thu Nov 01 01:54:48 2007 +0000 @@ -1,3 +1,8 @@ +2007-10-31 Vinicius Jose Latorre + + * ps-print.el: Eliminate the check if ps-print was running on Lucid or + Epoch emacsen. + 2007-10-27 Vinicius Jose Latorre * ps-print.el: Now detect if text foreground and background colors are diff -r b55268b337cd -r 74fda5245f7e lisp/ps-print.el --- a/lisp/ps-print.el Mon Oct 29 23:31:22 2007 +0000 +++ b/lisp/ps-print.el Thu Nov 01 01:54:48 2007 +0000 @@ -1464,16 +1464,11 @@ (error "`ps-print' requires floating point support")) -(let ((case-fold-search t)) - (cond ((featurep 'xemacs)) - ((string-match "Lucid" emacs-version) - (error "`ps-print' doesn't support Lucid")) - ((string-match "Epoch" emacs-version) - (error "`ps-print' doesn't support Epoch")) - (t - (unless (and (boundp 'emacs-major-version) - (>= emacs-major-version 23)) - (error "`ps-print' only supports Emacs 23 and higher"))))) +(if (featurep 'xemacs) + () + (unless (and (boundp 'emacs-major-version) + (>= emacs-major-version 23)) + (error "`ps-print' only supports Emacs 23 and higher"))) (defconst ps-windows-system