From 4367ba6549752986529bc5e041e6000bb58bdee7 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 24 Jul 2008 11:41:21 +0000 Subject: [PATCH] fix searching a different way, which more likely matches the intent svn: r10899 original commit: 78c52208361a517c2ea4a9a2d9ccf4c0c65974d9 --- collects/scribble/html-render.ss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribble/html-render.ss b/collects/scribble/html-render.ss index b2308ee6..d5f5ba09 100644 --- a/collects/scribble/html-render.ss +++ b/collects/scribble/html-render.ss @@ -770,8 +770,8 @@ [style (if (with-attributes? raw-style) (with-attributes-style raw-style) raw-style)]) - (if (and (pair? style) (eq? (car style) 'div)) - `((div-hack ,(cdr style) ,@contents)) + (if (and (pair? style) (eq? (car style) 'div-hack)) + `((div ,(cdr style) ,@contents)) `((,(if (string? style) 'div 'p) ,(append (if (string? style)