GNU bug report logs -
#3037
23.0.92; rcirc picks incorrect connection settings
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 3037 in the body.
You can then email your comments to 3037 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#3037
; Package
emacs
.
(Fri, 17 Apr 2009 21:40:14 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Yann Hodique <yann.hodique <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Fri, 17 Apr 2009 21:40:14 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
When using `rcirc' with argument (prompt for connection parameters), the
global default values for :port, :nick and :channels are proposed
instead of the server-specific ones.
Reason is that current code tries to get properties 'port, 'nick
and 'channels, which is not correct.
Following patch fixes this issue.
Yann.
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index f63237f..1f31284 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -375,16 +375,16 @@ If ARG is non-nil, instead prompt for connection parameters."
(server-plist (cdr (assoc-string server rcirc-server-alist)))
(port (read-string "IRC Port: "
(number-to-string
- (or (plist-get server-plist 'port)
+ (or (plist-get server-plist :port)
rcirc-default-port))))
(nick (read-string "IRC Nick: "
- (or (plist-get server-plist 'nick)
+ (or (plist-get server-plist :nick)
rcirc-default-nick)))
(channels (split-string
(read-string "IRC Channels: "
(mapconcat 'identity
(plist-get server-plist
- 'channels)
+ :channels)
" "))
"[, ]+" t)))
(rcirc-connect server port nick rcirc-default-user-name
--
"Once more the drama begins."
-The Emperor Paul Muad'dib on his ascension to the Lion Throne
Information forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#3037
; Package
emacs
.
(Sat, 18 Apr 2009 01:55:06 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Chong Yidong <cyd <at> stupidchicken.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Sat, 18 Apr 2009 01:55:06 GMT)
Full text and
rfc822 format available.
Message #10 received at 3037 <at> emacsbugs.donarmstrong.com (full text, mbox):
Hi Ryan,
Could you evaluate the bug report for RCIRC at the following URL? Is
the patch attached in the report OK to commit?
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3037
Information forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#3037
; Package
emacs
.
(Sat, 18 Apr 2009 02:40:04 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ryan Yeske <rcyeske <at> gmail.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Sat, 18 Apr 2009 02:40:04 GMT)
Full text and
rfc822 format available.
Message #15 received at 3037 <at> emacsbugs.donarmstrong.com (full text, mbox):
Chong Yidong <cyd <at> stupidchicken.com> writes:
> Hi Ryan,
>
> Could you evaluate the bug report for RCIRC at the following URL? Is
> the patch attached in the report OK to commit?
>
> http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3037
Yes, that is exactly the fix for that issue.
Reply sent
to
Chong Yidong <cyd <at> stupidchicken.com>
:
You have taken responsibility.
(Sat, 18 Apr 2009 03:50:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Yann Hodique <yann.hodique <at> gmail.com>
:
bug acknowledged by developer.
(Sat, 18 Apr 2009 03:50:03 GMT)
Full text and
rfc822 format available.
Message #20 received at 3037-done <at> emacsbugs.donarmstrong.com (full text, mbox):
> When using `rcirc' with argument (prompt for connection parameters), the
> global default values for :port, :nick and :channels are proposed
> instead of the server-specific ones.
>
> Reason is that current code tries to get properties 'port, 'nick
> and 'channels, which is not correct.
> Following patch fixes this issue.
I've checked in your patch. Thanks.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> emacsbugs.donarmstrong.com
.
(Sat, 16 May 2009 14:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 16 years and 116 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.