~ubuntu-branches/ubuntu/oneiric/lynx-cur/oneiric-updates

« back to all changes in this revision

Viewing changes to src/LYCharUtils.c

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2009-06-07 21:50:20 UTC
  • mfrom: (1.20.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090607215020-w4i7y7azbrlskove
Tags: 2.8.7pre5-1
New Upstream Release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $LynxId: LYCharUtils.c,v 1.99 2009/05/25 13:45:35 tom Exp $
 
2
 * $LynxId: LYCharUtils.c,v 1.100 2009/05/30 11:56:03 tom Exp $
3
3
 *
4
4
 *  Functions associated with LYCharSets.c and the Lynx version of HTML.c - FM
5
5
 *  ==========================================================================
2113
2113
    }
2114
2114
    CTRACE((tfp,
2115
2115
            "LYHandleMETA: HTTP-EQUIV=\"%s\" NAME=\"%s\" CONTENT=\"%s\"\n",
2116
 
            (http_equiv ? http_equiv : "NULL"),
2117
 
            (name ? name : "NULL"),
2118
 
            (content ? content : "NULL")));
 
2116
            NONNULL(http_equiv),
 
2117
            NONNULL(name),
 
2118
            NONNULL(content)));
2119
2119
 
2120
2120
    /*
2121
2121
     * Make sure we have META name/value pairs to handle.  - FM