# HG changeset patch # User John "Elwin" Edwards # Date 1344745812 25200 # Node ID 077adfeea038f120c47fc523b452ab28f0cfdb3c # Parent 54979d35611a11d8eec84972c3f2d726acfacc68 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. diff -r 54979d35611a -r 077adfeea038 rlgwebd.js --- 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",