diff -ub ptouch-driver-1.3/rastertoptch.c ptouch-driver-1.3.new//rastertoptch.c --- ptouch-driver-1.3.orig/rastertoptch.c 2009-02-04 09:47:44.000000000 +0100 +++ ptouch-driver-1.3/rastertoptch.c 2010-09-12 11:51:21.494421545 +0200 @@ -698,6 +698,7 @@ /* Determine mirror print bit*/ unsigned char mirror_bit = do_mirror ? 0x80 : 0x00; /* Combine & emit printer command code */ + putchar (ESC); putchar ('i'); putchar ('A'); putchar ((char) (do_cut ? 0x01 : 0x00)); putchar (ESC); putchar ('i'); putchar ('M'); putchar ((char) (feed & 0x1f) | auto_cut_bit | mirror_bit); }