From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.help Subject: Re: change textheight and set position Date: Mon, 28 Jun 2004 23:24:18 +0200 Organization: http://purl.org/harder/ Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <87r7s1ar7j.fsf@tfdpc12.tfd.chalmers.se> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1088539132 28618 80.91.224.253 (29 Jun 2004 19:58:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 29 Jun 2004 19:58:52 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jun 29 21:58:47 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BfOkh-0001RX-00 for ; Tue, 29 Jun 2004 21:58:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BfOmN-00024m-LS for geh-help-gnu-emacs@m.gmane.org; Tue, 29 Jun 2004 16:00:31 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!news2.telebyte.nl!news.tele.dk!not-for-mail Original-Newsgroups: gnu.emacs.help X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:19349 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:19349 Fabian Braennstroem writes: > I'm looking for a way to copy some text and yank it with a different > font-size in the middle of the line. I tried using 'set-face-font', > but that changes the font for some existing faces. It would be the > best, if I would be able to choose just a different font style > before I yank the text, e.g. Info-title-1-face. Does anybody have an > idea? You could do something like this: (defun my-yank (face) (interactive (list (read-face-name "Use face"))) (save-restriction (narrow-to-region (point) (point)) (yank) (put-text-property (point-min) (point-max) 'face face))) -- Jesper Harder