diff options
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 12 | 
1 files changed, 12 insertions, 0 deletions
@@ -314,6 +314,8 @@ static void clippaste(const Arg *);  static void numlock(const Arg *);  static void selpaste(const Arg *);  static void xzoom(const Arg *); +static void printscreen(const Arg *) ; +static void toggleprinter(const Arg *);  /* Config.h for applying patches and the configuration. */  #include "config.h" @@ -2283,6 +2285,16 @@ tprinter(char *s, size_t len) {  }  void +toggleprinter(const Arg *arg) { +	term.mode ^= MODE_PRINT; +} + +void +printscreen(const Arg *arg) { +	tdump(); +} + +void  tdumpline(int n) {  	Glyph *bp, *end;  |