emacs-devel
[Top][All Lists]
Advanced

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

typo of copy-seq?


From: It's me FKtPp \;\)
Subject: typo of copy-seq?
Date: Mon, 10 Sep 2007 17:01:53 +0800
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.50 (berkeley-unix)

hi all,

there's a typo in the broswe-url.el of today's CVS HEAD.

patch following:

--8<---------------cut here---------------start------------->8---
*** browse-url.el       10  9 2007 12:29:36 +0800       1.60
--- browse-url.el       10  9 2007 16:54:25 +0800       
***************
*** 621,627 ****
  
  (defun browse-url-encode-url (url)
    "Encode all `confusing' characters in URL."
!   (let ((encoded-url (copy-seq url)))
      (while (string-match "%" encoded-url)
        (setq encoded-url (replace-match "%25" t t encoded-url)))
      (while (string-match "[*\"()',=;? ]" encoded-url)
--- 621,627 ----
  
  (defun browse-url-encode-url (url)
    "Encode all `confusing' characters in URL."
!   (let ((encoded-url (copy-sequence url)))
      (while (string-match "%" encoded-url)
        (setq encoded-url (replace-match "%25" t t encoded-url)))
      (while (string-match "[*\"()',=;? ]" encoded-url)
--8<---------------cut here---------------end--------------->8---





reply via email to

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