File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -3205,7 +3205,7 @@ The following values will @emph{not} work:
3205
3205
Function to call to browse a URL@.
3206
3206
3207
3207
Defaults to @ref {racket-browse-url-using-temporary-file } on macOS and
3208
- @code {browse-url } on other platforms.
3208
+ @code {browse-url-browser-function } on other platforms.
3209
3209
3210
3210
@node racket-xp-after-change-refresh-delay
3211
3211
@subsection racket-xp-after-change-refresh-delay
Original file line number Diff line number Diff line change 12
12
; ;; This makes it easier to provide a consistent UI.
13
13
14
14
(require 'rx )
15
- (require 'sh-script ) ; for sh-heredoc face
16
- (require 'comint ) ; for comint-simple-send in racket-shell-or-terminal
17
15
(require 'seq )
16
+ (require 'sh-script ) ; for sh-heredoc face
17
+ (require 'comint ) ; for `comint-simple-send' in racket-shell-or-terminal
18
+ (require 'browse-url ) ; for `browse-url-browser-function' .
18
19
19
20
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20
21
; ;; racket group
@@ -68,11 +69,11 @@ their response asychronously."
68
69
(defcustom racket-browse-url-function
69
70
(if racket--macp
70
71
'racket-browse-url-using-temporary-file
71
- ' browse-url )
72
+ browse-url-browser-function )
72
73
" Function to call to browse a URL.
73
74
74
75
Defaults to `racket-browse-url-using-temporary-file' on macOS and
75
- `browse-url' on other platforms."
76
+ `browse-url-browser-function ' on other platforms."
76
77
:type 'function
77
78
:risky t )
78
79
You can’t perform that action at this time.
0 commit comments