예제 #1
0
파일: repl.c 프로젝트: mfikes/planck
void highlight_cancel() {
    if (hl_restore.id != 0) {
        struct hl_restore *hl_restore_tmp = malloc(sizeof(struct hl_restore));
        *hl_restore_tmp = hl_restore;
        do_highlight_restore(hl_restore_tmp);
    }
}
예제 #2
0
파일: repl.c 프로젝트: yogthos/planck
void highlight_cancel() {
	if (hl_restore.should_restore) {
		do_highlight_restore(NULL);
	}
}