From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Peter S Galbraith Newsgroups: gmane.emacs.help Subject: Re: how to get rid of string properties Date: Wed, 18 Dec 2002 23:02:47 -0500 Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <20021219040247.7E0C1429D2@mixed.dyndns.org> References: <86ptry7lld.fsf@kronstadt.homeunix.net> NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1040270674 31984 80.91.224.249 (19 Dec 2002 04:04:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 19 Dec 2002 04:04:34 +0000 (UTC) Cc: help-gnu-emacs@gnu.org 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 18OrvD-0008JH-01 for ; Thu, 19 Dec 2002 05:04:32 +0100 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 18OruE-0003Vr-02 for gnu-help-gnu-emacs@m.gmane.org; Wed, 18 Dec 2002 23:03:30 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18Ortf-0003Hp-00 for help-gnu-emacs@gnu.org; Wed, 18 Dec 2002 23:02:55 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18OrtZ-0003Aq-00 for help-gnu-emacs@gnu.org; Wed, 18 Dec 2002 23:02:52 -0500 Original-Received: from adsl-66.110.144-250.globetrotter.net ([66.110.144.250] helo=mixed.dyndns.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18OrtY-0003Af-00 for help-gnu-emacs@gnu.org; Wed, 18 Dec 2002 23:02:48 -0500 Original-Received: from mixed.dyndns.org (localhost [127.0.0.1]) by mixed.dyndns.org (Postfix) with ESMTP id 7E0C1429D2; Wed, 18 Dec 2002 23:02:47 -0500 (EST) Original-To: Ian Zimmerman In-Reply-To: Message from Ian Zimmerman <86ptry7lld.fsf@kronstadt.homeunix.net> X-Mailer: MH-E 7.0+cvs; nmh 1.0.4+dev; Emacs 21.2 X-Face: "#bYm%*(4JuXAkouMxaLz|M2dbXUFnQ"IRX)zpsiM"(B}`#|_b548$VB}5L&VIck1F#FNc' rsASk0?-/gFp2qzM>0]`Jc}Qd<8[l)N7{8%qMN~{|DS.ME.$ 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:4811 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:4811 Ian Zimmerman wrote: > Given a propertied string, how can I clear _all_ its properties? > There's a buffer-substring-no-properties, but I can't find anything > like substring-no-properties. You could use `string-match' followed by `match-string-no-properties' on it. Peter