From 814a7b0f6c4c0b14dac57a834e66d0b16975d89a Mon Sep 17 00:00:00 2001 From: "Tom Breton (Tehom)" Date: Fri, 12 Nov 2010 21:10:28 -0500 Subject: [PATCH] Changed the logic of installedness checking --- elinstall.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/elinstall.el b/elinstall.el index 242aeb6..49fd244 100644 --- a/elinstall.el +++ b/elinstall.el @@ -1206,10 +1206,9 @@ installed. Other non-nil cases of FORCE are reserved for future development." (when - (and - (or - force - (not (elinstall-already-installed project-name))) + (or + force + (not (elinstall-already-installed project-name)) (yes-or-no-p (format "Re-install %s? " project-name))) (elinstall-x path -- 2.11.4.GIT