1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(flymake-makehash): Use with-no-warnings.

This commit is contained in:
Richard M. Stallman 2005-05-21 04:53:14 +00:00
parent a3d418482d
commit adf8a02eb3

View file

@ -47,7 +47,8 @@
(defsubst flymake-makehash (&optional test)
(if (fboundp 'make-hash-table)
(if test (make-hash-table :test test) (make-hash-table))
(makehash test)))
(with-no-warnings
(makehash test))))
(defalias 'flymake-float-time
(if (fboundp 'float-time)