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

Diff for /mandoc/tbl_layout.c between version 1.26 and 1.28

version 1.26, 2014/04/20 16:46:05 version 1.28, 2014/10/07 14:07:03
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifdef HAVE_CONFIG_H  
 #include "config.h"  #include "config.h"
 #endif  
   
   #include <sys/types.h>
   
 #include <ctype.h>  #include <ctype.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 200  mod:
Line 200  mod:
                 goto mod;                  goto mod;
         default:          default:
                 break;                  break;
           }
           if (isalnum((unsigned char)p[*pos - 1])) {
                   mandoc_vmsg(MANDOCERR_FT_BAD, tbl->parse,
                       ln, *pos - 1, "TS f%c", p[*pos - 1]);
                   goto mod;
         }          }
   
         mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse,          mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse,

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.28

CVSweb