all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Disabling redundant asterisks in doxygen comments
@ 2009-08-02  5:51 mwnn
  0 siblings, 0 replies; only message in thread
From: mwnn @ 2009-08-02  5:51 UTC (permalink / raw
  To: help-gnu-emacs

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?





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-08-02  5:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-02  5:51 Disabling redundant asterisks in doxygen comments mwnn

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.