# HG changeset patch # User Glenn Morris # Date 1234236449 0 # Node ID c28ecc931e8ce4cb66c26cd301dca7779bdd0eee # Parent a4aa4e04bc1142317897ea164a40d99c2f90489f (url-generate-unique-filename): Silence compiler. diff -r a4aa4e04bc11 -r c28ecc931e8c lisp/url/ChangeLog --- a/lisp/url/ChangeLog Mon Feb 09 20:05:48 2009 +0000 +++ b/lisp/url/ChangeLog Tue Feb 10 03:27:29 2009 +0000 @@ -1,3 +1,7 @@ +2009-02-10 Glenn Morris + + * url-util.el (url-generate-unique-filename): Silence compiler. + 2009-02-07 Chong Yidong * url-file.el (url-file): Use make-temp-file. diff -r a4aa4e04bc11 -r c28ecc931e8c lisp/url/url-util.el --- a/lisp/url/url-util.el Mon Feb 09 20:05:48 2009 +0000 +++ b/lisp/url/url-util.el Tue Feb 10 03:27:29 2009 +0000 @@ -1,7 +1,7 @@ ;;; url-util.el --- Miscellaneous helper routines for URL library -;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, -;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005, 2006, 2007, +;; 2008, 2009 Free Software Foundation, Inc. ;; Author: Bill Perry ;; Keywords: comm, data, processes @@ -476,25 +476,27 @@ (defun url-generate-unique-filename (&optional fmt) "Generate a unique filename in `url-temporary-directory'." - (if (not fmt) - (let ((base (format "url-tmp.%d" (user-real-uid))) + ;; This variable is obsolete, but so is this function. + (let ((tempdir (with-no-warnings url-temporary-directory))) + (if (not fmt) + (let ((base (format "url-tmp.%d" (user-real-uid))) + (fname "") + (x 0)) + (setq fname (format "%s%d" base x)) + (while (file-exists-p + (expand-file-name fname tempdir)) + (setq x (1+ x) + fname (concat base (int-to-string x)))) + (expand-file-name fname tempdir)) + (let ((base (concat "url" (int-to-string (user-real-uid)))) (fname "") (x 0)) - (setq fname (format "%s%d" base x)) + (setq fname (format fmt (concat base (int-to-string x)))) (while (file-exists-p - (expand-file-name fname url-temporary-directory)) + (expand-file-name fname tempdir)) (setq x (1+ x) - fname (concat base (int-to-string x)))) - (expand-file-name fname url-temporary-directory)) - (let ((base (concat "url" (int-to-string (user-real-uid)))) - (fname "") - (x 0)) - (setq fname (format fmt (concat base (int-to-string x)))) - (while (file-exists-p - (expand-file-name fname url-temporary-directory)) - (setq x (1+ x) - fname (format fmt (concat base (int-to-string x))))) - (expand-file-name fname url-temporary-directory)))) + fname (format fmt (concat base (int-to-string x))))) + (expand-file-name fname tempdir))))) (make-obsolete 'url-generate-unique-filename 'make-temp-file "23.1") (defun url-extract-mime-headers ()