From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: =?iso-8859-1?q?Fran=E7ois_Fleuret?= Newsgroups: gmane.emacs.help Subject: Re: Yanking multiple times Date: 29 May 2003 10:11:15 +0200 Organization: I.N.R.I.A Rocquencourt Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <8an0h6vehl.fsf@sm.intel.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1054196378 32617 80.91.224.249 (29 May 2003 08:19:38 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 29 May 2003 08:19:38 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Thu May 29 10:19:36 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19LIdM-0008Tu-00 for ; Thu, 29 May 2003 10:19:36 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19LIeL-0003Tt-A2 for gnu-help-gnu-emacs@m.gmane.org; Thu, 29 May 2003 04:20:37 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!freenix!jussieu.fr!univ-angers.fr!univ-rennes1.fr!irisa.fr!news-rocq.inria.fr!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 22 Original-NNTP-Posting-Host: wasabi.inria.fr Original-X-Trace: news-rocq.inria.fr 1054195875 4495 128.93.23.201 (29 May 2003 08:11:15 GMT) Original-X-Complaints-To: usenet@inria.fr Original-NNTP-Posting-Date: Thu, 29 May 2003 08:11:15 +0000 (UTC) X-Attribution: FF X-Url: http://www-rocq.inria.fr/~fleuret User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Original-Xref: shelby.stanford.edu gnu.emacs.help:113828 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:10322 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:10322 Hi, > Any other sort of argument, including `C-u' and digits, specifies an > earlier kill to yank (*note Earlier Kills::). Oups. Shame on me. ,---- | (defun multiple-yank (&optional n) (interactive "p") | (while (> n 0) | (setq n (1- n)) | (yank))) | | (define-key global-map [(control insert)] 'multiple-yank) `---- Should make do the trick ? Regards, -- François Fleuret