aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/flymake.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2005-05-21 04:53:14 +0000
committerRichard M. Stallman <[email protected]>2005-05-21 04:53:14 +0000
commitadf8a02eb3d00c38ec0252d0344835a1f90ac74d (patch)
treef4e1ed53b11a613dbd22d90f5d714ab70d212778 /lisp/progmodes/flymake.el
parenta3d418482d127433e0bdd690ccd0c8fef4e9354a (diff)
(flymake-makehash): Use with-no-warnings.
Diffstat (limited to 'lisp/progmodes/flymake.el')
-rw-r--r--lisp/progmodes/flymake.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 5463ee3ffa..28a6aae243 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)