Problem with: HTMLformatter class>>textAreaStart:rows:cols

Martin Pammer mpammer at vrz.net
Wed Jun 10 08:35:48 UTC 1998


Hello again

While sending

#firstCommentAt:  to every method in the system it turned out that

HTMLformatter class>>textAreaStart:rows:cols is the only message in the
       system that results
in a walkback because of unbalanced double quotes.

The original source is like:

!HTMLformatter class methodsFor: 'formatting' stamp: 'pm 6/6/1998 21:39'!
textAreaStart: fieldName rows: rows cols: cols
       ^ '<TEXTAREA NAME="', fieldName, ' ROWS=',rows,' COLS=',cols,'>' ! !

but I think it should read:

!HTMLformatter class methodsFor: 'formatting' stamp: 'pm 6/6/1998 21:39'!
textAreaStart: fieldName rows: rows cols: cols
       ^ '<TEXTAREA NAME="', fieldName, '" ROWS=',rows,' COLS=',cols,'>' !
       !

With best regards

Martin Pammer
mpammer at vrz.net

VRZ Informatik





More information about the Squeak-dev mailing list