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/paren.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/paren.el')
-rw-r--r-- | lisp/paren.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/paren.el b/lisp/paren.el index 783a783338b..bdc15a66cc0 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -52,8 +52,7 @@ otherwise)." :type '(choice (const parenthesis) (const expression) (const mixed)) :group 'paren-showing) -(defcustom show-paren-delay - (if (featurep 'lisp-float-type) (/ (float 1) (float 8)) 1) +(defcustom show-paren-delay 0.125 "Time in seconds to delay before showing a matching paren." :type '(number :tag "seconds") :group 'paren-showing) @@ -253,5 +252,4 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time." (provide 'paren) -;; arch-tag: d0969b88-7ac0-4bd0-bd53-e73b892b86a9 ;;; paren.el ends here |