| OLD | NEW |
| 1 #include <cstdlib> | 1 #include <cstdlib> |
| 2 #include <cstring> | 2 #include <cstring> |
| 3 #include <cstdio> | 3 #include <cstdio> |
| 4 #include <ctype.h> | 4 #include <ctype.h> |
| 5 | 5 |
| 6 #include "../hunspell/csutil.hxx" | 6 #include "../hunspell/csutil.hxx" |
| 7 #include "latexparser.hxx" | 7 #include "latexparser.hxx" |
| 8 | 8 |
| 9 #ifndef W32 | 9 #ifndef W32 |
| 10 using namespace std; | 10 using namespace std; |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 state = 0; // XXX not handles th
e last optional arg. | 214 state = 0; // XXX not handles th
e last optional arg. |
| 215 } | 215 } |
| 216 } else if (line[actual][head] == ']') depth--; | 216 } else if (line[actual][head] == ']') depth--; |
| 217 } // case | 217 } // case |
| 218 if (next_char(line[actual], &head)) { | 218 if (next_char(line[actual], &head)) { |
| 219 if (state == 5) state = 0; | 219 if (state == 5) state = 0; |
| 220 return NULL; | 220 return NULL; |
| 221 } | 221 } |
| 222 } | 222 } |
| 223 } | 223 } |
| OLD | NEW |