]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/url/url-cache.el (url-cache-create-filename-using-md5): Don't waste your
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 3 Feb 2013 16:13:36 +0000 (11:13 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 3 Feb 2013 16:13:36 +0000 (11:13 -0500)
time `requiring' a builtin feature.
* lisp/subr.el (internal--called-interactively-p--get-frame): Remove
left-over message.

lisp/subr.el
lisp/url/ChangeLog
lisp/url/url-cache.el

index 82bbc022646b9ca5011c4608d0bd6a8f7f630811..31cbb9a0a8ad7431ed9261d44ca40bd016535e5e 100644 (file)
@@ -3979,7 +3979,6 @@ the number of frames to skip (minus 1).")
        (defvar ,sym)
        (unless (boundp ',sym)
          (let ((i 1))
-           (message "Computing base-index")
            (while (not (eq (indirect-function (nth 1 (backtrace-frame i)) t)
                            (indirect-function 'called-interactively-p)))
              (setq i (1+ i)))
index 969d3c7d26926e33c98a6843efa454a40940e3f6..72842ad188df7f0e9828efe10cb7182913122e68 100644 (file)
@@ -1,3 +1,8 @@
+2013-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * url-cache.el (url-cache-create-filename-using-md5): Don't waste your
+       time `requiring' a builtin feature.
+
 2012-12-22  Takafumi Arakaki  <aka.tkf@gmail.com>  (tiny change)
 
        * url-http.el (url-http-end-of-document-sentinel): Bind relevant
index a5e5ebf1ed45d502170bb54f516630a7f1c00174..cb0281b87f2a2743221a93ce682815678cccc0ad 100644 (file)
@@ -149,7 +149,6 @@ The actual return value is the last modification time of the cache file."
 (defun url-cache-create-filename-using-md5 (url)
   "Create a cached filename using MD5.
 Very fast if you have an `md5' primitive function, suitably fast otherwise."
-  (require 'md5)
   (if url
       (let* ((checksum (md5 url))
             (urlobj (url-generic-parse-url url))