From 72085fe330b4fb696a4b9f1e6cc4e63af6d3690b Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 4 Dec 2008 19:31:57 +0000 Subject: Moved charset recognition into the filter. --- roff.c | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'roff.c') diff --git a/roff.c b/roff.c index f5e3cc1f..576190e5 100644 --- a/roff.c +++ b/roff.c @@ -1,4 +1,4 @@ -/* $Id: roff.c,v 1.38 2008/12/04 16:34:59 kristaps Exp $ */ +/* $Id: roff.c,v 1.39 2008/12/04 19:31:57 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -969,23 +969,9 @@ roffparseopts(struct rofftree *tree, int tok, static int roffdata(struct rofftree *tree, int space, char *buf) { - int tok; if (0 == *buf) return(1); - - if (-1 == (tok = rofftok_scan(buf))) { - roff_err(tree, buf, "invalid character sequence"); - return(0); - } else if (ROFFTok_MAX != tok) { - if (ROFFTok_Null == tok) { /* FIXME */ - buf += 2; - return(roffdata(tree, space, buf)); - } - return((*tree->cb.rofftoken) - (tree->arg, space != 0, tok)); - } - return((*tree->cb.roffdata)(tree->arg, space != 0, tree->cur, buf)); } -- cgit v1.2.3