From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.help Subject: Re: font-lock on variables Date: Sat, 25 Jul 2009 02:50:35 +0200 Message-ID: References: <87ljmdsu67.fsf@uchicago.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1248483075 8465 80.91.229.12 (25 Jul 2009 00:51:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 25 Jul 2009 00:51:15 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Santiago Mejia Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jul 25 02:51:07 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MUVTd-0002Lb-DP for geh-help-gnu-emacs@m.gmane.org; Sat, 25 Jul 2009 02:51:05 +0200 Original-Received: from localhost ([127.0.0.1]:54808 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MUVTc-0006I3-RL for geh-help-gnu-emacs@m.gmane.org; Fri, 24 Jul 2009 20:51:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MUVTG-0006Hf-7D for help-gnu-emacs@gnu.org; Fri, 24 Jul 2009 20:50:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MUVTB-0006Gr-Al for help-gnu-emacs@gnu.org; Fri, 24 Jul 2009 20:50:41 -0400 Original-Received: from [199.232.76.173] (port=34532 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MUVTB-0006Go-4u for help-gnu-emacs@gnu.org; Fri, 24 Jul 2009 20:50:37 -0400 Original-Received: from an-out-0708.google.com ([209.85.132.242]:4605) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MUVTA-0006DN-PS for help-gnu-emacs@gnu.org; Fri, 24 Jul 2009 20:50:36 -0400 Original-Received: by an-out-0708.google.com with SMTP id b6so1862973ana.21 for ; Fri, 24 Jul 2009 17:50:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ACcgoSBufzD+/mLeG+UmsezmtRUAFBSpwuMme/ZoRSI=; b=u8O6lVXj5koawKGRahDbf7NG1I4UyQyE2Ve/JgbbsIGLe4Z3eo0esgNwQzjzrz9VQH i3VmEJ+/MiROfRWuBs81he6lXcdAU485j0ozK8TH2UZD5srt26FXJQXgsds6RG7YqQed GPWrNSpcsClJoQLivu8D/FkpVpsQUwLdV2BjE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=DjD860WTRjiNZVzzMbWaVe0EE9PgT5wExV8gd6nTT0CbDNZ0DUCqY32TrsdJqqgjY9 dQJvk1Hw+fkW8jj8U7nBhMDeTONLfFWxNmq1rEh4XTF06fHwz1A22Ii0cwCsQ9LZHF8w UGo/iR7sGEdXbBrpHdHC86USjdonP/TPNzYYA= Original-Received: by 10.100.32.13 with SMTP id f13mr5376587anf.36.1248483035164; Fri, 24 Jul 2009 17:50:35 -0700 (PDT) In-Reply-To: <87ljmdsu67.fsf@uchicago.edu> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:66379 Archived-At: On Fri, Jul 24, 2009 at 10:27 PM, Santiago Mejia wrote: > > I am trying to hack a few extensions in emacs that allow one to look for > words in dictionaries. =C2=A0(in particular, wordnet.el and sdcv.el (to b= e > found, respectively, at: http://williamxu.net9.org/ref/wordnet.el and > http://www.emacswiki.org/emacs/sdcv.el) > > When one looks for a word in, say, wordnet.el, it creates a new buffer, > *WORDNET* which has several of its key terms fontified. =C2=A0However, I > would like to be able to fontify, also, the actual word that I am > searching. =C2=A0This word is a variable, and changes every time one make= s a > new search. =C2=A0After going through the manual, and looking around in > google and the mailing lists, I have not been able to figure out how to > achieve such thing. Look at how hi-lock.el does it.