From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: yank-handler Date: Thu, 12 Feb 2004 22:09:47 -0600 (CST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200402130409.i1D49l227203@raven.dms.auburn.edu> References: <200402130352.i1D3qhk27180@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1076645720 13785 80.91.224.253 (13 Feb 2004 04:15:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 13 Feb 2004 04:15:20 +0000 (UTC) Cc: Takaaki.Ota@am.sony.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Feb 13 05:15:12 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ArUjQ-0005wb-00 for ; Fri, 13 Feb 2004 05:15:12 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1ArUjP-0004Yn-00 for ; Fri, 13 Feb 2004 05:15:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ArUgX-0006uT-2s for emacs-devel@quimby.gnus.org; Thu, 12 Feb 2004 23:12:13 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1ArUez-0006Xq-91 for emacs-devel@gnu.org; Thu, 12 Feb 2004 23:10:37 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1ArUeS-0006HH-On for emacs-devel@gnu.org; Thu, 12 Feb 2004 23:10:35 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ArUeS-0006H8-GE for emacs-devel@gnu.org; Thu, 12 Feb 2004 23:10:04 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id i1D4A2Kt025594; Thu, 12 Feb 2004 22:10:02 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id i1D49l227203; Thu, 12 Feb 2004 22:09:47 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: teirllm@dms.auburn.edu In-reply-to: <200402130352.i1D3qhk27180@raven.dms.auburn.edu> (message from Luc Teirlinck on Thu, 12 Feb 2004 21:52:43 -0600 (CST)) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:19908 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:19908 >>From my previous message: Without further changes, the patch below would keep all yank handlers of the old string in place, whereas the new string would get no yank-handler. The above quote applies to kill-append called without explicit yank-handler (or a nil yank handler) on the new string with the old string as car of the kill ring. The above quote is inaccurate. The new string would _keep_ any _pre-existing_ yank-handler properties, just like the old one. Sincerely, Luc.