~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_cern_parse.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 1.875a.  */
2
 
 
3
 
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 
1
/* A Bison parser, made by GNU Bison 2.3.  */
 
2
 
 
3
/* Skeleton interface for Bison's Yacc-like parsers in C
 
4
 
 
5
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
 
6
   Free Software Foundation, Inc.
5
7
 
6
8
   This program is free software; you can redistribute it and/or modify
7
9
   it under the terms of the GNU General Public License as published by
15
17
 
16
18
   You should have received a copy of the GNU General Public License
17
19
   along with this program; if not, write to the Free Software
18
 
   Foundation, Inc., 59 Temple Place - Suite 330,
19
 
   Boston, MA 02111-1307, USA.  */
20
 
 
21
 
/* As a special exception, when this file is copied by Bison into a
22
 
   Bison output file, you may use that output file without restriction.
23
 
   This special exception was added by the Free Software Foundation
24
 
   in version 1.24 of Bison.  */
 
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
21
   Boston, MA 02110-1301, USA.  */
 
22
 
 
23
/* As a special exception, you may create a larger work that contains
 
24
   part or all of the Bison parser skeleton and distribute that work
 
25
   under terms of your choice, so long as that work isn't itself a
 
26
   parser generator using the skeleton or a modified version thereof
 
27
   as a parser skeleton.  Alternatively, if you modify or redistribute
 
28
   the parser skeleton itself, you may (at your option) remove this
 
29
   special exception, which will cause the skeleton and the resulting
 
30
   Bison output files to be licensed under the GNU General Public
 
31
   License without this special exception.
 
32
 
 
33
   This special exception was added by the Free Software Foundation in
 
34
   version 2.2 of Bison.  */
25
35
 
26
36
/* Tokens.  */
27
37
#ifndef YYTOKENTYPE
41
51
     LINK = 267
42
52
   };
43
53
#endif
 
54
/* Tokens.  */
44
55
#define RECTANGLE 258
45
56
#define POLYGON 259
46
57
#define CIRCLE 260
55
66
 
56
67
 
57
68
 
58
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
59
 
#line 45 "imap_cern.y"
60
 
typedef union YYSTYPE {
 
69
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 
70
typedef union YYSTYPE
 
71
#line 47 "imap_cern.y"
 
72
{
61
73
   int val;
62
74
   double value;
63
75
   char id[256];
64
 
} YYSTYPE;
65
 
/* Line 1240 of yacc.c.  */
66
 
#line 67 "y.tab.h"
 
76
}
 
77
/* Line 1489 of yacc.c.  */
 
78
#line 79 "y.tab.h"
 
79
        YYSTYPE;
67
80
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
68
81
# define YYSTYPE_IS_DECLARED 1
69
82
# define YYSTYPE_IS_TRIVIAL 1
71
84
 
72
85
extern YYSTYPE cern_lval;
73
86
 
74
 
 
75