emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 46afc91c9f7: Let 'browse-url-interactive-arg' return more values


From: Jim Porter
Subject: master 46afc91c9f7: Let 'browse-url-interactive-arg' return more values for NEW-WINDOW-FLAG
Date: Sun, 10 Mar 2024 17:08:28 -0400 (EDT)

branch: master
commit 46afc91c9f7e6ee6a7917537c83052e0877fa4f2
Author: Jim Porter <jporterbugs@gmail.com>
Commit: Jim Porter <jporterbugs@gmail.com>

    Let 'browse-url-interactive-arg' return more values for NEW-WINDOW-FLAG
    
    Previously it always returned t or nil for NEW-WINDOW-FLAG, but now it
    can return the actual prefix arg when appropriate.  This lets functions
    for 'browse-url-browser-function' consult it and do more things than
    just open a new window or not (for example, you could use "C--" as the
    prefix arg to do something special in a custom function).
    
    * lisp/net/browse-url.el (browse-url-interactive-arg): Use 'xor' to
    adjust the value of 'current-prefix-arg'.
    (browse-url): Update docstring.
---
 lisp/net/browse-url.el | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index ddc57724343..f22aa19f5e3 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -704,8 +704,10 @@ it defaults to the current region, else to the URL at or 
before
 point.  If invoked with a mouse button, it moves point to the
 position clicked before acting.
 
-This function returns a list (URL NEW-WINDOW-FLAG)
-for use in `interactive'."
+This function returns a list (URL NEW-WINDOW-FLAG) for use in
+`interactive'.  NEW-WINDOW-FLAG is the prefix arg; if
+`browse-url-new-window-flag' is non-nil, invert the prefix arg
+instead."
   (let ((event (elt (this-command-keys) 0)))
     (mouse-set-point event))
   (list (read-string prompt (or (and transient-mark-mode mark-active
@@ -715,8 +717,7 @@ for use in `interactive'."
                                      (buffer-substring-no-properties
                                       (region-beginning) (region-end))))
                                (browse-url-url-at-point)))
-       (not (eq (null browse-url-new-window-flag)
-                (null current-prefix-arg)))))
+       (xor browse-url-new-window-flag current-prefix-arg)))
 
 ;; called-interactive-p needs to be called at a function's top-level, hence
 ;; this macro.  We use that rather than interactive-p because
@@ -879,8 +880,8 @@ The variables `browse-url-browser-function',
 `browse-url-handlers', and `browse-url-default-handlers'
 determine which browser function to use.
 
-This command prompts for a URL, defaulting to the URL at or
-before point.
+Interactively, this command prompts for a URL, defaulting to the
+URL at or before point.
 
 The additional ARGS are passed to the browser function.  See the
 doc strings of the actual functions, starting with
@@ -888,7 +889,9 @@ doc strings of the actual functions, starting with
 significance of ARGS (most of the functions ignore it).
 
 If ARGS are omitted, the default is to pass
-`browse-url-new-window-flag' as ARGS."
+`browse-url-new-window-flag' as ARGS.  Interactively, pass the
+prefix arg as ARGS; if `browse-url-new-window-flag' is non-nil,
+invert the prefix arg instead."
   (interactive (browse-url-interactive-arg "URL: "))
   (unless (called-interactively-p 'interactive)
     (setq args (or args (list browse-url-new-window-flag))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]