The Lambda Lab
/
projects
/
lurk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
405da5a
)
Fixed bug in msg param count check.
author
plugd
<plugd@thelambdalab.xyz>
Thu, 15 Jul 2021 13:13:56 +0000
(15:13 +0200)
committer
plugd
<plugd@thelambdalab.xyz>
Thu, 15 Jul 2021 13:13:56 +0000
(15:13 +0200)
lurk.el
patch
|
blob
|
history
diff --git
a/lurk.el
b/lurk.el
index
2a1bf3b
..
5b62ce7
100644
(file)
--- a/
lurk.el
+++ b/
lurk.el
@@
-976,7
+976,7
@@
in which case they match anything.")
(lurk-display-notice nil "No current channel.")))
(defun lurk-command-msg (params)
- (if (and params (>=
2 (length params)
))
+ (if (and params (>=
(length params) 2
))
(let ((to (car params))
(text (string-join (cdr params) " ")))
(lurk-send-msg (lurk-msg nil nil "PRIVMSG" to text))