* internalerrposition --- add internal cursor position to the current error */
| 1539 | * internalerrposition --- add internal cursor position to the current error |
| 1540 | */ |
| 1541 | void |
| 1542 | internalerrposition(int cursorpos) |
| 1543 | { |
| 1544 | ErrorData *edata = &errordata[errordata_stack_depth]; |
| 1545 | |
| 1546 | /* we don't bother incrementing recursion_depth */ |
| 1547 | CHECK_STACK_DEPTH(); |
| 1548 | |
| 1549 | edata->internalpos = cursorpos; |
| 1550 | } |
| 1551 | |
| 1552 | /* |
| 1553 | * internalerrquery --- add internal query text to the current error |
no outgoing calls
no test coverage detected