From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: storm@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.devel Subject: Re: cannot understand Elisp manual node Glyphs Date: Wed, 07 Feb 2007 16:24:53 +0100 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1170861896 14630 80.91.229.12 (7 Feb 2007 15:24:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 7 Feb 2007 15:24:56 +0000 (UTC) Cc: Emacs-Devel To: "Drew Adams" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 07 16:24:46 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HEoex-0003jc-Qw for ged-emacs-devel@m.gmane.org; Wed, 07 Feb 2007 16:24:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HEoex-0000FQ-5t for ged-emacs-devel@m.gmane.org; Wed, 07 Feb 2007 10:24:35 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HEoem-0000FL-0s for emacs-devel@gnu.org; Wed, 07 Feb 2007 10:24:24 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HEoei-0000CG-K7 for emacs-devel@gnu.org; Wed, 07 Feb 2007 10:24:22 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HEoei-0000C7-Du for emacs-devel@gnu.org; Wed, 07 Feb 2007 10:24:20 -0500 Original-Received: from pfepa.post.tele.dk ([195.41.46.235]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HEoei-0005Ji-3x for emacs-devel@gnu.org; Wed, 07 Feb 2007 10:24:20 -0500 Original-Received: from kfs-l.imdomain.dk.cua.dk (unknown [80.165.4.124]) by pfepa.post.tele.dk (Postfix) with SMTP id 2C45AFAC092; Wed, 7 Feb 2007 16:24:19 +0100 (CET) In-Reply-To: (Drew Adams's message of "Wed\, 7 Feb 2007 06\:54\:55 -0800") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.93 (gnu/linux) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:66065 Archived-At: "Drew Adams" writes: > Thanks for those functions Kim. I'll take a look. Offhand, I'm still not > sure how to do what I want. How can I set a character in the display table > to be displayed with a vector of glyphs that have a given face? Do I create > a propertized string, convert it to a vector, and use that as the glyph > vector, or what? You set each element of the vector using make-glyph-with-face, e.g. (vector (make-glyph-with-face ?x 'bold) (make-glyph-with-face ?y 'bold) (make-glyph-with-face ?z 'bold)) -- Kim F. Storm http://www.cua.dk