aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/st.c b/st.c
index 6da4827..64384cd 100644
--- a/st.c
+++ b/st.c
@@ -360,7 +360,7 @@ static void strparse(void);
360static void strreset(void); 360static void strreset(void);
361 361
362static int tattrset(int); 362static int tattrset(int);
363static void tprinter(char *s, size_t len); 363static void tprinter(char *, size_t);
364static void tdumpsel(void); 364static void tdumpsel(void);
365static void tdumpline(int); 365static void tdumpline(int);
366static void tdump(void); 366static void tdump(void);
@@ -371,7 +371,7 @@ static void tdeleteline(int);
371static void tinsertblank(int); 371static void tinsertblank(int);
372static void tinsertblankline(int); 372static void tinsertblankline(int);
373static void tmoveto(int, int); 373static void tmoveto(int, int);
374static void tmoveato(int x, int y); 374static void tmoveato(int, int);
375static void tnew(int, int); 375static void tnew(int, int);
376static void tnewline(int); 376static void tnewline(int);
377static void tputtab(bool); 377static void tputtab(bool);
@@ -380,7 +380,7 @@ static void treset(void);
380static int tresize(int, int); 380static int tresize(int, int);
381static void tscrollup(int, int); 381static void tscrollup(int, int);
382static void tscrolldown(int, int); 382static void tscrolldown(int, int);
383static void tsetattr(int*, int); 383static void tsetattr(int *, int);
384static void tsetchar(char *, Glyph *, int, int); 384static void tsetchar(char *, Glyph *, int, int);
385static void tsetscroll(int, int); 385static void tsetscroll(int, int);
386static void tswapscreen(void); 386static void tswapscreen(void);
@@ -413,9 +413,9 @@ static void xsettitle(char *);
413static void xresettitle(void); 413static void xresettitle(void);
414static void xsetpointermotion(int); 414static void xsetpointermotion(int);
415static void xseturgency(int); 415static void xseturgency(int);
416static void xsetsel(char*); 416static void xsetsel(char *);
417static void xtermclear(int, int, int, int); 417static void xtermclear(int, int, int, int);
418static void xunloadfont(Font *f); 418static void xunloadfont(Font *);
419static void xunloadfonts(void); 419static void xunloadfonts(void);
420static void xresize(int, int); 420static void xresize(int, int);
421 421
@@ -453,7 +453,7 @@ static size_t utf8validate(long *, size_t);
453static ssize_t xwrite(int, char *, size_t); 453static ssize_t xwrite(int, char *, size_t);
454static void *xmalloc(size_t); 454static void *xmalloc(size_t);
455static void *xrealloc(void *, size_t); 455static void *xrealloc(void *, size_t);
456static char *xstrdup(char *s); 456static char *xstrdup(char *);
457 457
458static void (*handler[LASTEvent])(XEvent *) = { 458static void (*handler[LASTEvent])(XEvent *) = {
459 [KeyPress] = kpress, 459 [KeyPress] = kpress,