From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dimitri Fontaine Newsgroups: gmane.emacs.devel Subject: Re: Reminder about feature freeze Date: Wed, 17 Aug 2011 18:51:22 +0200 Message-ID: <87pqk4asmt.fsf@hi-media-techno.com> References: <8762nqf0s8.fsf@stupidchicken.com> <4E4BC6A3.40004@dogan.se> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1313599904 32756 80.91.229.12 (17 Aug 2011 16:51:44 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 17 Aug 2011 16:51:44 +0000 (UTC) Cc: emacs-devel@gnu.org To: Deniz Dogan Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 17 18:51:38 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QtjL2-0005dG-5t for ged-emacs-devel@m.gmane.org; Wed, 17 Aug 2011 18:51:32 +0200 Original-Received: from localhost ([::1]:52350 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QtjL1-0000r6-OD for ged-emacs-devel@m.gmane.org; Wed, 17 Aug 2011 12:51:31 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:59060) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QtjKz-0000pq-Js for emacs-devel@gnu.org; Wed, 17 Aug 2011 12:51:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QtjKy-0000pA-0o for emacs-devel@gnu.org; Wed, 17 Aug 2011 12:51:29 -0400 Original-Received: from prometheus.naquadah.org ([212.85.154.174]:38485 helo=mx1.naquadah.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QtjKx-0000oa-SN for emacs-devel@gnu.org; Wed, 17 Aug 2011 12:51:27 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by mx1.naquadah.org (Postfix) with ESMTP id A71F55C13A; Wed, 17 Aug 2011 18:51:25 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at prometheus.naquadah.org Original-Received: from mx1.naquadah.org ([127.0.0.1]) by localhost (prometheus.naquadah.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i034VevynVUn; Wed, 17 Aug 2011 18:51:23 +0200 (CEST) Original-Received: from dim (unknown [83.167.62.196]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.naquadah.org (Postfix) with ESMTPSA id C2CC15C134; Wed, 17 Aug 2011 18:51:23 +0200 (CEST) Original-Received: by dim (Postfix, from userid 1000) id DB22C4086F; Wed, 17 Aug 2011 18:51:22 +0200 (CEST) User-Mail-Address: dim@tapoueh.org In-Reply-To: <4E4BC6A3.40004@dogan.se> (Deniz Dogan's message of "Wed, 17 Aug 2011 15:48:19 +0200") User-Agent: Gnus/5.110016 (No Gnus v0.16) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 212.85.154.174 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:143373 Archived-At: Deniz Dogan writes: > So as I understand it we are now in the feature freeze. I have a minor > addition (feature) for rcirc that I'd like to push. It adds the option to Allow to jump on your thread here. I have fixes for rcirc WHOIS handling, and it's short enough not to require papers AFAIUI. (defun rcirc-handler-generic-whois (command process sender args text) "generic rcirc handler for WHOIS related commands" (let ((nick (cadr args)) (mesg (mapconcat 'identity (cddr args) " "))) (with-current-buffer (rcirc-get-buffer-create process nick) (rcirc-print process sender command nick mesg)))) (defun rcirc-install-whois-handlers () "Install rcirc-handler-XXX for WHOIS related protocol messages" (dolist (cmd '(311 312 313 317 318 319 330)) (let ((name (intern (format "rcirc-handler-%d" cmd)))) (fset name `(lambda (process sender args text) (rcirc-handler-generic-whois ,(number-to-string cmd) process sender args text)))))) Currently rcirc is able to print a whois whenever you open a query to a user, but not when a user opens a query to you =E2=80=94 that open a new bu= ffer but it's quite impossible to have WHOIS printed here. I call it a bug. Once those two functions are installed, patching rcirc so that is actually pre-fill a new query buffer with WHOIS information for a new query being targeted to its users should be easy. Regards, --=20 dim