[BACK]Return to mdocterm.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/mdocterm.c between version 1.7 and 1.8

version 1.7, 2009/02/23 15:34:53 version 1.8, 2009/02/24 14:52:55
Line 305  pescape(struct termp *p, const char *word, size_t *i, 
Line 305  pescape(struct termp *p, const char *word, size_t *i, 
                         stringa(p, "<-");                          stringa(p, "<-");
                 else if ('-' == word[*i] && '>' == word[*i + 1])                  else if ('-' == word[*i] && '>' == word[*i + 1])
                         stringa(p, "->");                          stringa(p, "->");
                   else if ('l' == word[*i] && 'q' == word[*i + 1])
                           chara(p, '\"');
                   else if ('r' == word[*i] && 'q' == word[*i + 1])
                           chara(p, '\"');
   
                 (*i)++;                  (*i)++;
                 return;                  return;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb