From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Adam Funk Newsgroups: gmane.emacs.help Subject: Re: Telling auctex to format a user-defined command as \item ? Date: Wed, 24 Sep 2014 16:00:15 +0100 Message-ID: References: <0531fbx36a.ln2@news.ducksburg.com> NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1411571729 11381 80.91.229.3 (24 Sep 2014 15:15:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 24 Sep 2014 15:15:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 24 17:15:22 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 1XWoHq-0001md-J7 for geh-help-gnu-emacs@m.gmane.org; Wed, 24 Sep 2014 17:15:22 +0200 Original-Received: from localhost ([::1]:60470 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XWoHq-000259-1S for geh-help-gnu-emacs@m.gmane.org; Wed, 24 Sep 2014 11:15:22 -0400 Original-Path: usenet.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 14 Original-X-Trace: individual.net 7VynX0Oy+5l55hgIFt7bxgOSLDzTItHM+MvX6nz6kaYgAyKgdV X-Orig-Path: news.ducksburg.com!not-for-mail Cancel-Lock: sha1:014rfQklUHSaV6V5TgTHpWDNphw= sha1:GTsL84p8pEfyoSL10odMCc9gJjE= User-Agent: slrn/pre1.0.2-9 (Linux) Original-Xref: usenet.stanford.edu gnu.emacs.help:207849 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:100124 Archived-At: On 2014-09-21, Tassilo Horn wrote: > Good, but you shouldn't use `defcustom' for your configurations else the > emacs help facilities will say that those variables are defined in your > init file, won't show the real (upstream) default values, and the links > go into you init file instead to the file where the package in question > defines the variable. Use a simple `setq'. > > (setq LaTeX-verbatim-regexp ".*verbatim\\*?" > LaTeX-item-regexp "\\(\\(bib\\)?item\\|method\\)\\b") I've changed it to that & it works too. I can't explain where I got the defcustom from --- I must've seen it in some similar-looking situation & misadopted it. thanks.