diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-05-21 04:53:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-05-21 04:53:14 +0000 |
commit | adf8a02eb3d00c38ec0252d0344835a1f90ac74d (patch) | |
tree | f4e1ed53b11a613dbd22d90f5d714ab70d212778 /lisp/progmodes/flymake.el | |
parent | a3d418482d127433e0bdd690ccd0c8fef4e9354a (diff) | |
download | emacs-adf8a02eb3d00c38ec0252d0344835a1f90ac74d.tar.gz emacs-adf8a02eb3d00c38ec0252d0344835a1f90ac74d.tar.bz2 emacs-adf8a02eb3d00c38ec0252d0344835a1f90ac74d.zip |
(flymake-makehash): Use with-no-warnings.
Diffstat (limited to 'lisp/progmodes/flymake.el')
-rw-r--r-- | lisp/progmodes/flymake.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 5463ee3ffa9..28a6aae2435 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -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) |