Dolda2000 GitWeb
/
doldaconnect.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
fee53a9
)
Need not check for negative tag in dc-ecmd anymore.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Tue, 4 Dec 2007 16:13:44 +0000
(17:13 +0100)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Tue, 4 Dec 2007 16:13:44 +0000
(17:13 +0100)
lib/guile/dolcon/ui.scm
patch
|
blob
|
blame
|
history
diff --git
a/lib/guile/dolcon/ui.scm
b/lib/guile/dolcon/ui.scm
index
bf57b06
..
b8ec63f
100644
(file)
--- a/
lib/guile/dolcon/ui.scm
+++ b/
lib/guile/dolcon/ui.scm
@@
-68,10
+68,9
@@
(define-public dc-ecmd
(lambda args
(let ((tag (dc-qcmd args)))
(define-public dc-ecmd
(lambda args
(let ((tag (dc-qcmd args)))
- (if (>= tag 0)
- (do ((resp (dc-getresp tag) (dc-getresp tag)))
- (resp resp)
- (dc-select)))
+ (do ((resp (dc-getresp tag) (dc-getresp tag)))
+ (resp resp)
+ (dc-select))
)
)
)
)
)
)