summaryrefslogtreecommitdiff
path: root/lisp/loadup.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-10-21 21:03:55 -0700
committerGlenn Morris <rgm@gnu.org>2010-10-21 21:03:55 -0700
commit9a0dd02d20468a86f29fc3467a8c14d1ba0c6c84 (patch)
tree75c6939f5431f5838b419f581a898fdb463144b4 /lisp/loadup.el
parent2f42e9a28671c675d74d70928525649953bb2144 (diff)
downloademacs-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/loadup.el')
-rw-r--r--lisp/loadup.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 7757a0e5b40..719f8be9c99 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -240,9 +240,8 @@
;; Do it after loading term/foo-win.el since the value of the
;; mouse-wheel-*-event vars depends on those files being loaded or not.
(load "mwheel"))
-(if (fboundp 'atan) ; preload some constants and
- (progn ; floating pt. functions if we have float support.
- (load "emacs-lisp/float-sup")))
+;; Preload some constants and floating point functions.
+(load "emacs-lisp/float-sup")
(load "vc/vc-hooks")
(load "vc/ediff-hook")
@@ -403,5 +402,4 @@
;; no-update-autoloads: t
;; End:
-;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
;;; loadup.el ends here