===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ruby-tioga-1.19.1/ext/Flate/zlib/crc32.c-202-/* =========================================================================
ruby-tioga-1.19.1/ext/Flate/zlib/crc32.c:203: * This function can be used by asm versions of crc32()
ruby-tioga-1.19.1/ext/Flate/zlib/crc32.c-204- */
##############################################
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c-87-#ifdef ASMV
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c:88:      void match_init OF((void)); /* asm code initialization */
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c-89-      uInt longest_match  OF((deflate_state *s, IPos cur_match));
##############################################
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c-1007-#ifdef ASMV
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c:1008:    match_init(); /* initialize the asm code */
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c-1009-#endif
##############################################
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c-1023-#ifndef ASMV
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c:1024:/* For 80x86 and 680x0, an optimized version will be provided in match.asm or
ruby-tioga-1.19.1/ext/Flate/zlib/deflate.c-1025- * match.S. The code will be functionally equivalent.
##############################################
ruby-tioga-1.19.1/ext/Flate/zlib/zlib.h-967-     8: DEBUG
ruby-tioga-1.19.1/ext/Flate/zlib/zlib.h:968:     9: ASMV or ASMINF -- use ASM code
ruby-tioga-1.19.1/ext/Flate/zlib/zlib.h-969-     10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention
##############################################
ruby-tioga-1.19.1/lib/Tioga/X_and_Y_Axes.rb-310-# The string for a numeric label is put in this TeX command string to be formatted.
ruby-tioga-1.19.1/lib/Tioga/X_and_Y_Axes.rb:311:# For example, `$#1$' will give the numbers in math mode, while `$\mathsf{#1}$' will 
ruby-tioga-1.19.1/lib/Tioga/X_and_Y_Axes.rb-312-# show the label using the math sans-serif font.
##############################################
ruby-tioga-1.19.1/lib/Tioga/X_and_Y_Axes.rb-320-# The string for a numeric label is put in this TeX command string to be formatted.
ruby-tioga-1.19.1/lib/Tioga/X_and_Y_Axes.rb:321:# For example, `$#1$' will give the numbers in math mode, while `$\mathsf{#1}$' will 
ruby-tioga-1.19.1/lib/Tioga/X_and_Y_Axes.rb-322-# show the label using the math sans-serif font.
##############################################
ruby-tioga-1.19.1/lib/Tioga/tioga_ui_cmds.rb-130-    end
ruby-tioga-1.19.1/lib/Tioga/tioga_ui_cmds.rb:131:    system($pdf_viewer + ' ' + pdf_file + ' > /dev/null')
ruby-tioga-1.19.1/lib/Tioga/tioga_ui_cmds.rb-132-    append_to_log pdf_file
##############################################
ruby-tioga-1.19.1/samples/make_plots-26-while test "$1"; do
ruby-tioga-1.19.1/samples/make_plots:27:    DIR=`dirname $1`
ruby-tioga-1.19.1/samples/make_plots-28-    echo "Going to directory $DIR"
ruby-tioga-1.19.1/samples/make_plots-29-    cd $DIR;
ruby-tioga-1.19.1/samples/make_plots:30:    NAME=`basename $1`
ruby-tioga-1.19.1/samples/make_plots-31-    if test "$VIEW"; then
##############################################
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb-278-Put the `s' back, and we'll look at the final kind of bug, one that shows up when TeX is running.
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb:279:In the same line in sine, change `$y$' to `$y'.  Recall that text such as this gets passed along to TeX, and
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb:280:the `$' tells TeX to enter or leave math mode.  By removing the closing `$' we'll make TeX very unhappy.  Here's
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb-281-the output:
##############################################
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb-298-TeX suggests that either we have an extra `}' or we've forgotten a `$'.
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb:299:Then it outputs the line `<argument> \tiogasetfont {$y\BS }' that contains the problem line of text `$y'.
ruby-tioga-1.19.1/tutorial/tutorial_command_line.rb-300-Clues like that are typically enough to let you quickly find the problem.