comparison libinterp/corefcn/gl-render.cc @ 21602:47c76e56a1de

maint: Remove extra space between end of statement and semicolon. * bsxfun.cc, data.cc, gl-render.cc, graphics.cc, ls-mat4.h, amd.cc, audioread.cc, ccolamd.cc, colamd.cc, eigs-base.cc, sparse-chol.cc, sparse-dmsolve.cc, Sparse-op-defs.h, bicubic.m, sprandsym.m: maint: Remove extra space between end of statement and semicolon.
author Rik <rik@octave.org>
date Sun, 10 Apr 2016 20:45:01 -0700
parents 385b67d48dda
children 53728df3e4c9
comparison
equal deleted inserted replaced
21601:25fd18a15a6c 21602:47c76e56a1de
2932 if (props.is_clipping ()) // clip to axes 2932 if (props.is_clipping ()) // clip to axes
2933 { 2933 {
2934 if (im_xmin < xmin) 2934 if (im_xmin < xmin)
2935 j0 += (xmin - im_xmin)/nor_dx + 1; 2935 j0 += (xmin - im_xmin)/nor_dx + 1;
2936 if (im_xmax > xmax) 2936 if (im_xmax > xmax)
2937 j1 -= (im_xmax - xmax)/nor_dx ; 2937 j1 -= (im_xmax - xmax)/nor_dx;
2938 2938
2939 if (im_ymin < ymin) 2939 if (im_ymin < ymin)
2940 i0 += (ymin - im_ymin)/nor_dy + 1; 2940 i0 += (ymin - im_ymin)/nor_dy + 1;
2941 if (im_ymax > ymax) 2941 if (im_ymax > ymax)
2942 i1 -= (im_ymax - ymax)/nor_dy; 2942 i1 -= (im_ymax - ymax)/nor_dy;