From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Why are ` and ' shown in help for doc strings? Date: Sat, 16 Dec 2006 02:16:45 +0100 Message-ID: References: <45834635.8010801@student.lu.se> NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1166231822 5860 80.91.229.10 (16 Dec 2006 01:17:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 16 Dec 2006 01:17:02 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 16 02:17:00 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by dough.gmane.org with esmtp (Exim 4.50) id 1GvOAe-0002td-FO for ged-emacs-devel@m.gmane.org; Sat, 16 Dec 2006 02:17:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GvOAd-00080T-U8 for ged-emacs-devel@m.gmane.org; Fri, 15 Dec 2006 20:16:59 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GvOAT-0007xg-1d for emacs-devel@gnu.org; Fri, 15 Dec 2006 20:16:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GvOAR-0007uY-C4 for emacs-devel@gnu.org; Fri, 15 Dec 2006 20:16:48 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GvOAR-0007uH-7q for emacs-devel@gnu.org; Fri, 15 Dec 2006 20:16:47 -0500 Original-Received: from [64.233.182.187] (helo=nf-out-0910.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GvOAR-00085n-4f for emacs-devel@gnu.org; Fri, 15 Dec 2006 20:16:47 -0500 Original-Received: by nf-out-0910.google.com with SMTP id d4so1325854nfe for ; Fri, 15 Dec 2006 17:16:46 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SHP0feIDvzLH8rD0rrp8gQ/YQw/Y8g0OZBuodzUQQL8ij9BMxJiD5So+/W3IPtTJncXABBlCKFhjj1HTVi7mUcUHcbe+eOvzzSx3y3dR8KsiLnN0vASl007FJipDteljT4aOoPkzWTw9M0MJCUpKi+SWsmU5csRtTIGFCyOB3jA= Original-Received: by 10.82.183.19 with SMTP id g19mr146047buf.1166231805681; Fri, 15 Dec 2006 17:16:45 -0800 (PST) Original-Received: by 10.82.147.2 with HTTP; Fri, 15 Dec 2006 17:16:45 -0800 (PST) Original-To: "Lennart Borgman" In-Reply-To: <45834635.8010801@student.lu.se> Content-Disposition: inline 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:63815 Archived-At: On 12/16/06, Lennart Borgman wrote: > If you write something like `some-var' it will show up just like that in > the doc string, but with some-var underlined. The underlining makes > some-var stick out pretty well. Why are ` and ' still shown then? The underline means that `some-var' is a button linking to `describe-variable' for some-var. But you could have customized the `button' face so it is indistinguishable from the default font. Try "M-: (set-face-attribute 'button nil :underline nil)". /L/e/k/t/u