~ubuntu-branches/ubuntu/vivid/tidy/vivid-updates

« back to all changes in this revision

Viewing changes to src/attrask.c

  • Committer: Bazaar Package Importer
  • Author(s): Jason Thomas
  • Date: 2008-01-20 21:46:03 UTC
  • mfrom: (0.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080120214603-oqicq5jwr1exrm55
Tags: 20080116cvs-2
* debian/control: build depends on xsltproc
  (closes: #461608)
* debian/tidy.preinst,postinst: add code to move old config file
  (closes: #461623)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* attrask.c -- Interrogate attribute type
2
2
 
3
 
  (c) 1998-2005 (W3C) MIT, ERCIM, Keio University
 
3
  (c) 1998-2006 (W3C) MIT, ERCIM, Keio University
4
4
  See tidy.h for the copyright notice.
5
5
  
6
6
  CVS Info:
7
7
    $Author: arnaud02 $ 
8
 
    $Date: 2005/04/08 09:11:13 $ 
9
 
    $Revision: 1.4 $ 
 
8
    $Date: 2006/09/12 15:14:44 $ 
 
9
    $Revision: 1.5 $ 
10
10
 
11
11
*/
12
12
 
116
116
}
117
117
Bool TIDY_CALL tidyAttrIsEvent( TidyAttr tattr )
118
118
{
119
 
    return attrIsEvent( tidyAttrToImpl(tattr) );
 
119
    return TY_(attrIsEvent)( tidyAttrToImpl(tattr) );
120
120
}
121
121
Bool TIDY_CALL tidyAttrIsOnMOUSEMOVE( TidyAttr tattr )
122
122
{
198
198
{
199
199
    return attrIsROWSPAN( tidyAttrToImpl(tattr) );
200
200
}
 
201
 
 
202
/*
 
203
 * local variables:
 
204
 * mode: c
 
205
 * indent-tabs-mode: nil
 
206
 * c-basic-offset: 4
 
207
 * eval: (c-set-offset 'substatement-open 0)
 
208
 * end:
 
209
 */