From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/68093 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: Conventions Date: Tue, 06 Jan 2009 12:33:08 +0100 Message-ID: <87sknwy8i3.fsf@thinkpad.tsdh.de> References: <87iqphil5p.fsf@liv.ac.uk> <87ocz3n8d4.fsf@marauder.physik.uni-ulm.de> <87iqpa99wy.fsf@liv.ac.uk> <87wsde7t5j.fsf_-_@marauder.physik.uni-ulm.de> <87tz8dn33e.fsf@liv.ac.uk> <871vvhtrs8.fsf_-_@marauder.physik.uni-ulm.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1231241605 20997 80.91.229.12 (6 Jan 2009 11:33:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 6 Jan 2009 11:33:25 +0000 (UTC) Cc: ding@gnus.org To: Dave Love Original-X-From: ding-owner+M16538@lists.math.uh.edu Tue Jan 06 12:34:35 2009 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1LKACg-00031c-Dd for ding-account@gmane.org; Tue, 06 Jan 2009 12:34:34 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1LKABO-00035t-Lp; Tue, 06 Jan 2009 05:33:14 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1LKABN-00035a-FJ for ding@lists.math.uh.edu; Tue, 06 Jan 2009 05:33:13 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1LKABK-0006lR-Dz for ding@lists.math.uh.edu; Tue, 06 Jan 2009 05:33:13 -0600 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1LKABa-0007V9-00 for ; Tue, 06 Jan 2009 12:33:26 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by deliver.uni-koblenz.de (Postfix) with ESMTP id 563F1789AD7B; Tue, 6 Jan 2009 12:33:09 +0100 (CET) Original-Received: from deliver.uni-koblenz.de ([127.0.0.1]) by localhost (deliver.uni-koblenz.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20157-06; Tue, 6 Jan 2009 12:33:08 +0100 (CET) X-CHKRCPT: Envelopesender vrfy tassilo@member.fsf.org Original-Received: from thinkpad.tsdh.de (dhcp128.uni-koblenz.de [141.26.71.128]) by deliver.uni-koblenz.de (Postfix) with ESMTP id 6C42E789AD65; Tue, 6 Jan 2009 12:33:08 +0100 (CET) Mail-Copies-To: never Mail-Followup-To: Dave Love , ding@gnus.org In-Reply-To: <871vvhtrs8.fsf_-_@marauder.physik.uni-ulm.de> (Reiner Steib's message of "Mon, 05 Jan 2009 21:35:35 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-Virus-Scanned: amavisd-new at uni-koblenz.de X-Spam-Score: -5.6 (-----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:68093 Archived-At: Reiner Steib writes: Hi! >> For what it's worth, as you changed it generally, is there some >> convention always to capitalize `FIXME'? > > I dunno if there's an Emacs convention. In the current Emacs trunk, > we have: > > FIXME: 576 > Fixme: 132 > fixme: 17 > > At least it's my personal preference. :-) Ditto. And it distinguishes better from usual comments, especially if you use something like: --8<---------------cut here---------------start------------->8--- (defvar th-font-lock-modes '(c-mode emacs-lisp-mode lisp-mode ruby-mode haskell-mode latex-mode texinfo-mode greql-mode greqlscript-mode lua-mode)) (dolist (mode th-font-lock-modes) (font-lock-add-keywords mode '(("\\<\\(FIXME\\|TODO\\)" 1 'font-lock-warning-face t)))) --8<---------------cut here---------------end--------------->8--- Bye, Tassilo