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

Diff for /mandoc/mandoc.c between version 1.89 and 1.90

version 1.89, 2014/12/15 17:30:30 version 1.90, 2015/01/01 18:11:45
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011-2015 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 225  mandoc_escape(const char **end, const char **start, in
Line 225  mandoc_escape(const char **end, const char **start, in
   
                 /* See +/- counts as a sign. */                  /* See +/- counts as a sign. */
                 if ('+' == **end || '-' == **end || ASCII_HYPH == **end)                  if ('+' == **end || '-' == **end || ASCII_HYPH == **end)
                         (*end)++;                          *start = ++*end;
   
                 switch (**end) {                  switch (**end) {
                 case '(':                  case '(':

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90

CVSweb