re_printstr(): * Print a string on the debugging pty */
| 76 | * Print a string on the debugging pty |
| 77 | */ |
| 78 | private void |
| 79 | re_printstr(EditLine *el, const char *str, char *f, char *t) |
| 80 | { |
| 81 | |
| 82 | ELRE_DEBUG(1, (__F, "%s:\"", str)); |
| 83 | while (f < t) |
| 84 | ELRE_DEBUG(1, (__F, "%c", *f++ & 0177)); |
| 85 | ELRE_DEBUG(1, (__F, "\"\r\n")); |
| 86 | } |
| 87 | #else |
| 88 | #define ELRE_ASSERT(a, b, c) |
| 89 | #define ELRE_DEBUG(a, b) |