]> git.eshelyaron.com Git - emacs.git/commitdiff
(browse-url-maybe-new-window): Reverse the sense of the comparison,
authorEli Zaretskii <eliz@gnu.org>
Tue, 19 Feb 2002 11:16:06 +0000 (11:16 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 19 Feb 2002 11:16:06 +0000 (11:16 +0000)
to match the doc strings of functions that use this macro.

lisp/ChangeLog
lisp/net/browse-url.el

index 2f1eed421c521ac90deb28baee389c4035ec2a56..e87561ad08e54f8c97d1b133e3fb4e3bfc77a2bc 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-19  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * net/browse-url.el (browse-url-maybe-new-window): Reverse the
+       sense of the comparison, to match the doc strings of functions
+       that use this macro.
+
 2002-02-19  Per Abrahamsen  <abraham@dina.kvl.dk>
 
        * facemenu.el (describe-text-mode-map): Removed bootstrap kludge.
index 6c574b4a29eaca5c51670520137159b5548d61d1..800cb22cf5dab37bcf422e6c50946744f46e2905 100644 (file)
@@ -557,7 +557,7 @@ negation if a prefix argument was given."
 ;; 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))