shithub: freetype+ttf2subf

Download patch

ref: 053e24eacef01e7350cd869c679f75d0f669c5ae
parent: f214137fbbec3e674df8e2aec8b7bab2d226f847
author: Werner Lemberg <[email protected]>
date: Mon Nov 27 14:23:05 EST 2000

formatting

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/cff/t2gload.c
+++ b/src/cff/t2gload.c
@@ -850,20 +850,19 @@
         {
           args = stack;
 
-          /* If there is a number here, it is either a difference against  */
-          /* `nominal_width', or it is a width itself.                     */            
-
           if ( num_args > 0 && decoder->read_width )
           {
-            /* If `nominal_width' is non-zero, the number is really a difference */
-            /* against `nominal_width'.  Else, the number here is truly a width, */
-            /* not a difference against `nominal_width'.  If the font does not   */
-            /* set `nominal_width', then `nominal_width' defaults to zero, and   */
-            /* so we can set 'glyph_width' to `nominal_width' plus number on the */
-            /* stack -- for either case.                                         */
+            /* If `nominal_width' is non-zero, the number is really a      */
+            /* difference against `nominal_width'.  Else, the number here  */
+            /* is truly a width, not a difference against `nominal_width'. */
+            /* If the font does not set `nominal_width', then              */
+            /* `nominal_width' defaults to zero, and so we can set         */
+            /* `glyph_width' to `nominal_width' plus number on the stack   */
+            /* -- for either case.                                         */
 
             FT_Int set_width_ok;
 
+
             switch ( op )
             {
             case t2_op_hmoveto:
@@ -887,14 +886,15 @@
 
             if ( set_width_ok )
             {
-              decoder->glyph_width = decoder->nominal_width + ( stack[0] >> 16 );
+              decoder->glyph_width = decoder->nominal_width +
+                                       ( stack[0] >> 16 );
               num_args--;
               args++;
             }
           }
 
-          decoder->read_width  = 0;
-          req_args = 0;
+          decoder->read_width = 0;
+          req_args            = 0;
         }
 
         req_args &= 15;