Mercurial > hg > rlgwebd
diff rlgwebd.js @ 121:077adfeea038
Correct the clear sequence for srogue.
rlgwebd sets TERM to xterm-256color, which uses CSI H CSI 2J to clear
the screen. The description of srogue had been CSI H CSI J, which is
the sequence for screen.
author | John "Elwin" Edwards <elwin@sdf.org> |
---|---|
date | Sat, 11 Aug 2012 21:30:12 -0700 |
parents | 54979d35611a |
children | fbeb0bf2b51d |
line wrap: on
line diff
--- a/rlgwebd.js Sat Aug 11 19:48:25 2012 -0700 +++ b/rlgwebd.js Sat Aug 11 21:30:12 2012 -0700 @@ -52,7 +52,7 @@ "uname": "srogue", "suffix": ".srsav", "path": "/bin/srogue", - "clear": new Buffer([27, 91, 72, 27, 91, 74]) // CSI H CSI J + "clear": new Buffer([27, 91, 72, 27, 91, 50, 74]) // CSI H CSI 2J }, "arogue5": { "name": "Advanced Rogue 5",