gensequences (8dcd2ed3c92d5fcaca7da3d2669b7ed3bd510ac9) | gensequences (3eb27bf0a7b229d523bcc059b90784cfd7b908db) |
---|---|
1#!/usr/bin/awk -f 2 3#- 4# Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org> 5# All rights reserved. 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions --- 144 unchanged lines hidden (view full) --- 153 print "\t\tteken_printf(\"Unsupported sequence in " l_prefix_name[p] ": %u\\n\", (unsigned int)c);"; 154 } 155 print "\t\tbreak;"; 156 157 print "\t}"; 158 159 if (l_prefix_name[p] != "teken_state_init") { 160 print ""; | 1#!/usr/bin/awk -f 2 3#- 4# Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org> 5# All rights reserved. 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions --- 144 unchanged lines hidden (view full) --- 153 print "\t\tteken_printf(\"Unsupported sequence in " l_prefix_name[p] ": %u\\n\", (unsigned int)c);"; 154 } 155 print "\t\tbreak;"; 156 157 print "\t}"; 158 159 if (l_prefix_name[p] != "teken_state_init") { 160 print ""; |
161 print "\tt->t_last = 0;"; |
|
161 print "\tteken_state_switch(t, teken_state_init);"; 162 } 163 print "}"; 164} 165 166} | 162 print "\tteken_state_switch(t, teken_state_init);"; 163 } 164 print "}"; 165} 166 167} |