diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-05-14 11:28:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-05-14 11:28:14 +0000 |
commit | 7fe92d22bde9976a9ed49d57a4cd3df8798154ba (patch) | |
tree | e8ec6eb18680255b95ddb4a0e9ffb1163b7acfa8 /lisp/net/net-utils.el | |
parent | 22458c334233511e32bbc8cddd522df5aeee2f28 (diff) | |
download | emacs-7fe92d22bde9976a9ed49d57a4cd3df8798154ba.tar.gz |
(dig): Use with-no-warnings.
Diffstat (limited to 'lisp/net/net-utils.el')
-rw-r--r-- | lisp/net/net-utils.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el index 4a54702643a..203d19ce14e 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el @@ -468,7 +468,8 @@ If your system's ping continues until interrupted, you can try setting (require 'ffap) (read-from-minibuffer "Lookup host: " - (or (ffap-string-at-point 'machine) ""))))) + (with-no-warnings + (or (ffap-string-at-point 'machine) "")))))) (net-utils-run-program "Dig" (concat "** " |