~ubuntu-branches/ubuntu/trusty/patch/trusty-security

« back to all changes in this revision

Viewing changes to lib/diffseq.h

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2013-01-03 17:34:45 UTC
  • mto: (6.1.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20130103173445-5vf8qmnfgd7ug67h
Tags: upstream-2.7.1
ImportĀ upstreamĀ versionĀ 2.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Analyze differences between two vectors.
2
2
 
3
 
   Copyright (C) 1988-1989, 1992-1995, 2001-2004, 2006-2011 Free Software
 
3
   Copyright (C) 1988-1989, 1992-1995, 2001-2004, 2006-2012 Free Software
4
4
   Foundation, Inc.
5
5
 
6
6
   This program is free software: you can redistribute it and/or modify
76
76
# define EARLY_ABORT(ctxt) false
77
77
#endif
78
78
 
79
 
/* Use this to suppress gcc's `...may be used before initialized' warnings.
 
79
/* Use this to suppress gcc's "...may be used before initialized" warnings.
80
80
   Beware: The Code argument must not contain commas.  */
81
81
#ifndef IF_LINT
82
82
# ifdef lint
129
129
  /* Edit scripts longer than this are too expensive to compute.  */
130
130
  OFFSET too_expensive;
131
131
 
132
 
  /* Snakes bigger than this are considered `big'.  */
 
132
  /* Snakes bigger than this are considered "big".  */
133
133
  #define SNAKE_LIMIT 20
134
134
};
135
135