+2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
+
+ * net/rcirc.el (rcirc-handler-001): Remove useless
+ with-rcirc-process-buffer.
+ (rcirc-check-auth-status): Swap arguments to string-match.
+
2011-03-09 Glenn Morris <rgm@gnu.org>
* shell.el (shell-mode):
(if rcirc-auto-authenticate-flag
(if rcirc-authenticate-before-join
(progn
- (with-rcirc-process-buffer process
- (add-hook 'rcirc-authenticated-hook 'rcirc-join-channels-post-auth t t))
+ (add-hook 'rcirc-authenticated-hook 'rcirc-join-channels-post-auth t t)
(rcirc-authenticate))
(rcirc-authenticate)
(rcirc-join-channels process rcirc-startup-channels))
(and ;; quakenet
(string= sender "Q")
(string= target rcirc-nick)
- (string-match message "\\`You are now logged in as .+\\.\\'")))
+ (string-match "\\`You are now logged in as .+\\.\\'" message)))
(setq rcirc-user-authenticated t)
(run-hook-with-args 'rcirc-authenticated-hook process)
(remove-hook 'rcirc-authenticated-hook 'rcirc-join-channels-post-auth t))))))