diff options
| author | Lars Ingebrigtsen | 2019-08-02 21:45:19 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-08-02 21:45:19 +0200 |
| commit | 44d02d366b7809349d509e6814e67e48d05fef1e (patch) | |
| tree | 26aafd41b0dbc5a8732c6e02ef8d2910b2b55c1f | |
| parent | 685a82298ef3686ad4663c5873203e222e864fad (diff) | |
| download | emacs-44d02d366b7809349d509e6814e67e48d05fef1e.tar.gz emacs-44d02d366b7809349d509e6814e67e48d05fef1e.zip | |
browse-url doc string fixup
* lisp/net/browse-url.el (browse-url-browser-function)
(browse-url-secondary-browser-function): Mention each other in the
doc strings.
| -rw-r--r-- | lisp/net/browse-url.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el index 79624787012..135f11f03c7 100644 --- a/lisp/net/browse-url.el +++ b/lisp/net/browse-url.el | |||
| @@ -169,7 +169,9 @@ If the value is not a function it should be a list of pairs | |||
| 169 | \(REGEXP . FUNCTION). In this case the function called will be the one | 169 | \(REGEXP . FUNCTION). In this case the function called will be the one |
| 170 | associated with the first REGEXP which matches the current URL. The | 170 | associated with the first REGEXP which matches the current URL. The |
| 171 | function is passed the URL and any other args of `browse-url'. The last | 171 | function is passed the URL and any other args of `browse-url'. The last |
| 172 | regexp should probably be \".\" to specify a default browser." | 172 | regexp should probably be \".\" to specify a default browser. |
| 173 | |||
| 174 | Also see `browse-url-secondary-browser-function'." | ||
| 173 | :type browse-url--browser-defcustom-type | 175 | :type browse-url--browser-defcustom-type |
| 174 | :version "24.1") | 176 | :version "24.1") |
| 175 | 177 | ||
| @@ -178,7 +180,9 @@ regexp should probably be \".\" to specify a default browser." | |||
| 178 | This is usually an external browser (that is, not eww or w3m), | 180 | This is usually an external browser (that is, not eww or w3m), |
| 179 | used as the secondary browser choice, typically when a prefix | 181 | used as the secondary browser choice, typically when a prefix |
| 180 | argument is given to a URL-opening command in those modes that | 182 | argument is given to a URL-opening command in those modes that |
| 181 | support this (for instance, eww/shr)." | 183 | support this (for instance, eww/shr). |
| 184 | |||
| 185 | Also see `browse-url-browser-function'." | ||
| 182 | :version "27.1" | 186 | :version "27.1" |
| 183 | :type browse-url--browser-defcustom-type) | 187 | :type browse-url--browser-defcustom-type) |
| 184 | 188 | ||