diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-02 19:37:13 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-02 19:37:13 +0000 |
commit | 753cf36ffc79b7cdc61dd916a7819c6d5d28cac7 (patch) | |
tree | dccae0ae3915b38c6fec5c0fa4a843d6b4cdf5c2 /lisp | |
parent | 97405f5689dfcd40bf3ef94dc2a47c2dade0dd85 (diff) | |
download | emacs-753cf36ffc79b7cdc61dd916a7819c6d5d28cac7.tar.gz |
(browse-url-netscape): Check for w32 window-system symbol.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/browse-url.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/browse-url.el b/lisp/browse-url.el index 2a53337cbe9..344769ad8f6 100644 --- a/lisp/browse-url.el +++ b/lisp/browse-url.el @@ -653,7 +653,7 @@ used instead of `browse-url-new-window-p'." (concat "netscape " url) nil browse-url-netscape-program (append browse-url-netscape-arguments - (if (string-equal "win32" window-system) + (if (eq window-system 'w32) (list url) (if new-window '("-noraise")) (list "-remote" |