changeset 43416:e1ebc8ff2a53

(browse-url-maybe-new-window): Reverse the sense of the comparison, to match the doc strings of functions that use this macro.
author Eli Zaretskii <eliz@gnu.org>
date Tue, 19 Feb 2002 11:14:40 +0000
parents 59c97b8695ee
children 39769f818134
files lisp/net/browse-url.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/net/browse-url.el	Tue Feb 19 11:07:20 2002 +0000
+++ b/lisp/net/browse-url.el	Tue Feb 19 11:14:40 2002 +0000
@@ -557,7 +557,7 @@
 ;; interactive-p needs to be called at a function's top-level, hence
 ;; the macro.
 (defmacro browse-url-maybe-new-window (arg)
-  `(if (interactive-p)
+  `(if (not (interactive-p))
        ,arg
      browse-url-new-window-flag))