MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / c_delbefore1

Function c_delbefore1

extern/editline/src/chared.c:186–195  ·  view source on GitHub ↗

c_delbefore1(): * Delete the character before the cursor, do not yank */

Source from the content-addressed store, hash-verified

184 * Delete the character before the cursor, do not yank
185 */
186protected void
187c_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():

Callers 2

vi_delete_prev_charFunction · 0.85
em_delete_prev_charFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected