~petersanchez/st

9acec468fbeaa9f90578352b610431ca9b2d4ee4 — Hiltjo Posthuma 5 years ago 927621f
minor code-style, initialize var at the top of function
1 files changed, 1 insertions(+), 3 deletions(-)

M st.c
M st.c => st.c +1 -3
@@ 1830,7 1830,7 @@ csireset(void)
void
strhandle(void)
{
	char *p = NULL;
	char *p = NULL, *dec;
	int j, narg, par;

	term.esc &= ~(ESC_STR_END|ESC_STR);


@@ 1848,8 1848,6 @@ strhandle(void)
			return;
		case 52:
			if (narg > 2) {
				char *dec;

				dec = base64dec(strescseq.args[2]);
				if (dec) {
					xsetsel(dec);