c_delbefore1(): * Delete the character before the cursor, do not yank */
| 184 | * Delete the character before the cursor, do not yank |
| 185 | */ |
| 186 | protected void |
| 187 | c_delbefore1(EditLine *el) |
| 188 | { |
| 189 | Char *cp; |
| 190 | |
| 191 | for (cp = el->el_line.cursor - 1; cp <= el->el_line.lastchar; cp++) |
| 192 | *cp = cp[1]; |
| 193 | |
| 194 | el->el_line.lastchar--; |
| 195 | } |
| 196 | |
| 197 | |
| 198 | /* ce__isword(): |
no outgoing calls
no test coverage detected