From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: mwnn Newsgroups: gmane.emacs.help Subject: Disabling redundant asterisks in doxygen comments Date: Sun, 02 Aug 2009 11:21:55 +0530 Message-ID: <4A75297B.5020707@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1249192394 11365 80.91.229.12 (2 Aug 2009 05:53:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 2 Aug 2009 05:53:14 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Aug 02 07:53:06 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 1MXU0G-0001sH-OV for geh-help-gnu-emacs@m.gmane.org; Sun, 02 Aug 2009 07:53:05 +0200 Original-Received: from localhost ([127.0.0.1]:57476 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MXU0F-0003vr-V0 for geh-help-gnu-emacs@m.gmane.org; Sun, 02 Aug 2009 01:53:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MXTzW-0003v0-7R for help-gnu-emacs@gnu.org; Sun, 02 Aug 2009 01:52:18 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MXTzQ-0003rO-CO for help-gnu-emacs@gnu.org; Sun, 02 Aug 2009 01:52:16 -0400 Original-Received: from [199.232.76.173] (port=34440 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MXTzQ-0003rL-6O for help-gnu-emacs@gnu.org; Sun, 02 Aug 2009 01:52:12 -0400 Original-Received: from rv-out-0708.google.com ([209.85.198.249]:63779) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MXTzP-0008IQ-Ox for help-gnu-emacs@gnu.org; Sun, 02 Aug 2009 01:52:11 -0400 Original-Received: by rv-out-0708.google.com with SMTP id f25so1289957rvb.6 for ; Sat, 01 Aug 2009 22:52:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=8kvR0yK+X2WvizHXT7dw09ty9Bq0KyPw/kJF0PGTblY=; b=L0g8dU5aNCBSknbsbtbl7Ain4fOTm7yNJ8lJUzBaIyAw1oaHMMrXjhjpzkiHH6Xgk6 C1n4jn6ErpA19JNM351uW7dels0KIbEABxBbRz/mqdCgYqLth5g4f0rE2rxwNKYTaucv NMiy+Zr9r/cgHfVGU00TQyIau8R7Pds+pURdA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=UhWOLtXiNxZvDg4HZs63VYqgJRsIAwX+PyRPXDkNQYbxTVscEp+3WFxtk5UXmV6MWo sVW43dMmDzQHjH0VLpOK1BGESgRhMNrNLjEtxH2IZsNOwPDRQJ4TttVnk8LoAz+WqJHr zf0SVYIGd8S0rixDGipDa0kCRBU9M5bJQVGfQ= Original-Received: by 10.140.134.15 with SMTP id h15mr2894500rvd.152.1249192328129; Sat, 01 Aug 2009 22:52:08 -0700 (PDT) Original-Received: from ?192.168.1.10? ([59.92.157.229]) by mx.google.com with ESMTPS id k37sm4844730rvb.42.2009.08.01.22.52.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 01 Aug 2009 22:52:06 -0700 (PDT) User-Agent: Thunderbird 2.0.0.22 (X11/20090605) 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:66640 Archived-At: Hi, Emacs adds asterisks for every new line in a doxygen comment as shown below: /** * @file vertical_histogram.c * * @brief Program to print a graphical histogram that depicts the number * of characters found in the input. The input is classified as * 1. Digits. * 2. Whitspaces. * 3. Others * * Logic: * 1. The character inputted by the user is classified. * 2. The variable that holds the count for that group of characters * is incremented. * 3. Stop taking input on EOF. * 4. Print the histogram. */ The way i would prefer it would be: /** @file vertical_histogram.c @brief Program to print a graphical histogram that depicts the number of characters found in the input. The input is classified as 1. Digits. 2. Whitspaces. 3. Others Logic: 1. The character inputted by the user is classified. 2. The variable that holds the count for that group of characters is incremented. 3. Stop taking input on EOF. 4. Print the histogram. */ .... with each new line indented by a tab. What should i add to my .emacs file so that i can accomplish this?