Skip to content

Commit c8b949e

Browse files
committed
kill unneeded assignments
1 parent 0652d8e commit c8b949e

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

buffer.c

-2
Original file line numberDiff line numberDiff line change
@@ -799,8 +799,6 @@ ce_buffer_word_erase(struct cebuf *buf)
799799
ce_buffer_line_allocate(buf, line);
800800

801801
buf->loff = start;
802-
803-
ptr = line->data;
804802
for (idx = 0; idx < chars; idx++)
805803
buffer_line_erase_character(buf, line, 1);
806804

editor.c

-2
Original file line numberDiff line numberDiff line change
@@ -1542,15 +1542,13 @@ editor_cmdbuf_input(struct cebuf *buf, u_int8_t key)
15421542
editor_cmd_history_cycle(0, extcmd);
15431543
break;
15441544
case EDITOR_CMD_HIST_NEXT:
1545-
ptr = buf->data;
15461545
if (histlen > 0) {
15471546
hist = ce_hist_lookup(histcmd, histlen, 0);
15481547
if (hist == NULL)
15491548
hist = ce_hist_current();
15501549
}
15511550
break;
15521551
case EDITOR_CMD_HIST_PREV:
1553-
ptr = buf->data;
15541552
if (histlen > 0) {
15551553
hist = ce_hist_lookup(histcmd, histlen, 1);
15561554
if (hist == NULL)

syntax.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,6 @@ ce_syntax_write(struct cebuf *buf, struct celine *line, size_t index,
376376
syntax_state.off++;
377377
break;
378378
default:
379-
spaces = syntax_state.off;
380-
381379
syntax_state.p = &p[syntax_state.off];
382380
syntax_state.len = towrite - syntax_state.off;
383381

@@ -963,7 +961,7 @@ syntax_highlight_python_multiline_string(struct state *state)
963961
if (state->inside_string == 0) {
964962
if (hit) {
965963
state->inside_string = 0xff;
966-
syntax_state_color(state, SYNTAX_COLOR_COMMENT);
964+
syntax_state_color(state, SYNTAX_COLOR_RED);
967965
syntax_write(state, 3);
968966
return (0);
969967
}

0 commit comments

Comments
 (0)