Skip to content

Commit b7be39b

Browse files
author
Bozhidar Batsov
committed
[Fix #883] Encode properly the javadoc url
1 parent 32c2979 commit b7be39b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## master (unreleased)
44

5+
### Bugs fixed
6+
7+
* [#883](https://github.com/clojure-emacs/cider/issues/883): Encode properly the javadoc url.
8+
59
## 0.8.1 / 2014-11-20
610

711
### Bugs fixed

cider-interaction.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ in the buffer."
830830
(let* ((info (cider-var-info symbol-name))
831831
(url (nrepl-dict-get info "javadoc")))
832832
(if url
833-
(browse-url url)
833+
(browse-url (url-encode-url url))
834834
(error "No Javadoc available for %s" symbol-name)))))
835835

836836
(defun cider-javadoc (query)

0 commit comments

Comments
 (0)