~ubuntu-branches/ubuntu/oneiric/gimp/oneiric-security

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_csim.y

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-02-03 03:07:19 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20080203030719-4s9wlbv30394rlrp
Tags: 2.4.4-1ubuntu1
* Merge from Debian unstable. (LP: #188828)
* Ubuntu remaining changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Remove the doc directory symlink in the preinst, and replace it with a
    directory.
  - Added NEWS, README and README.Debian to gimp.docs.
  - Modify Maintainer value to match Debian-Maintainer-Field Spec
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
%union {
50
50
  int val;
51
51
  double value;
52
 
  char id[1024];                /* Large enough to hold all polygon points! */
 
52
  char id[4096];                /* Large enough to hold all polygon points! */
53
53
}
54
54
 
55
55
%token<val> IMG SRC WIDTH HEIGHT BORDER USEMAP
136
136
                {
137
137
                   gchar *description;
138
138
 
139
 
                   description = g_strconcat(_map_info->description, $2, "\n", 
 
139
                   description = g_strconcat(_map_info->description, $2, "\n",
140
140
                                             NULL);
141
141
                   g_strreplace(&_map_info->description, description);
142
142
                }
154
154
                ;
155
155
 
156
156
xhtml_close     : '>'
157
 
                | '/' '>' 
 
157
                | '/' '>'
158
158
                ;
159
159
 
160
160
tag_list        : /* Empty */
310
310
 
311
311
%%
312
312
 
313
 
static void 
 
313
static void
314
314
csim_error(char* s)
315
315
{
316
316
   extern FILE *csim_in;