From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Uwe Brauer Newsgroups: gmane.emacs.devel Subject: Re: strange font information in local abbrev table Date: Sun, 26 Oct 2014 19:25:45 +0100 Message-ID: <87r3xud6xi.fsf@mat.ucm.es> References: <87wq7nc4dh.fsf@mat.ucm.es> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1414347980 16627 80.91.229.3 (26 Oct 2014 18:26:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 26 Oct 2014 18:26:20 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 26 19:26:13 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XiSW5-0004bE-Hw for ged-emacs-devel@m.gmane.org; Sun, 26 Oct 2014 19:26:13 +0100 Original-Received: from localhost ([::1]:57953 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiSW5-0002eP-4h for ged-emacs-devel@m.gmane.org; Sun, 26 Oct 2014 14:26:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35722) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiSVw-0002dH-86 for emacs-devel@gnu.org; Sun, 26 Oct 2014 14:26:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XiSVq-0002MW-7H for emacs-devel@gnu.org; Sun, 26 Oct 2014 14:26:04 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:37270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiSVq-0002Lm-0q for emacs-devel@gnu.org; Sun, 26 Oct 2014 14:25:58 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XiSVo-0004V7-R2 for emacs-devel@gnu.org; Sun, 26 Oct 2014 19:25:56 +0100 Original-Received: from 171.pool85-55-19.dynamic.orange.es ([85.55.19.171]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 26 Oct 2014 19:25:56 +0100 Original-Received: from oub by 171.pool85-55-19.dynamic.orange.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 26 Oct 2014 19:25:56 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 20 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 171.pool85-55-19.dynamic.orange.es User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3 (gnu/linux) Mail-Copies-To: never Cancel-Lock: sha1:B6kMDgA7n7XnpQn0JsYXPdWdQhM= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:175872 Archived-At: >>>>> "Stefan" == Stefan Monnier writes: > copy-to-register copies the text, including its text-properties. >> #("hallllo" 0 7 (fontified t)) 0 "hallo" > This is a string that has a `fontified' text-property applied to it. [...] > You can ignore this property: it should be harmless. But if it > bothers you (e.g. for aesthetic reasons) you can strip it by > calling (set-text-properties 0 (length name) nil name). Thanks for clarifying. Indeed this feature annoys me and your proposal works as expected, thanks!