From 4f91a8160fe71295b7ad4d6e3f90f004caa3546c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 23 May 2011 14:57:17 -0300 Subject: Don't quote lambda expressions with `quote'. --- lisp/net/webjump.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lisp/net/webjump.el') diff --git a/lisp/net/webjump.el b/lisp/net/webjump.el index be79bc721e2..3a2560b3c61 100644 --- a/lisp/net/webjump.el +++ b/lisp/net/webjump.el @@ -447,11 +447,11 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke (or (null str) (string-match "^[ \t]*$" str))) (defun webjump-url-encode (str) - (mapconcat '(lambda (c) - (let ((s (char-to-string c))) - (cond ((string= s " ") "+") - ((string-match "[a-zA-Z_.-/]" s) s) - (t (upcase (format "%%%02x" c)))))) + (mapconcat (lambda (c) + (let ((s (char-to-string c))) + (cond ((string= s " ") "+") + ((string-match "[a-zA-Z_.-/]" s) s) + (t (upcase (format "%%%02x" c)))))) (encode-coding-string str 'utf-8) "")) -- cgit v1.2.1