projects
/
elisp
/
flim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb5be4e
)
(PACKAGEDIR): Avoid an error with Emacs.
author
yamaoka
<yamaoka>
Wed, 13 Dec 2006 01:31:30 +0000
(
01:31
+0000)
committer
yamaoka
<yamaoka>
Wed, 13 Dec 2006 01:31:30 +0000
(
01:31
+0000)
ChangeLog
patch
|
blob
|
history
FLIM-CFG
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index
7c3e0fd
..
35b50ef
100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,7
@@
+2006-12-13 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * FLIM-CFG (PACKAGEDIR): Avoid an error with Emacs.
+
2006-12-12 Katsumi Yamaoka <yamaoka@jpl.org>
* FLIM-MK (compile-flim-package): Use
diff --git
a/FLIM-CFG
b/FLIM-CFG
index
b7040db
..
ad93717
100644
(file)
--- a/
FLIM-CFG
+++ b/
FLIM-CFG
@@
-80,7
+80,8
@@
(listp configure-package-path))
(delete "" configure-package-path))))
dir)
- (while (not (file-exists-p (setq dir (car dirs))))
+ (while (and (setq dir (car dirs))
+ (not (file-exists-p dir)))
(setq dirs (cdr dirs)))
dir))