Skip to content

Commit

Permalink
mangen.h: remove italic in brief member descriptions
Browse files Browse the repository at this point in the history
nroff does not support italic text and replaces it with underlined text which
looks weird on the brief description text.
  • Loading branch information
schachmat committed Mar 16, 2016
1 parent f26cc41 commit 5716f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mangen.h
Expand Up @@ -160,8 +160,8 @@ class ManGenerator : public OutputGenerator
void endCenter() {}
void startSmall() {}
void endSmall() {}
void startMemberDescription(const char *,const char *) { t << "\n.RI \"\\fI"; firstCol=FALSE; }
void endMemberDescription() { t << "\\fP\""; firstCol=FALSE; }
void startMemberDescription(const char *,const char *) { t << "\n.RI \""; firstCol=FALSE; }
void endMemberDescription() { t << "\""; firstCol=FALSE; }
void startMemberDeclaration() {}
void endMemberDeclaration(const char *,const char *) {}
void writeInheritedSectionTitle(const char *,const char *,const char *,
Expand Down

0 comments on commit 5716f0a

Please sign in to comment.