all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: mwnn <mwnnlin@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Disabling redundant asterisks in doxygen comments
Date: Sun, 02 Aug 2009 11:21:55 +0530	[thread overview]
Message-ID: <4A75297B.5020707@gmail.com> (raw)

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?





                 reply	other threads:[~2009-08-02  5:51 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A75297B.5020707@gmail.com \
    --to=mwnnlin@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.