From ddff3d800e7820d6d2d71f270afa90e5cc29ac71 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 25 Aug 1998 13:16:35 +0000 Subject: [PATCH] (browse-url-netscape): Fix format for hex escapes. --- lisp/browse-url.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/browse-url.el b/lisp/browse-url.el index 6521dfdef29..3be0331196b 100644 --- a/lisp/browse-url.el +++ b/lisp/browse-url.el @@ -700,7 +700,7 @@ used instead of `browse-url-new-window-p'." ;; include at least commas; presumably also close parens. (while (string-match "[,)]" url) (setq url (replace-match - (format "%x" (string-to-char (match-string 0 url))) t t url))) + (format "%%%x" (string-to-char (match-string 0 url))) t t url))) (let* ((process-environment (browse-url-process-environment)) (process (apply 'start-process (concat "netscape " url) nil -- 2.39.2