From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paul K Newsgroups: gmane.emacs.help Subject: x popup menu does not honor font faces. Date: Sat, 10 May 2014 22:18:36 +0200 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1399753136 18152 80.91.229.3 (10 May 2014 20:18:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 10 May 2014 20:18:56 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat May 10 22:18:50 2014 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 1WjDjM-0007tu-Ta for geh-help-gnu-emacs@m.gmane.org; Sat, 10 May 2014 22:18:49 +0200 Original-Received: from localhost ([::1]:58842 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WjDjM-0001fO-Co for geh-help-gnu-emacs@m.gmane.org; Sat, 10 May 2014 16:18:48 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53169) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WjDjB-0001fC-US for help-gnu-emacs@gnu.org; Sat, 10 May 2014 16:18:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WjDjB-00070K-56 for help-gnu-emacs@gnu.org; Sat, 10 May 2014 16:18:37 -0400 Original-Received: from mail-qg0-x229.google.com ([2607:f8b0:400d:c04::229]:40411) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WjDjA-00070A-Te for help-gnu-emacs@gnu.org; Sat, 10 May 2014 16:18:37 -0400 Original-Received: by mail-qg0-f41.google.com with SMTP id j5so6098545qga.14 for ; Sat, 10 May 2014 13:18:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=2tlmEkmsRY8jCI9CgcSG78L7eQrOOv/IPRQTpxa3SKU=; b=SY4aIdAegwasYnVwrmdX+9FkobIjG1pRHlMks+TESyI07h5Miv7sfGQ7s5bKBDljPH W8g/lsyKutHXlufvSjC2clmIzss3nHfq8Ivs+M/VbLZxIZcjIy/6aEEFUJx3ioTffOCY Hzc9+fiY7DMQhhiTsHyP26rQU5EQHQnmVvlba6zGOLibwrz6b23YFEqGQoSbC1VGYiBn NN+iRBomhJTIe2mbdtbJgJ6wTrC9Oq5Ankoe8Q41fy7Xxdq4uT4mdBKA9MSsMLnjvo1S lkkPlFykI1OVjpLSObqK2tf2Si2Tt/dI3DFXswt6/GZkNpwnMRB2CwjjBKWypMzGGFMg iI/A== X-Received: by 10.229.211.66 with SMTP id gn2mr24045927qcb.0.1399753116295; Sat, 10 May 2014 13:18:36 -0700 (PDT) Original-Received: by 10.140.88.242 with HTTP; Sat, 10 May 2014 13:18:36 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c04::229 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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:97580 Archived-At: I would like to have "first" be bold, but no luck with the following example. (let ((BOLD (propertize "first" 'font 'bold))) (x-popup-menu t (list "choose either" (list "two numbers" (cons BOLD "1st") (cons "second" 2))))) Is it because popup menu is some external feature of x thus just skip text properties or am I doing something wrong? regards