all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* typo of copy-seq?
@ 2007-09-10  9:01 It's me FKtPp ;)
  2007-09-11 10:22 ` Johannes Weiner
  0 siblings, 1 reply; 2+ messages in thread
From: It's me FKtPp ;) @ 2007-09-10  9:01 UTC (permalink / raw)
  To: emacs-devel

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---

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-09-11 10:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-10  9:01 typo of copy-seq? It's me FKtPp ;)
2007-09-11 10:22 ` Johannes Weiner

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.