RIC:1060: Change in PTL
[ric-plt/lib/rmr.git] / doc / src / rtd / fmt_changes.ksh
index 930bce4..c8cda01 100644 (file)
@@ -51,10 +51,23 @@ do
                /^#/ { next }           # ditch all comments
 
                # tag project releases by matching release tag associated
+               /4\.4\.6$/  { printf( "&h1(Cherry Release)\n" ); rheader = 1 }
                /4\.0\.5$/  { printf( "&h1(Bronze Release)\n" ); rheader = 1 }
                /1\.11\.1$/ { printf( "&h1(Amber Release)\n" ); rheader = 1 }
 
+               print_raw && /^\t\t/ {                  # anything indented should be unformatted
+                       gsub( "^\t\t", "    ", $0 )
+                       if( ! format_off ) {
+                               format_off = 1
+                               printf( ".nf\n" )
+                       }
+               }
+
                print_raw && /^$/ {                             # include blank lines after first real stuff
+                       if( format_off ) {
+                               format_off = 0
+                               printf( ".fo\n" );
+                       }
                        printf( "&space\n\n" );
                        next
                }