mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
minor code-style, initialize var at the top of function (2d4ee4)
This commit is contained in:
parent
9e18ce3cb1
commit
fa3d47596d
4
st.c
4
st.c
@ -1955,7 +1955,7 @@ csireset(void)
|
|||||||
void
|
void
|
||||||
strhandle(void)
|
strhandle(void)
|
||||||
{
|
{
|
||||||
char *p = NULL;
|
char *p = NULL, *dec;
|
||||||
int j, narg, par;
|
int j, narg, par;
|
||||||
|
|
||||||
term.esc &= ~(ESC_STR_END|ESC_STR);
|
term.esc &= ~(ESC_STR_END|ESC_STR);
|
||||||
@ -1973,8 +1973,6 @@ strhandle(void)
|
|||||||
return;
|
return;
|
||||||
case 52:
|
case 52:
|
||||||
if (narg > 2) {
|
if (narg > 2) {
|
||||||
char *dec;
|
|
||||||
|
|
||||||
dec = base64dec(strescseq.args[2]);
|
dec = base64dec(strescseq.args[2]);
|
||||||
if (dec) {
|
if (dec) {
|
||||||
xsetsel(dec);
|
xsetsel(dec);
|
||||||
|
Loading…
Reference in New Issue
Block a user