diff options
author | Glenn Morris <rgm@gnu.org> | 2010-10-21 21:03:55 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-10-21 21:03:55 -0700 |
commit | 9a0dd02d20468a86f29fc3467a8c14d1ba0c6c84 (patch) | |
tree | 75c6939f5431f5838b419f581a898fdb463144b4 /lisp/ps-print.el | |
parent | 2f42e9a28671c675d74d70928525649953bb2144 (diff) | |
download | emacs-9a0dd02d20468a86f29fc3467a8c14d1ba0c6c84.tar.gz |
Support for systems without floats was removed a decade ago.
* lisp/loadup.el: Unconditionally load float-sup.
* lisp/paren.el (show-paren-delay):
* lisp/emacs-lisp/float-sup.el:
* lisp/emulation/cua-base.el (cua-prefix-override-inhibit-delay):
* lisp/obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
(lazy-lock-stealth-verbose): Assume float support.
* lisp/ps-print.el: Assume float support on Emacs.
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Remove non-float branch.
* lisp/obsolete/lazy-lock.el: Remove leading `*' from defcustom docs.
Diffstat (limited to 'lisp/ps-print.el')
-rw-r--r-- | lisp/ps-print.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index c9036a313cb..885fe68be26 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -1466,12 +1466,9 @@ Please send all bug fixes and enhancements to (require 'lpr) -(or (featurep 'lisp-float-type) - (error "`ps-print' requires floating point support")) - - (if (featurep 'xemacs) - () + (or (featurep 'lisp-float-type) + (error "`ps-print' requires floating point support")) (unless (and (boundp 'emacs-major-version) (>= emacs-major-version 23)) (error "`ps-print' only supports Emacs 23 and higher"))) @@ -6726,5 +6723,4 @@ Finish printing job for multi-byte chars. (provide 'ps-print) -;; arch-tag: fb06a585-1112-4206-885d-a57d95d50579 ;;; ps-print.el ends here |