emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/erc/erc-complete.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/erc/erc-complete.el
Date: Sun, 05 Feb 2006 12:42:53 +0000

Index: emacs/lisp/erc/erc-complete.el
diff -u emacs/lisp/erc/erc-complete.el:1.1 emacs/lisp/erc/erc-complete.el:1.2
--- emacs/lisp/erc/erc-complete.el:1.1  Sun Jan 29 13:08:57 2006
+++ emacs/lisp/erc/erc-complete.el      Sun Feb  5 12:42:51 2006
@@ -84,9 +84,9 @@
 your own nick.  This way if you're named foo and someone is called foobar,
 typing \"f o TAB\" will directly give you foobar.  Use this with
 `erc-nick-completion'."
-  (delete
+  (remove
    (erc-current-nick)
-   (mapcar (function car) (erc-get-channel-user-list))))
+   (erc-get-channel-nickname-list)))
 
 (defcustom erc-nick-completion-postfix ": "
   "*When `erc-complete' is used in the first word after the prompt,
@@ -110,8 +110,7 @@
         (try-complete-erc-nick old erc-pals))
        ((eq erc-nick-completion 'all)
         (try-complete-erc-nick old (append
-                                    (mapcar (function car)
-                                            (erc-get-channel-user-list))
+                                    (erc-get-channel-nickname-list)
                                     (erc-command-list))))
        ((functionp erc-nick-completion)
         (try-complete-erc-nick old (funcall erc-nick-completion)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]