[BACK]Return to mdoc_strings.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/Attic/mdoc_strings.c between version 1.13 and 1.14

version 1.13, 2010/03/02 00:13:57 version 1.14, 2010/05/14 01:54:37
Line 57 
Line 57 
 };  };
   
   
   /*
    * FIXME: this is repeated in print_text() (html.c) and term_word()
    * (term.c).
    */
 int  int
 mdoc_iscdelim(char p)  mdoc_iscdelim(char p)
 {  {
   
         switch (p) {          switch (p) {
         case('|'):          case('|'): /* FIXME! */
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('('):          case('('):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 119 
Line 123 
   
 /* FIXME: move this into an editable .in file. */  /* FIXME: move this into an editable .in file. */
 size_t  size_t
 mdoc_macro2len(int macro)  mdoc_macro2len(enum mdoct macro)
 {  {
   
         switch (macro) {          switch (macro) {

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14