emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/idlwave 853872b223 357/360: Leave # unencoded in idl.ht


From: ELPA Syncer
Subject: [elpa] externals/idlwave 853872b223 357/360: Leave # unencoded in idl.htm#real/path/to/file help link style
Date: Sun, 28 Apr 2024 00:59:43 -0400 (EDT)

branch: externals/idlwave
commit 853872b2235f81d98b612feba6f424515c5c4fa7
Author: JD Smith <93749+jdtsmith@users.noreply.github.com>
Commit: JD Smith <93749+jdtsmith@users.noreply.github.com>

    Leave # unencoded in idl.htm#real/path/to/file help link style
---
 idlw-help.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/idlw-help.el b/idlw-help.el
index 3330331518..bcdf34eaaa 100644
--- a/idlw-help.el
+++ b/idlw-help.el
@@ -590,7 +590,9 @@ see if a link is set for it.  Try extra help functions if 
necessary."
        (setq link (file-relative-name link help-loc)
              help-loc (concat alternate "#")))
 
-    (setq full-link (browse-url-file-url (concat help-loc link)))
+    (setq full-link                    ; idl.htm likes the #
+         (let ((url-unreserved-chars (cons ?# url-unreserved-chars)))
+             (browse-url-file-url (concat help-loc link))))
 
     ;; Select the browser
     (cond



reply via email to

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