~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to tagmanager/haskell.c

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-01-01 18:40:50 UTC
  • mfrom: (1.1.8 upstream) (3.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20090101184050-u635kualu7amyt4a
Tags: 0.15-1ubuntu1
* Merge from debian experimental, remaining change:
  - patches/20_add_debdiff_as_diff_type.dpatch: Also recognize .dpatch files
    as diff's
  - debian/geany.xpm: Replace icon with a .xpm of the new one

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
                        return c;
153
153
                    }
154
154
                }
155
 
            } while (c != '=');
 
155
            } while (c != EOF && c != '=');
156
156
            st = Find_Constr;
157
157
        }
158
158
        else if (st == Find_Constr)
202
202
                    st = Find_Bar;
203
203
                    break;
204
204
                }
205
 
            } while (c != ',');
 
205
            } while (c != EOF && c != ',');
206
206
        }
207
207
        else if (st == Find_Bar)
208
208
        {