projects
/
eow
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
ccd3edf
)
Fix special command dispatch return
author
Gerd Flaig
<gefla@gefla-mac-zrh>
Fri, 2 Jan 2009 16:37:39 +0000
(17:37 +0100)
committer
Gerd Flaig
<gefla@gefla-mac-zrh>
Fri, 2 Jan 2009 16:37:39 +0000
(17:37 +0100)
empire.lisp
patch
|
blob
|
history
diff --git
a/empire.lisp
b/empire.lisp
index 5b58812bd257662c8afed7eb4199c597771e1070..1f2aae423b6724f4d7a42cf171519c80d0cfd91f 100644
(file)
--- a/
empire.lisp
+++ b/
empire.lisp
@@
-261,7
+261,8
@@
(defmethod special-command ((c connection) line)
(cond ((string= line "xup") (special-xup c))
- (t (empire-web:data (session c) "Unknown special command"))))
+ (t (empire-web:data (session c) "Unknown special command")))
+ line)
(defmethod command ((c connection) line)
(cond ((special-command-p line) (special-command c (subseq line 1)))