From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Oliver Lohmann Newsgroups: gmane.emacs.help Subject: multiple inserts within skeletons Date: 28 Apr 2003 21:29:28 +0200 Organization: FH-Wedel Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <1051558168.557.75.camel@box> Reply-To: nagash2270@yahoo.de NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1051558110 16037 80.91.224.249 (28 Apr 2003 19:28:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 28 Apr 2003 19:28:30 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Mon Apr 28 21:28:28 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 19AEId-0004AM-00 for ; Mon, 28 Apr 2003 21:28:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19AEIx-0001tf-06 for gnu-help-gnu-emacs@m.gmane.org; Mon, 28 Apr 2003 15:28:47 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19AEIg-0001pu-00 for help-gnu-emacs@gnu.org; Mon, 28 Apr 2003 15:28:30 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19AEIe-0001p3-00 for help-gnu-emacs@gnu.org; Mon, 28 Apr 2003 15:28:29 -0400 Original-Received: from smtp014.mail.yahoo.com ([216.136.173.58]) by monty-python.gnu.org with smtp (Exim 4.10.13) id 19AEIe-0001l1-00 for help-gnu-emacs@gnu.org; Mon, 28 Apr 2003 15:28:28 -0400 Original-Received: from pd9e30e70.dip.t-dialin.net (HELO ?192.168.0.2?) (nagash2270@217.227.14.112 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 28 Apr 2003 19:28:25 -0000 Original-To: help-gnu-emacs@gnu.org X-Mailer: Ximian Evolution 1.2.3 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:8964 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:8964 hello, i want to repeat my inputs for @param with the follwing construct (only an example) until i take a key or any other trigger to exit the input ring: (defun myComment(s1 s2) (interactive "sbriefDescr: \nsMethodParam: ") (skeleton-insert'(nil >"/**" \n >"* " s1 \n >"* " \n >"* @param " s2 \n ;;--> ;; more params here please... >"* " \n >"* " \n >"* @author " user-full-name \n >"* @note " user-mail-address \n >"* @date " (insert-date) \n >"*/" \n _ ))) thanks for your help! kind regards oliver lohmann