From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "gamename" Newsgroups: gmane.emacs.help Subject: Skeleton With Embedded Quotes Date: 20 Nov 2005 13:26:46 -0800 Organization: http://groups.google.com Message-ID: <1132522006.284995.262890@g47g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1132522471 25893 80.91.229.2 (20 Nov 2005 21:34:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 20 Nov 2005 21:34:31 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 20 22:34:26 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Edwll-00008O-MP for geh-help-gnu-emacs@m.gmane.org; Sun, 20 Nov 2005 22:30:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Edwlk-0007m8-Ct for geh-help-gnu-emacs@m.gmane.org; Sun, 20 Nov 2005 16:30:40 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!g47g2000cwa.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 20 Original-NNTP-Posting-Host: 128.107.248.220 Original-X-Trace: posting.google.com 1132522011 15762 127.0.0.1 (20 Nov 2005 21:26:51 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sun, 20 Nov 2005 21:26:51 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: g47g2000cwa.googlegroups.com; posting-host=128.107.248.220; posting-account=l5OKnQ0AAADrHOPMVhCpAmIoocOY27KZ Original-Xref: shelby.stanford.edu gnu.emacs.help:135603 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:31201 Archived-At: Hi, I'm trying to create a skeleton for a debug statement in tcl. I want the skeleton to produce something like this: mylib::debug " " (The cursor would be placed between the quotations.) Unfortunately, skeleton uses double quotes as the delimiter for its own definition. So, how do you get skeleton to print double quotes? Here is what I have so Far: (define-skeleton tcl-debug "Tcl debug statement" nil > "mylib::debug " \ \n) TIA, -T