~ubuntu-branches/ubuntu/hardy/lighttpd/hardy-updates

« back to all changes in this revision

Viewing changes to src/configparser.y

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-10-10 13:57:38 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010135738-gn4pp1ut1s1g27pb
Tags: 1.4.13~r1370-1ubuntu1
* Merge from Debian unstable (Closes: Malone #64900). Remaining changes:
  - Add an additional dependency on libterm-readline-perl-perl
    (Malone #43895)

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
  ((data_array *)(A))->value = B;
275
275
  B = NULL;
276
276
}
 
277
array(A) ::= LPARAN RPARAN. {
 
278
  A = array_init();
 
279
}
277
280
array(A) ::= LPARAN aelements(B) RPARAN. {
278
281
  A = B;
279
282
  B = NULL;