]> git.eshelyaron.com Git - emacs.git/commitdiff
(gulp-maintainer): Use expand-file-name
authorGerd Moellmann <gerd@gnu.org>
Wed, 19 Apr 2000 14:39:19 +0000 (14:39 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 19 Apr 2000 14:39:19 +0000 (14:39 +0000)
instead of concat.

lisp/emacs-lisp/gulp.el

index 9a41864d437d4c470c8108bba8c174124079b355..096460a196198582ba91a6014bcccae53c63185c 100644 (file)
@@ -152,7 +152,7 @@ That is a list of elements, each of the form (MAINTAINER PACKAGES...)."
 (defun gulp-maintainer (filenm dir)
   "Return a list (MAINTAINER TIMESTAMP) for the package FILENM in directory DIR."
   (save-excursion
-    (let* ((fl (concat dir filenm)) mnt
+    (let* ((fl (expand-file-name filenm dir)) mnt
           (timest (format-time-string "%Y-%m-%d %a %T %Z"
                                       (elt (file-attributes fl) 5))))
       (set-buffer gulp-tmp-buffer)