~ubuntu-branches/ubuntu/lucid/graphviz/lucid-updates

« back to all changes in this revision

Viewing changes to lib/agraph/attr.c

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2008-06-19 20:23:23 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080619202323-ls23h96ntj9ny94m
Tags: 2.18-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Build depend on liblualib50-dev instead of liblua5.1-0-dev.
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev or python2.5-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: attr.c,v 1.2 2006/07/08 17:33:49 ellson Exp $ $Revision: 1.2 $ */
 
1
/* $Id: attr.c,v 1.3 2008/03/08 18:26:30 ellson Exp $ $Revision: 1.3 $ */
2
2
/* vim:set shiftwidth=4 ts=8: */
3
3
 
4
4
/**********************************************************
28
28
static void freesym(Dict_t * d, Void_t * obj, Dtdisc_t * disc);
29
29
 
30
30
Dtdisc_t AgDataDictDisc = {
31
 
    (int) offsetof(Agsym_t, name),      /* use symbol name as key */
 
31
    offsetof(Agsym_t, name),    /* use symbol name as key */
32
32
    -1,
33
 
    (int) offsetof(Agsym_t, link),
 
33
    offsetof(Agsym_t, link),
34
34
    NIL(Dtmake_f),
35
35
    freesym,
36
36
    NIL(Dtcompar_f),