Opened 18 years ago

Closed 18 years ago

#37 closed defect (fixed)

bug in xhelp.pro

Reported by: theetten Owned by: bug killer
Priority: minor Milestone: SAXO on trac
Component: component1 Version:
Keywords: Cc: theetten@…

Description

There is something wrong using the [] I had to replace some [] by ()
like in xhelp.pro

I've replaced

dum=where(byte[c] eq 9b,ntab) ; count tab characters

xsize=xsize > (strlen[c]+8*ntab)

by

dum=where(byte(c) eq 9b,ntab) ; count tab characters

xsize=xsize > (strlen(c)+8*ntab)

Seb

Change History (3)

comment:1 Changed 18 years ago by smasson

perfect job!

"svn status" executed in your ~/SAXO_DIR
should tell you that xhelp.pro has been modified.
"svn update" allow you to get the latest revision
see part 2 of
http://forge.ipsl.jussieu.fr/saxo/browser/trunk/SRC/Documentation/xmldoc/updatesaxo.html?format=raw

to do the commit and upload your xhelp.pro, you can do:
svn commit --username theetten --message "fix bug in xhelp.pro introduced in revision114"

for some help with svn command see
svn help
svn help status
svn help update
svn help commit

don't forget to close the ticket once it is done.

seb

comment:2 Changed 18 years ago by nanardon@…

svn commit --username theetten --message "fix bug in xhelp.pro introduced in revision114"

Can I put some comments ? Probably :)

  • --username is useless, svn will automatically use your login as username
  • --message can be shorten to -m
  • use r114 instead revision114, trac will understand the syntax and show a link (maybe this works also with revision114, don't remember but I am not sure).

comment:3 Changed 18 years ago by theetten

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.