aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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{}) {