~ubuntu-branches/debian/sid/gnubg/sid

« back to all changes in this revision

Viewing changes to html.c

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2012-04-28 20:56:26 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20120428205626-ak6mamwbrir2k9fq
Tags: 0.90+20120429-1
* New upstream development snapshot.
  - Remove inclusion of specific glib headers, which is no longer
    permitted as of glib 2.32.  (Closes: #665539)
* Update mkinstalldirs in the source package to work around a strange
  interaction between autoreconf and dh_autoreconf where the former will
  update it, the latter will therefore remove it on clean, and then the
  former will not copy it back into the tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * along with this program; if not, write to the Free Software
17
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 *
19
 
 * $Id: html.c,v 1.226 2011/10/01 23:28:07 mdpetch Exp $
 
19
 * $Id: html.c,v 1.227 2012/03/23 16:51:43 plm Exp $
20
20
 */
21
21
 
22
22
#include "config.h"
168
168
 
169
169
    fputs( "\n"
170
170
           "/* CSS Stylesheet for " VERSION_STRING " */\n"
171
 
           "/* $Id: html.c,v 1.226 2011/10/01 23:28:07 mdpetch Exp $ */\n",
 
171
           "/* $Id: html.c,v 1.227 2012/03/23 16:51:43 plm Exp $ */\n",
172
172
           pf );
173
173
 
174
174
    fputs( "/* This file is distributed as a part of the "
1846
1846
  int fFirst;
1847
1847
  int i;
1848
1848
 
1849
 
  const char szVersion[] = "$Revision: 1.226 $";
 
1849
  const char szVersion[] = "$Revision: 1.227 $";
1850
1850
  int iMajor, iMinor;
1851
1851
 
1852
1852
  iMajor = atoi ( strchr ( szVersion, ' ' ) );
1926
1926
 
1927
1927
  time_t t;
1928
1928
 
1929
 
  const char szVersion[] = "$Revision: 1.226 $";
 
1929
  const char szVersion[] = "$Revision: 1.227 $";
1930
1930
  int iMajor, iMinor;
1931
1931
  char *pc;
1932
1932
 
2096
2096
  else
2097
2097
    r = arDouble[ OUTPUT_NODOUBLE ] - arDouble[ OUTPUT_TAKE ];
2098
2098
 
2099
 
  if ( fDouble > 0 && r > 0.0f ) {
 
2099
  if ( fDouble > 0 && fTake < 0 && r > 0.0f ) {
2100
2100
 
2101
2101
    fAnno = TRUE;
2102
2102