Title: | *OLD* ALL-IN-1 (tm) Support Conference |
Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 |
Moderator: | IOSG::PYE |
Created: | Thu Jan 30 1992 |
Last Modified: | Tue Jan 23 1996 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 4343 |
Total number of notes: | 18308 |
The following was submitted by a customer. Please comment so I will know whether or not to SPR this to engineering. ====================================================== I isolated another GPC bug. In OAN$EXTRACT.SCP, there is a syntax error in the following IF statment: .LABEL ERROR .IF #OAN_MODERATOR THEN NOTES SET_MODERATOR OA$N\GET #OAN_MODERATOR=0 GET OA$DISPLAY = OA$_NOTES_CANT_EXTRACT ELSE - GET #OAN_STATUS = 0 .EXIT I suspect the first line needs a "\-" placed at the end of it. This is noticable when you try to delete a note and control is transferred to this error routine for some reason. ======================================================= Thank you very much. Susan Adams
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
1827.1 | Fixed in v3.0 | OASS::WICKS_A | I want my v3.0 machine back now! | Fri Nov 20 1992 23:15 | 23 |
Susan, In v3.0 it's done differently. Save the SPR - that'll be $50 DIGITAL doesn't lose this quarter. .LABEL ERROR .IF #OAN_MODERATOR EQ 1 .THEN NOTES SET_MODERATOR OA$N GET #OAN_MODERATOR = 0 .END_IF GET OA$DISPLAY = NOTES$_CANT_EXTRACT\FORCE GET #OAN_STATUS = 0 .EXIT I presume the customer is at v2.4? (the .IF ... .END_IF stuff is new to v3.0) regards, Andrew.D.Wicks (noting under protest from a v2.4 machine!) |