From 6b1c1c403b21fbbc4af2dd90d1384a743a6acaaa Mon Sep 17 00:00:00 2001 From: Vinicius Jose Latorre Date: Thu, 1 Nov 2007 01:54:48 +0000 Subject: [PATCH] Eliminate the check if ps-print was running on Lucid or Epoch emacsen --- lisp/ChangeLog | 5 +++++ lisp/ps-print.el | 15 +++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e384be4c020..9dd9c9d4c4b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/ps-print.el b/lisp/ps-print.el index 269c9508a9d..d879d1795d7 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -1464,16 +1464,11 @@ Please send all bug fixes and enhancements to (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 -- 2.39.5