Mercurial > emacs
changeset 23097:86a92272892c
(browse-url-netscape): Fix format for hex escapes.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 25 Aug 1998 13:16:35 +0000 |
parents | e4419c63d4d7 |
children | 7fd17414e625 |
files | lisp/browse-url.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/browse-url.el Tue Aug 25 10:25:03 1998 +0000 +++ b/lisp/browse-url.el Tue Aug 25 13:16:35 1998 +0000 @@ -700,7 +700,7 @@ ;; 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