From dc100e7ee55a75b68d390825802173362c00a42e Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Wed, 30 Jan 2013 23:31:07 -0500 Subject: [PATCH] 2.26.170: have delete-file-if-exists be nice when passed NIL. Also, intern fishy symbols that are imported but missing from original package. --- asdf.asd | 2 +- filesystem.lisp | 2 +- header.lisp | 2 +- package.lisp | 6 +++++- upgrade.lisp | 2 +- version.lisp-expr | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/asdf.asd b/asdf.asd index edab0d45..d2ac161f 100644 --- a/asdf.asd +++ b/asdf.asd @@ -66,7 +66,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.26.169" ;; to be automatically updated by make bump-version + :version "2.26.170" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 ;; For most purposes, asdf itself specially counts as a builtin system. diff --git a/filesystem.lisp b/filesystem.lisp index e1f7bdc6..76e6239a 100644 --- a/filesystem.lisp +++ b/filesystem.lisp @@ -463,6 +463,6 @@ TRUENAMIZE uses TRUENAMIZE to resolve as many symlinks as possible." #+clozure :if-exists #+clozure :rename-and-delete)) (defun* delete-file-if-exists (x) - (handler-case (delete-file x) (file-error () nil))) + (when x (handler-case (delete-file x) (file-error () nil)))) diff --git a/header.lisp b/header.lisp index 510b0b7b..3f825fed 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.26.169: Another System Definition Facility. +;;; This is ASDF 2.26.170: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/package.lisp b/package.lisp index 9b396827..3b39ac29 100644 --- a/package.lisp +++ b/package.lisp @@ -363,7 +363,11 @@ or when loading the package is optional." (check-type from-package package) (check-type shadowed hash-table) (check-type imported hash-table) - (let* ((import-me (find-symbol* name from-package))) + (multiple-value-bind (import-me import-status) (find-symbol name from-package) + (when (null import-status) + (note-package-fishiness + :import-uninterned name (package-name from-package) (package-name to-package)) + (setf import-me (intern name from-package))) (multiple-value-bind (existing status) (find-symbol name to-package) (cond ((gethash name imported) diff --git a/upgrade.lisp b/upgrade.lisp index 4949dc36..3360a0f6 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -51,7 +51,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5. ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 - (asdf-version "2.26.169") + (asdf-version "2.26.170") (existing-version (asdf-version))) (setf *asdf-version* asdf-version) (when (and existing-version (not (equal asdf-version existing-version))) diff --git a/version.lisp-expr b/version.lisp-expr index 210e2614..fe569fc3 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.26.169" +"2.26.170" -- GitLab