GNU bug report logs -
#6076
23.1.96; [PATCH] rcirc-complete for nicks and commands
Previous Next
Reported by: Leo <sdl.web <at> gmail.com>
Date: Sun, 2 May 2010 08:53:01 UTC
Severity: normal
Tags: patch
Found in version 23.1.96
Done: Stefan Monnier <monnier <at> iro.umontreal.ca>
Bug is archived. No further changes may be made.
Full log
Message #20 received at submit <at> debbugs.gnu.org (full text, mbox):
On 2010-05-02 10:01 +0100, Leo wrote:
> Please review the attached patch instead which fixed compiler warnings
> in the previous patch.
>
> Thanks.
> Leo
This patch make sures commands defined by rcirc are seen first before
server commands.
Leo
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index 2e5e7ac..9b58112 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -800,9 +800,9 @@ IRC command completion is performed only if '/' is the first input char."
(if (and (zerop rcirc-completion-start-offset)
(char-after rcirc-prompt-end-marker)
(= (char-after rcirc-prompt-end-marker) ?/))
- (sort (delete-dups (append rcirc-client-commands
- (copy-sequence rcirc-server-commands)))
- 'string-lessp)
+ (delete-dups
+ (append (sort (copy-sequence rcirc-client-commands) 'string-lessp)
+ (sort (copy-sequence rcirc-server-commands) 'string-lessp)))
(mapcar (lambda (x) (cons x nil))
(rcirc-channel-nicks (rcirc-buffer-process)
rcirc-target)))))))
This bug report was last modified 14 years and 307 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.