From e0da89893afa870e1b0cdc41b356bf4a69440b79 Mon Sep 17 00:00:00 2001 From: moculus Date: Mon, 21 Apr 2008 15:14:52 +0000 Subject: [PATCH] hex bug --HG-- branch : pmacs2 --- mode/hex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mode/hex.py b/mode/hex.py index 8c56b7a..e07ed0f 100644 --- a/mode/hex.py +++ b/mode/hex.py @@ -322,7 +322,7 @@ class Hex(mode.Fundamental): def get_rmargin(self, w, y, x, ended=False, cont=False): if ended: - return ((0, '', 0),) + return tuple() else: (cx, cy) = self.window.cursor.xy() s = string.translate(self.window.buffer.rawdata[y], self.ctrans)