common-lisp.net
/
projects/qitab/inferior-shell.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
dbf81e5
)
Fix bug in current-hostname-p
author
Francois-Rene Rideau
<tunes@google.com>
Fri, 5 Oct 2012 02:49:02 +0000 (22:49 -0400)
committer
Francois-Rene Rideau
<tunes@google.com>
Fri, 5 Oct 2012 02:49:02 +0000 (22:49 -0400)
host.lisp
patch
|
blob
|
blame
|
history
diff --git
a/host.lisp
b/host.lisp
index
ca36b06
..
d066986
100644
(file)
--- a/
host.lisp
+++ b/
host.lisp
@@
-5,7
+5,7
@@
(defparameter *current-host-names* '("localhost"))
(defun current-host-name-p (x)
- (and (stringp x) (member x *current-host-names*)))
+ (and (stringp x) (member x *current-host-names* :test 'equal)))
(defun initialize-current-host-names ()
(setf *current-host-names*