GNU bug report logs -
#2737
[PATCH] Emacs CVS: (rcirc): Save call args to history variables
Previous Next
Reported by: Jari Aalto <jari.aalto <at> cante.net>
Date: Sat, 21 Mar 2009 16:35:02 UTC
Severity: wishlist
Tags: patch
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 2737 in the body.
You can then email your comments to 2737 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#2737
; Package
emacs
.
(Sat, 21 Mar 2009 16:35:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jari Aalto <jari.aalto <at> cante.net>
:
New bug report received and forwarded. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Sat, 21 Mar 2009 16:35:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
[Message part 1 (text/plain, inline)]
Patch against CVS as of 2009-03-21 16:27 UTC
2009-03-21 Jari Aalto <jari.aalto <at> cante.net>
* net/rcirc.el (rcirc-history-server-name)
(rcirc-history-server-port)
(rcirc-history-nick-name): new variables.
(rcirc): Use history variables.
[0001-lisp-net-rcirc.el-rcirc-Save-call-args-to-histor.patch (text/x-diff, inline)]
From 02c1deb5855e78168aab74b1199a48b72eb9656b Mon Sep 17 00:00:00 2001
From: Jari Aalto <jari.aalto <at> cante.net>
Date: Sat, 21 Mar 2009 18:25:11 +0200
Subject: [PATCH] lisp/net/rcirc.el: (rcirc): Save call args to history variables
---
lisp/net/rcirc.el | 18 +++++++++++++++---
1 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index f63237f..de4bdeb 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -359,6 +359,15 @@ and the cdr part is used for encoding."
(defvar rcirc-startup-channels nil)
+(defvar rcirc-history-server-name nil
+ "History variable for \\[rcirc] call.")
+
+(defvar rcirc-history-server-port nil
+ "History variable for \\[rcirc] call.")
+
+(defvar rcirc-history-nick-name nil
+ "History variable for \\[rcirc] call.")
+
;;;###autoload
(defun rcirc (arg)
"Connect to all servers in `rcirc-server-alist'.
@@ -371,15 +380,18 @@ If ARG is non-nil, instead prompt for connection parameters."
(let* ((server (completing-read "IRC Server: "
rcirc-server-alist
nil nil
- (caar rcirc-server-alist)))
+ (caar rcirc-server-alist)
+ 'rcirc-history-server-name))
(server-plist (cdr (assoc-string server rcirc-server-alist)))
(port (read-string "IRC Port: "
(number-to-string
(or (plist-get server-plist 'port)
- rcirc-default-port))))
+ rcirc-default-port))
+ 'rcirc-history-server-port))
(nick (read-string "IRC Nick: "
(or (plist-get server-plist 'nick)
- rcirc-default-nick)))
+ rcirc-default-nick)
+ 'rcirc-history-nick-name))
(channels (split-string
(read-string "IRC Channels: "
(mapconcat 'identity
--
1.6.1.3
Tags added: patch
Request was from
Jari Aalto <jari.aalto <at> cante.net>
to
control <at> emacsbugs.donarmstrong.com
.
(Sat, 21 Mar 2009 19:05:06 GMT)
Full text and
rfc822 format available.
Severity set to `wishlist' from `normal'
Request was from
Glenn Morris <rgm <at> gnu.org>
to
control <at> emacsbugs.donarmstrong.com
.
(Tue, 24 Mar 2009 00:50:03 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#2737
; Package
emacs
.
(Sun, 12 Jul 2009 19:05:05 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>
.
(Sun, 12 Jul 2009 19:05:05 GMT)
Full text and
rfc822 format available.
Message #14 received at 2737 <at> emacsbugs.donarmstrong.com (full text, mbox):
Hi Ryan,
Jari Aalto wrote a patch to rcirc.el for saving the arguments to `rcirc'
to history. Could you review it? Thanks:
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=2737
Information forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#2737
; Package
emacs
.
(Sun, 12 Jul 2009 22:45: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>
.
(Sun, 12 Jul 2009 22:45:04 GMT)
Full text and
rfc822 format available.
Message #19 received at 2737 <at> emacsbugs.donarmstrong.com (full text, mbox):
Chong Yidong <cyd <at> stupidchicken.com> writes:
> Hi Ryan,
>
> Jari Aalto wrote a patch to rcirc.el for saving the arguments to `rcirc'
> to history. Could you review it? Thanks:
>
> http://debbugs.gnu.org/cgi/bugreport.cgi?bug=2737
This is a useful change. I tested the patch here, and it looks fine to
me. Go ahead and apply it.
Reply sent
to
Chong Yidong <cyd <at> stupidchicken.com>
:
You have taken responsibility.
(Wed, 15 Jul 2009 16:05:17 GMT)
Full text and
rfc822 format available.
Notification sent
to
Jari Aalto <jari.aalto <at> cante.net>
:
bug acknowledged by developer.
(Wed, 15 Jul 2009 16:05:17 GMT)
Full text and
rfc822 format available.
Message #24 received at 2737-done <at> emacsbugs.donarmstrong.com (full text, mbox):
I've checked this patch into the trunk. (I renamed your history
variables from rcirc-history-* to rcirc-*-history, for conformity.)
Thanks.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> emacsbugs.donarmstrong.com
.
(Thu, 13 Aug 2009 14:24:19 GMT)
Full text and
rfc822 format available.
This bug report was last modified 15 years and 317 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.