to match the doc strings of functions that use this macro.
+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.
;; 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))