| 6880 | |
| 6881 | |
| 6882 | static void buffreplace (LexState *ls, char from, char to) { |
| 6883 | size_t n = luaZ_bufflen(ls->buff); |
| 6884 | char *p = luaZ_buffer(ls->buff); |
| 6885 | while (n--) |
| 6886 | if (p[n] == from) p[n] = to; |
| 6887 | } |
| 6888 | |
| 6889 | |
| 6890 | static void trydecpoint (LexState *ls, SemInfo *seminfo) { |
no outgoing calls
no test coverage detected