LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2005, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 10 Feb 2005 05:00:15 -0800
Reply-To:     marks@UNFORGETTABLE.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Mark S Goldberg <marks@UNFORGETTABLE.COM>
Organization: http://groups.google.com
Subject:      Re: 6.12 Macro catalog conversion to 9.1.3
Content-Type: text/plain; charset="iso-8859-1"

Here is the whole log of a pared down version of the problem. It can easily be repeated (I tried it on both SUN/UNIX and WINDOWS versions of 9.1.3) : all that's needed is any macro catalog to try and read from and the name of one of the macros stored there. Thanks again, Mark (btw, I'm using SAS rather than LaTex because I want to "extract" the source from the catalog itself. I'm not worried about the printing format). ---------------------------- here is the log ---------------------- NOTE: SAS initialization used: real time 4.08 seconds cpu time 0.78 seconds

1 libname lib1 'c:\' ; NOTE: Libref LIB1 was successfully assigned as follows: Engine: V9 Physical Name: c:\ 2 options mstored sasmstore=lib1 mcompilenote=all; 3 %copy mac1 / source ; * This statment works OK; %macro mac1 / store source; %put Hello World 1; proc print data=sashelp.class ; where 1=2 ; run; %mend mac1; 4 %macro doit ; 5 %copy mac1 / source ; 6 %mend doit ; NOTE: The macro DOIT completed compilation without errors. 3 instructions 36 bytes. 7 %doit ; ERROR: Macro library damaged. Cannot execute macro DOIT. ERROR: The macro DOIT will stop executing. ---------------------------- end of the log -----------------------


Back to: Top of message | Previous page | Main SAS-L page