aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-11 18:19:24 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-11 18:19:24 +0200
commit17d9154a0bc416504d27d5e075c8c97bcc9fbbff (patch)
tree941acdd402504894b7f73372a6582f77322e793f
parentc5d09a73a8ba625e547aedb0fc69b94d2ed8cf8c (diff)
Add FS, probable debug interface
-rw-r--r--cutter.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cutter.go b/cutter.go
index ecf2014..77fd739 100644
--- a/cutter.go
+++ b/cutter.go
@@ -73,7 +73,8 @@ func NewCutter(io *bufio.ReadWriter, o Orientation, rmlen Unit) Cutter {
const (
NUL = 0x00
ETX = 0x03 // End of Text
- ESC = 0x1b
+ ESC = 0x1B // Escape
+ FS = 0x1C // File Separator
)
func (c Cutter) Add(a ...interface{}) {