[plt-scheme] Re: parser funky

From: Todd O'Bryan (toddobryan at gmail.com)
Date: Tue Jul 28 23:06:33 EDT 2009

Whoops...

Beginning Student language, and here's the program:

(define (sum-coins p n d q)
  (+ (* 0.01 p)
     (* 0.05 n)
     (* 0.10 d)
     (* 0.25 q)))

On Tue, Jul 28, 2009 at 11:05 PM, Todd O'Bryan<toddobryan at gmail.com> wrote:
> Something funky is going on with the parser in the latest svn (version
> 4.2.1.4-svn28jul2009).
>
> In Beginning Student, I enter the following program and with the
> cursor after the last paren of the function, nothing is highlight,
> after the second-to-last, it highlights that paren in pink, suggesting
> that it's unbalanced.
>
> Also, auto-indenting seems to be confused when I hit enter after the
> first close paren.
>
> Is it just me?
>
> Todd
>


Posted on the users mailing list.