From 051dabe174522a959af97bf8c476133c4204b95d Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Fri, 4 Feb 2005 23:52:17 +0000 Subject: [PATCH] Fixed. --- lisp/COMPILE | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lisp/COMPILE b/lisp/COMPILE index 4b3d57a..53dce51 100644 --- a/lisp/COMPILE +++ b/lisp/COMPILE @@ -122,13 +122,13 @@ (unless (or just-print (file-exists-p dest)) (make-directory dest t)) (while icons - (if (file-exists-p (expand-file-name (concat name ".xpm"))) - (let ((name (symbol-name (car icons)))) - (princ (format "%s.xpm -> %s\n" name dest)) - (unless just-print - (copy-file (expand-file-name (concat name ".xpm")) - (expand-file-name (concat name ".xpm") dest) - t t)))) + (let ((name (symbol-name (car icons)))) + (when (file-exists-p (expand-file-name (concat name ".xpm"))) + (princ (format "%s.xpm -> %s\n" name dest)) + (unless just-print + (copy-file (expand-file-name (concat name ".xpm")) + (expand-file-name (concat name ".xpm") dest) + t t)))) (setq icons (cdr icons)))) (defun riece-install-just-print-p () -- 2.25.1