~ubuntu-branches/ubuntu/saucy/exuberant-ctags/saucy

« back to all changes in this revision

Viewing changes to make.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2010-02-26 23:20:58 UTC
  • Revision ID: james.westby@ubuntu.com-20100226232058-wp70e6glrl5mi6ft
Tags: 1:5.8-2
* Rewrite debian/rules using debhelper 7.
* Convert to source format 3.0 (quilt).
* Policy version 3.8.4: no changes required.
* Fix endless loop on unmatched { in a Makefile with no following newline
  (thanks, Martin Dorey; closes: #571652).
* Backport upstream patch to ignore keywords inside PHP multiline comments
  (closes: #505538).

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
                        ++matchLevel;
101
101
                else if (c == end)
102
102
                        --matchLevel;
103
 
                else if (c == '\n')
 
103
                else if (c == '\n' || c == EOF)
104
104
                        break;
105
105
        }
106
106
        if (c == EOF)