From 8ca774f219531bf17f9c7f38814b1a439e4b28b0 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 21 May 2009 22:49:34 +0000 Subject: [PATCH] fix problem with tab-snip% width checking svn: r14912 original commit: 2f6b57217850bd38c7198ac87609fc8d28f09740 --- collects/mred/private/wxme/mline.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/mred/private/wxme/mline.ss b/collects/mred/private/wxme/mline.ss index 69808385..396bc9b1 100644 --- a/collects/mred/private/wxme/mline.ss +++ b/collects/mred/private/wxme/mline.ss @@ -633,7 +633,7 @@ (if (eq? asnip nexts) l (let ([l (+ l (snip->count asnip))]) - (when (has-flag? (snip->count asnip) WIDTH-DEPENDS-ON-X) + (when (has-flag? (snip->flags asnip) WIDTH-DEPENDS-ON-X) (send asnip size-cache-invalid)) (loop (snip->next asnip) l)))))])