From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Miguel Guedes Newsgroups: gmane.emacs.help Subject: Apply faces to string output to mini-buffer Date: 23 May 2013 10:50:56 GMT Message-ID: <519df490$0$33340$862e30e2@ngroups.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1369324305 18645 80.91.229.3 (23 May 2013 15:51:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 23 May 2013 15:51:45 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu May 23 17:51:45 2013 Return-path: Envelope-to: geh-help-gnu-emacs@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 1UfXnt-0002Vm-7L for geh-help-gnu-emacs@m.gmane.org; Thu, 23 May 2013 17:51:45 +0200 Original-Received: from localhost ([::1]:33672 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfXns-00064G-Sc for geh-help-gnu-emacs@m.gmane.org; Thu, 23 May 2013 11:51:44 -0400 Original-Path: usenet.stanford.edu!news.glorb.com!transit3.readnews.com!news-out.readnews.com!s09-01.readnews.com!not-for-mail Original-X-Trace: DXC=]bcVCbU=bm Original-X-Complaints-To: abuse@blocknews.net Original-Newsgroups: gnu.emacs.help User-Agent: Pan/0.139 (Sexual Chocolate; GIT bf56508 git://git.gnome.org/pan2) Original-Lines: 14 Original-NNTP-Posting-Host: 6a21ec0f.ngroups.net Original-Xref: usenet.stanford.edu gnu.emacs.help:198728 X-Mailman-Approved-At: Thu, 23 May 2013 11:51:34 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor 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 Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:91004 Archived-At: Hello List, How can faces be applied to strings output to the minibuffer? An elisp client I'm writing receives data asynchronously from a server and I would very much like to apply faces to it. So the following string should have the appropriate faces applied to type, variable and function name, and so on: boost::shared_ptr get(unsigned int index) -- Miguel