NEWS 270 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406
  1. Guile NEWS --- history of user-visible changes.
  2. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
  3. See the end for copying conditions.
  4. Please send Guile bug reports to bug-guile@gnu.org.
  5. Changes in 1.8.7 (since 1.8.6)
  6. * Bugs fixed
  7. ** Fix compilation with `--disable-deprecated'
  8. ** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
  9. ** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
  10. ** Fix build problem when scm_t_timespec is different from struct timespec
  11. ** Fix build when compiled with -Wundef -Werror
  12. ** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
  13. ** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
  14. ** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
  15. ** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
  16. ** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
  17. ** Fix reading of complex numbers where both parts are inexact decimals
  18. ** Allow @ macro to work with (ice-9 syncase)
  19. Previously, use of the @ macro in a module whose code is being
  20. transformed by (ice-9 syncase) would cause an "Invalid syntax" error.
  21. Now it works as you would expect (giving the value of the specified
  22. module binding).
  23. ** Have `scm_take_locale_symbol ()' return an interned symbol (bug #25865)
  24. ** Fix potential deadlocks when running on multiple threads
  25. ** Fix problems building with the i586-mingw32msvc cross-compiler
  26. It's now possible to build Guile for Windows by using the
  27. i586-mingw32msvc cross-compiler on GNU/Linux. This kind of build
  28. produces DLLs and a main program that can be copied to and used on a
  29. Windows PC. For how to do this, see the `Cross building Guile'
  30. section in `README'.
  31. Changes in 1.8.6 (since 1.8.5)
  32. * New features (see the manual for details)
  33. ** New convenience function `scm_c_symbol_length ()'
  34. ** Single stepping through code from Emacs
  35. When you use GDS to evaluate Scheme code from Emacs, you can now use
  36. `C-u' to indicate that you want to single step through that code. See
  37. `Evaluating Scheme Code' in the manual for more details.
  38. ** New "guile(1)" man page!
  39. * Changes to the distribution
  40. ** Automake's `AM_MAINTAINER_MODE' is no longer used
  41. Thus, the `--enable-maintainer-mode' configure option is no longer
  42. available: Guile is now always configured in "maintainer mode".
  43. ** `ChangeLog' files are no longer updated
  44. Instead, changes are detailed in the version control system's logs. See
  45. the top-level `ChangeLog' files for details.
  46. * Bugs fixed
  47. ** `symbol->string' now returns a read-only string, as per R5RS
  48. ** Fix incorrect handling of the FLAGS argument of `fold-matches'
  49. ** `guile-config link' now prints `-L$libdir' before `-lguile'
  50. ** Fix memory corruption involving GOOPS' `class-redefinition'
  51. ** Fix possible deadlock in `mutex-lock'
  52. ** Fix build issue on Tru64 and ia64-hp-hpux11.23 (`SCM_UNPACK' macro)
  53. ** Fix build issue on mips, mipsel, powerpc and ia64 (stack direction)
  54. ** Fix build issue on hppa2.0w-hp-hpux11.11 (`dirent64' and `readdir64_r')
  55. ** Fix build issue on i386-unknown-freebsd7.0 ("break strict-aliasing rules")
  56. ** Fix misleading output from `(help rationalize)'
  57. ** Fix build failure on Debian hppa architecture (bad stack growth detection)
  58. ** Fix `gcd' when called with a single, negative argument.
  59. ** Fix `Stack overflow' errors seen when building on some platforms
  60. ** Fix bug when `scm_with_guile ()' was called several times from the
  61. same thread
  62. ** The handler of SRFI-34 `with-exception-handler' is now invoked in the
  63. dynamic environment of the call to `raise'
  64. ** Fix potential deadlock in `make-struct'
  65. ** Fix compilation problem with libltdl from Libtool 2.2.x
  66. ** Fix sloppy bound checking in `string-{ref,set!}' with the empty string
  67. Changes in 1.8.5 (since 1.8.4)
  68. * Infrastructure changes
  69. ** Guile repository switched from CVS to Git
  70. The new repository can be accessed using
  71. "git-clone git://git.sv.gnu.org/guile.git", or can be browsed on-line at
  72. http://git.sv.gnu.org/gitweb/?p=guile.git . See `README' for details.
  73. ** Add support for `pkg-config'
  74. See "Autoconf Support" in the manual for details.
  75. * New modules (see the manual for details)
  76. ** `(srfi srfi-88)'
  77. * New features (see the manual for details)
  78. ** New `postfix' read option, for SRFI-88 keyword syntax
  79. ** Some I/O primitives have been inlined, which improves I/O performance
  80. ** New object-based traps infrastructure
  81. This is a GOOPS-based infrastructure that builds on Guile's low-level
  82. evaluator trap calls and facilitates the development of debugging
  83. features like single-stepping, breakpoints, tracing and profiling.
  84. See the `Traps' node of the manual for details.
  85. ** New support for working on Guile code from within Emacs
  86. Guile now incorporates the `GDS' library (previously distributed
  87. separately) for working on Guile code from within Emacs. See the
  88. `Using Guile In Emacs' node of the manual for details.
  89. * Bugs fixed
  90. ** `scm_add_slot ()' no longer segfaults (fixes bug #22369)
  91. ** Fixed `(ice-9 match)' for patterns like `((_ ...) ...)'
  92. Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
  93. would trigger an unbound variable error for `match:andmap'.
  94. ** `(oop goops describe)' now properly provides the `describe' feature
  95. ** Fixed `args-fold' from `(srfi srfi-37)'
  96. Previously, parsing short option names of argument-less options would
  97. lead to a stack overflow.
  98. ** `(srfi srfi-35)' is now visible through `cond-expand'
  99. ** Fixed type-checking for the second argument of `eval'
  100. ** Fixed type-checking for SRFI-1 `partition'
  101. ** Fixed `struct-ref' and `struct-set!' on "light structs"
  102. ** Honor struct field access rights in GOOPS
  103. ** Changed the storage strategy of source properties, which fixes a deadlock
  104. ** Allow compilation of Guile-using programs in C99 mode with GCC 4.3 and later
  105. ** Fixed build issue for GNU/Linux on IA64
  106. ** Fixed build issues on NetBSD 1.6
  107. ** Fixed build issue on Solaris 2.10 x86_64
  108. ** Fixed build issue with DEC/Compaq/HP's compiler
  109. ** Fixed `scm_from_complex_double' build issue on FreeBSD
  110. ** Fixed `alloca' build issue on FreeBSD 6
  111. ** Removed use of non-portable makefile constructs
  112. ** Fixed shadowing of libc's <random.h> on Tru64, which broke compilation
  113. ** Make sure all tests honor `$TMPDIR'
  114. Changes in 1.8.4 (since 1.8.3)
  115. * Bugs fixed
  116. ** CR (ASCII 0x0d) is (again) recognized as a token delimiter by the reader
  117. ** Fixed a segmentation fault which occurred when displaying the
  118. backtrace of a stack with a promise object (made by `delay') in it.
  119. ** Make `accept' leave guile mode while blocking
  120. ** `scm_c_read ()' and `scm_c_write ()' now type-check their port argument
  121. ** Fixed a build problem on AIX (use of func_data identifier)
  122. ** Fixed a segmentation fault which occurred when hashx-ref or hashx-set! was
  123. called with an associator proc that returns neither a pair nor #f.
  124. ** Secondary threads now always return a valid module for (current-module).
  125. ** Avoid MacOS build problems caused by incorrect combination of "64"
  126. system and library calls.
  127. ** `guile-snarf' now honors `$TMPDIR'
  128. ** `guile-config compile' now reports CPPFLAGS used at compile-time
  129. ** Fixed build with Sun Studio (Solaris 9)
  130. ** Fixed wrong-type-arg errors when creating zero length SRFI-4
  131. uniform vectors on AIX.
  132. ** Fixed a deadlock that occurs upon GC with multiple threads.
  133. ** Fixed compile problem with GCC on Solaris and AIX (use of _Complex_I)
  134. ** Fixed autotool-derived build problems on AIX 6.1.
  135. ** Fixed NetBSD/alpha support
  136. ** Fixed MacOS build problem caused by use of rl_get_keymap(_name)
  137. * New modules (see the manual for details)
  138. ** `(srfi srfi-69)'
  139. * Documentation fixes and improvements
  140. ** Removed premature breakpoint documentation
  141. The features described are not available in the series of 1.8.x
  142. releases, so the documentation was misleading and has been removed.
  143. ** More about Guile's default *random-state* variable
  144. ** GOOPS: more about how to use `next-method'
  145. * Changes to the distribution
  146. ** Corrected a few files that referred incorrectly to the old GPL + special exception licence
  147. In fact Guile since 1.8.0 has been licensed with the GNU Lesser
  148. General Public License, and the few incorrect files have now been
  149. fixed to agree with the rest of the Guile distribution.
  150. ** Removed unnecessary extra copies of COPYING*
  151. The distribution now contains a single COPYING.LESSER at its top level.
  152. Changes in 1.8.3 (since 1.8.2)
  153. * New modules (see the manual for details)
  154. ** `(srfi srfi-35)'
  155. ** `(srfi srfi-37)'
  156. * Bugs fixed
  157. ** The `(ice-9 slib)' module now works as expected
  158. ** Expressions like "(set! 'x #t)" no longer yield a crash
  159. ** Warnings about duplicate bindings now go to stderr
  160. ** A memory leak in `make-socket-address' was fixed
  161. ** Alignment issues (e.g., on SPARC) in network routines were fixed
  162. ** A threading issue that showed up at least on NetBSD was fixed
  163. ** Build problems on Solaris and IRIX fixed
  164. * Implementation improvements
  165. ** The reader is now faster, which reduces startup time
  166. ** Procedures returned by `record-accessor' and `record-modifier' are faster
  167. Changes in 1.8.2 (since 1.8.1):
  168. * New procedures (see the manual for details)
  169. ** set-program-arguments
  170. ** make-vtable
  171. * Incompatible changes
  172. ** The body of a top-level `define' no longer sees the binding being created
  173. In a top-level `define', the binding being created is no longer visible
  174. from the `define' body. This breaks code like
  175. "(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now
  176. unbound in the body. However, such code was not R5RS-compliant anyway,
  177. per Section 5.2.1.
  178. * Bugs fixed
  179. ** Fractions were not `equal?' if stored in unreduced form.
  180. (A subtle problem, since printing a value reduced it, making it work.)
  181. ** srfi-60 `copy-bit' failed on 64-bit systems
  182. ** "guile --use-srfi" option at the REPL can replace core functions
  183. (Programs run with that option were ok, but in the interactive REPL
  184. the core bindings got priority, preventing SRFI replacements or
  185. extensions.)
  186. ** `regexp-exec' doesn't abort() on #\nul in the input or bad flags arg
  187. ** `kill' on mingw throws an error for a PID other than oneself
  188. ** Procedure names are attached to procedure-with-setters
  189. ** Array read syntax works with negative lower bound
  190. ** `array-in-bounds?' fix if an array has different lower bounds on each index
  191. ** `*' returns exact 0 for "(* inexact 0)"
  192. This follows what it always did for "(* 0 inexact)".
  193. ** SRFI-19: Value returned by `(current-time time-process)' was incorrect
  194. ** SRFI-19: `date->julian-day' did not account for timezone offset
  195. ** `ttyname' no longer crashes when passed a non-tty argument
  196. ** `inet-ntop' no longer crashes on SPARC when passed an `AF_INET' address
  197. ** Small memory leaks have been fixed in `make-fluid' and `add-history'
  198. ** GOOPS: Fixed a bug in `method-more-specific?'
  199. ** Build problems on Solaris fixed
  200. ** Build problems on HP-UX IA64 fixed
  201. ** Build problems on MinGW fixed
  202. Changes in 1.8.1 (since 1.8.0):
  203. * LFS functions are now used to access 64-bit files on 32-bit systems.
  204. * New procedures (see the manual for details)
  205. ** primitive-_exit - [Scheme] the-root-module
  206. ** scm_primitive__exit - [C]
  207. ** make-completion-function - [Scheme] (ice-9 readline)
  208. ** scm_c_locale_stringn_to_number - [C]
  209. ** scm_srfi1_append_reverse [C]
  210. ** scm_srfi1_append_reverse_x [C]
  211. ** scm_log - [C]
  212. ** scm_log10 - [C]
  213. ** scm_exp - [C]
  214. ** scm_sqrt - [C]
  215. * Bugs fixed
  216. ** Build problems have been fixed on MacOS, SunOS, and QNX.
  217. ** `strftime' fix sign of %z timezone offset.
  218. ** A one-dimensional array can now be 'equal?' to a vector.
  219. ** Structures, records, and SRFI-9 records can now be compared with `equal?'.
  220. ** SRFI-14 standard char sets are recomputed upon a successful `setlocale'.
  221. ** `record-accessor' and `record-modifier' now have strict type checks.
  222. Record accessor and modifier procedures now throw an error if the
  223. record type of the record they're given is not the type expected.
  224. (Previously accessors returned #f and modifiers silently did nothing).
  225. ** It is now OK to use both autoload and use-modules on a given module.
  226. ** `apply' checks the number of arguments more carefully on "0 or 1" funcs.
  227. Previously there was no checking on primatives like make-vector that
  228. accept "one or two" arguments. Now there is.
  229. ** The srfi-1 assoc function now calls its equality predicate properly.
  230. Previously srfi-1 assoc would call the equality predicate with the key
  231. last. According to the SRFI, the key should be first.
  232. ** A bug in n-par-for-each and n-for-each-par-map has been fixed.
  233. ** The array-set! procedure no longer segfaults when given a bit vector.
  234. ** Bugs in make-shared-array have been fixed.
  235. ** string<? and friends now follow char<? etc order on 8-bit chars.
  236. ** The format procedure now handles inf and nan values for ~f correctly.
  237. ** exact->inexact should no longer overflow when given certain large fractions.
  238. ** srfi-9 accessor and modifier procedures now have strict record type checks.
  239. This matches the srfi-9 specification.
  240. ** (ice-9 ftw) procedures won't ignore different files with same inode number.
  241. Previously the (ice-9 ftw) procedures would ignore any file that had
  242. the same inode number as a file they had already seen, even if that
  243. file was on a different device.
  244. Changes in 1.8.0 (changes since the 1.6.x series):
  245. * Changes to the distribution
  246. ** Guile is now licensed with the GNU Lesser General Public License.
  247. ** The manual is now licensed with the GNU Free Documentation License.
  248. ** Guile now requires GNU MP (http://swox.com/gmp).
  249. Guile now uses the GNU MP library for arbitrary precision arithmetic.
  250. ** Guile now has separate private and public configuration headers.
  251. That is, things like HAVE_STRING_H no longer leak from Guile's
  252. headers.
  253. ** Guile now provides and uses an "effective" version number.
  254. Guile now provides scm_effective_version and effective-version
  255. functions which return the "effective" version number. This is just
  256. the normal full version string without the final micro-version number,
  257. so the current effective-version is "1.8". The effective version
  258. should remain unchanged during a stable series, and should be used for
  259. items like the versioned share directory name
  260. i.e. /usr/share/guile/1.8.
  261. Providing an unchanging version number during a stable release for
  262. things like the versioned share directory can be particularly
  263. important for Guile "add-on" packages, since it provides a directory
  264. that they can install to that won't be changed out from under them
  265. with each micro release during a stable series.
  266. ** Thread implementation has changed.
  267. When you configure "--with-threads=null", you will get the usual
  268. threading API (call-with-new-thread, make-mutex, etc), but you can't
  269. actually create new threads. Also, "--with-threads=no" is now
  270. equivalent to "--with-threads=null". This means that the thread API
  271. is always present, although you might not be able to create new
  272. threads.
  273. When you configure "--with-threads=pthreads" or "--with-threads=yes",
  274. you will get threads that are implemented with the portable POSIX
  275. threads. These threads can run concurrently (unlike the previous
  276. "coop" thread implementation), but need to cooperate for things like
  277. the GC.
  278. The default is "pthreads", unless your platform doesn't have pthreads,
  279. in which case "null" threads are used.
  280. See the manual for details, nodes "Initialization", "Multi-Threading",
  281. "Blocking", and others.
  282. ** There is the new notion of 'discouraged' features.
  283. This is a milder form of deprecation.
  284. Things that are discouraged should not be used in new code, but it is
  285. OK to leave them in old code for now. When a discouraged feature is
  286. used, no warning message is printed like there is for 'deprecated'
  287. features. Also, things that are merely discouraged are nevertheless
  288. implemented efficiently, while deprecated features can be very slow.
  289. You can omit discouraged features from libguile by configuring it with
  290. the '--disable-discouraged' option.
  291. ** Deprecation warnings can be controlled at run-time.
  292. (debug-enable 'warn-deprecated) switches them on and (debug-disable
  293. 'warn-deprecated) switches them off.
  294. ** Support for SRFI 61, extended cond syntax for multiple values has
  295. been added.
  296. This SRFI is always available.
  297. ** Support for require-extension, SRFI-55, has been added.
  298. The SRFI-55 special form `require-extension' has been added. It is
  299. available at startup, and provides a portable way to load Scheme
  300. extensions. SRFI-55 only requires support for one type of extension,
  301. "srfi"; so a set of SRFIs may be loaded via (require-extension (srfi 1
  302. 13 14)).
  303. ** New module (srfi srfi-26) provides support for `cut' and `cute'.
  304. The (srfi srfi-26) module is an implementation of SRFI-26 which
  305. provides the `cut' and `cute' syntax. These may be used to specialize
  306. parameters without currying.
  307. ** New module (srfi srfi-31)
  308. This is an implementation of SRFI-31 which provides a special form
  309. `rec' for recursive evaluation.
  310. ** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
  311. been merged with the core, making their functionality always
  312. available.
  313. The modules are still available, tho, and you could use them together
  314. with a renaming import, for example.
  315. ** Guile no longer includes its own version of libltdl.
  316. The official version is good enough now.
  317. ** The --enable-htmldoc option has been removed from 'configure'.
  318. Support for translating the documentation into HTML is now always
  319. provided. Use 'make html'.
  320. ** New module (ice-9 serialize):
  321. (serialize FORM1 ...) and (parallelize FORM1 ...) are useful when you
  322. don't trust the thread safety of most of your program, but where you
  323. have some section(s) of code which you consider can run in parallel to
  324. other sections. See ice-9/serialize.scm for more information.
  325. ** The configure option '--disable-arrays' has been removed.
  326. Support for arrays and uniform numeric arrays is now always included
  327. in Guile.
  328. * Changes to the stand-alone interpreter
  329. ** New command line option `-L'.
  330. This option adds a directory to the front of the load path.
  331. ** New command line option `--no-debug'.
  332. Specifying `--no-debug' on the command line will keep the debugging
  333. evaluator turned off, even for interactive sessions.
  334. ** User-init file ~/.guile is now loaded with the debugging evaluator.
  335. Previously, the normal evaluator would have been used. Using the
  336. debugging evaluator gives better error messages.
  337. ** The '-e' option now 'read's its argument.
  338. This is to allow the new '(@ MODULE-NAME VARIABLE-NAME)' construct to
  339. be used with '-e'. For example, you can now write a script like
  340. #! /bin/sh
  341. exec guile -e '(@ (demo) main)' -s "$0" "$@"
  342. !#
  343. (define-module (demo)
  344. :export (main))
  345. (define (main args)
  346. (format #t "Demo: ~a~%" args))
  347. * Changes to Scheme functions and syntax
  348. ** Guardians have changed back to their original semantics
  349. Guardians now behave like described in the paper by Dybvig et al. In
  350. particular, they no longer make guarantees about the order in which
  351. they return objects, and they can no longer be greedy.
  352. They no longer drop cyclic data structures.
  353. The C function scm_make_guardian has been changed incompatibly and no
  354. longer takes the 'greedy_p' argument.
  355. ** New function hashx-remove!
  356. This function completes the set of 'hashx' functions.
  357. ** The concept of dynamic roots has been factored into continuation
  358. barriers and dynamic states.
  359. Each thread has a current dynamic state that carries the values of the
  360. fluids. You can create and copy dynamic states and use them as the
  361. second argument for 'eval'. See "Fluids and Dynamic States" in the
  362. manual.
  363. To restrict the influence that captured continuations can have on the
  364. control flow, you can errect continuation barriers. See "Continuation
  365. Barriers" in the manual.
  366. The function call-with-dynamic-root now essentially temporarily
  367. installs a new dynamic state and errects a continuation barrier.
  368. ** The default load path no longer includes "." at the end.
  369. Automatically loading modules from the current directory should not
  370. happen by default. If you want to allow it in a more controlled
  371. manner, set the environment variable GUILE_LOAD_PATH or the Scheme
  372. variable %load-path.
  373. ** The uniform vector and array support has been overhauled.
  374. It now complies with SRFI-4 and the weird prototype based uniform
  375. array creation has been deprecated. See the manual for more details.
  376. Some non-compatible changes have been made:
  377. - characters can no longer be stored into byte arrays.
  378. - strings and bit vectors are no longer considered to be uniform numeric
  379. vectors.
  380. - array-rank throws an error for non-arrays instead of returning zero.
  381. - array-ref does no longer accept non-arrays when no indices are given.
  382. There is the new notion of 'generalized vectors' and corresponding
  383. procedures like 'generalized-vector-ref'. Generalized vectors include
  384. strings, bitvectors, ordinary vectors, and uniform numeric vectors.
  385. Arrays use generalized vectors as their storage, so that you still
  386. have arrays of characters, bits, etc. However, uniform-array-read!
  387. and uniform-array-write can no longer read/write strings and
  388. bitvectors.
  389. ** There is now support for copy-on-write substrings, mutation-sharing
  390. substrings and read-only strings.
  391. Three new procedures are related to this: substring/shared,
  392. substring/copy, and substring/read-only. See the manual for more
  393. information.
  394. ** Backtraces will now highlight the value that caused the error.
  395. By default, these values are enclosed in "{...}", such as in this
  396. example:
  397. guile> (car 'a)
  398. Backtrace:
  399. In current input:
  400. 1: 0* [car {a}]
  401. <unnamed port>:1:1: In procedure car in expression (car (quote a)):
  402. <unnamed port>:1:1: Wrong type (expecting pair): a
  403. ABORT: (wrong-type-arg)
  404. The prefix and suffix used for highlighting can be set via the two new
  405. printer options 'highlight-prefix' and 'highlight-suffix'. For
  406. example, putting this into ~/.guile will output the bad value in bold
  407. on an ANSI terminal:
  408. (print-set! highlight-prefix "\x1b[1m")
  409. (print-set! highlight-suffix "\x1b[22m")
  410. ** 'gettext' support for internationalization has been added.
  411. See the manual for details.
  412. ** New syntax '@' and '@@':
  413. You can now directly refer to variables exported from a module by
  414. writing
  415. (@ MODULE-NAME VARIABLE-NAME)
  416. For example (@ (ice-9 pretty-print) pretty-print) will directly access
  417. the pretty-print variable exported from the (ice-9 pretty-print)
  418. module. You don't need to 'use' that module first. You can also use
  419. '@' as a target of 'set!', as in (set! (@ mod var) val).
  420. The related syntax (@@ MODULE-NAME VARIABLE-NAME) works just like '@',
  421. but it can also access variables that have not been exported. It is
  422. intended only for kluges and temporary fixes and for debugging, not
  423. for ordinary code.
  424. ** Keyword syntax has been made more disciplined.
  425. Previously, the name of a keyword was read as a 'token' but printed as
  426. a symbol. Now, it is read as a general Scheme datum which must be a
  427. symbol.
  428. Previously:
  429. guile> #:12
  430. #:#{12}#
  431. guile> #:#{12}#
  432. #:#{\#{12}\#}#
  433. guile> #:(a b c)
  434. #:#{}#
  435. ERROR: In expression (a b c):
  436. Unbound variable: a
  437. guile> #: foo
  438. #:#{}#
  439. ERROR: Unbound variable: foo
  440. Now:
  441. guile> #:12
  442. ERROR: Wrong type (expecting symbol): 12
  443. guile> #:#{12}#
  444. #:#{12}#
  445. guile> #:(a b c)
  446. ERROR: Wrong type (expecting symbol): (a b c)
  447. guile> #: foo
  448. #:foo
  449. ** The printing of symbols that might look like keywords can be
  450. controlled.
  451. The new printer option 'quote-keywordish-symbols' controls how symbols
  452. are printed that have a colon as their first or last character. The
  453. default now is to only quote a symbol with #{...}# when the read
  454. option 'keywords' is not '#f'. Thus:
  455. guile> (define foo (string->symbol ":foo"))
  456. guile> (read-set! keywords #f)
  457. guile> foo
  458. :foo
  459. guile> (read-set! keywords 'prefix)
  460. guile> foo
  461. #{:foo}#
  462. guile> (print-set! quote-keywordish-symbols #f)
  463. guile> foo
  464. :foo
  465. ** 'while' now provides 'break' and 'continue'
  466. break and continue were previously bound in a while loop, but not
  467. documented, and continue didn't quite work properly. The undocumented
  468. parameter to break which gave a return value for the while has been
  469. dropped.
  470. ** 'call-with-current-continuation' is now also available under the name
  471. 'call/cc'.
  472. ** The module system now checks for duplicate bindings.
  473. The module system now can check for name conflicts among imported
  474. bindings.
  475. The behavior can be controlled by specifying one or more 'duplicates'
  476. handlers. For example, to make Guile return an error for every name
  477. collision, write:
  478. (define-module (foo)
  479. :use-module (bar)
  480. :use-module (baz)
  481. :duplicates check)
  482. The new default behavior of the module system when a name collision
  483. has been detected is to
  484. 1. Give priority to bindings marked as a replacement.
  485. 2. Issue a warning (different warning if overriding core binding).
  486. 3. Give priority to the last encountered binding (this corresponds to
  487. the old behavior).
  488. If you want the old behavior back without replacements or warnings you
  489. can add the line:
  490. (default-duplicate-binding-handler 'last)
  491. to your .guile init file.
  492. ** New define-module option: :replace
  493. :replace works as :export, but, in addition, marks the binding as a
  494. replacement.
  495. A typical example is `format' in (ice-9 format) which is a replacement
  496. for the core binding `format'.
  497. ** Adding prefixes to imported bindings in the module system
  498. There is now a new :use-module option :prefix. It can be used to add
  499. a prefix to all imported bindings.
  500. (define-module (foo)
  501. :use-module ((bar) :prefix bar:))
  502. will import all bindings exported from bar, but rename them by adding
  503. the prefix `bar:'.
  504. ** Conflicting generic functions can be automatically merged.
  505. When two imported bindings conflict and they are both generic
  506. functions, the two functions can now be merged automatically. This is
  507. activated with the 'duplicates' handler 'merge-generics'.
  508. ** New function: effective-version
  509. Returns the "effective" version number. This is just the normal full
  510. version string without the final micro-version number. See "Changes
  511. to the distribution" above.
  512. ** New threading functions: parallel, letpar, par-map, and friends
  513. These are convenient ways to run calculations in parallel in new
  514. threads. See "Parallel forms" in the manual for details.
  515. ** New function 'try-mutex'.
  516. This function will attempt to lock a mutex but will return immediately
  517. instead of blocking and indicate failure.
  518. ** Waiting on a condition variable can have a timeout.
  519. The function 'wait-condition-variable' now takes a third, optional
  520. argument that specifies the point in time where the waiting should be
  521. aborted.
  522. ** New function 'broadcast-condition-variable'.
  523. ** New functions 'all-threads' and 'current-thread'.
  524. ** Signals and system asyncs work better with threads.
  525. The function 'sigaction' now takes a fourth, optional, argument that
  526. specifies the thread that the handler should run in. When the
  527. argument is omitted, the handler will run in the thread that called
  528. 'sigaction'.
  529. Likewise, 'system-async-mark' takes a second, optional, argument that
  530. specifies the thread that the async should run in. When it is
  531. omitted, the async will run in the thread that called
  532. 'system-async-mark'.
  533. C code can use the new functions scm_sigaction_for_thread and
  534. scm_system_async_mark_for_thread to pass the new thread argument.
  535. When a thread blocks on a mutex, a condition variable or is waiting
  536. for IO to be possible, it will still execute system asyncs. This can
  537. be used to interrupt such a thread by making it execute a 'throw', for
  538. example.
  539. ** The function 'system-async' is deprecated.
  540. You can now pass any zero-argument procedure to 'system-async-mark'.
  541. The function 'system-async' will just return its argument unchanged
  542. now.
  543. ** New functions 'call-with-blocked-asyncs' and
  544. 'call-with-unblocked-asyncs'
  545. The expression (call-with-blocked-asyncs PROC) will call PROC and will
  546. block execution of system asyncs for the current thread by one level
  547. while PROC runs. Likewise, call-with-unblocked-asyncs will call a
  548. procedure and will unblock the execution of system asyncs by one
  549. level for the current thread.
  550. Only system asyncs are affected by these functions.
  551. ** The functions 'mask-signals' and 'unmask-signals' are deprecated.
  552. Use 'call-with-blocked-asyncs' or 'call-with-unblocked-asyncs'
  553. instead. Those functions are easier to use correctly and can be
  554. nested.
  555. ** New function 'unsetenv'.
  556. ** New macro 'define-syntax-public'.
  557. It works like 'define-syntax' and also exports the defined macro (but
  558. only on top-level).
  559. ** There is support for Infinity and NaNs.
  560. Following PLT Scheme, Guile can now work with infinite numbers, and
  561. 'not-a-numbers'.
  562. There is new syntax for numbers: "+inf.0" (infinity), "-inf.0"
  563. (negative infinity), "+nan.0" (not-a-number), and "-nan.0" (same as
  564. "+nan.0"). These numbers are inexact and have no exact counterpart.
  565. Dividing by an inexact zero returns +inf.0 or -inf.0, depending on the
  566. sign of the dividend. The infinities are integers, and they answer #t
  567. for both 'even?' and 'odd?'. The +nan.0 value is not an integer and is
  568. not '=' to itself, but '+nan.0' is 'eqv?' to itself.
  569. For example
  570. (/ 1 0.0)
  571. => +inf.0
  572. (/ 0 0.0)
  573. => +nan.0
  574. (/ 0)
  575. ERROR: Numerical overflow
  576. Two new predicates 'inf?' and 'nan?' can be used to test for the
  577. special values.
  578. ** Inexact zero can have a sign.
  579. Guile can now distinguish between plus and minus inexact zero, if your
  580. platform supports this, too. The two zeros are equal according to
  581. '=', but not according to 'eqv?'. For example
  582. (- 0.0)
  583. => -0.0
  584. (= 0.0 (- 0.0))
  585. => #t
  586. (eqv? 0.0 (- 0.0))
  587. => #f
  588. ** Guile now has exact rationals.
  589. Guile can now represent fractions such as 1/3 exactly. Computing with
  590. them is also done exactly, of course:
  591. (* 1/3 3/2)
  592. => 1/2
  593. ** 'floor', 'ceiling', 'round' and 'truncate' now return exact numbers
  594. for exact arguments.
  595. For example: (floor 2) now returns an exact 2 where in the past it
  596. returned an inexact 2.0. Likewise, (floor 5/4) returns an exact 1.
  597. ** inexact->exact no longer returns only integers.
  598. Without exact rationals, the closest exact number was always an
  599. integer, but now inexact->exact returns the fraction that is exactly
  600. equal to a floating point number. For example:
  601. (inexact->exact 1.234)
  602. => 694680242521899/562949953421312
  603. When you want the old behavior, use 'round' explicitly:
  604. (inexact->exact (round 1.234))
  605. => 1
  606. ** New function 'rationalize'.
  607. This function finds a simple fraction that is close to a given real
  608. number. For example (and compare with inexact->exact above):
  609. (rationalize (inexact->exact 1.234) 1/2000)
  610. => 58/47
  611. Note that, as required by R5RS, rationalize returns only then an exact
  612. result when both its arguments are exact.
  613. ** 'odd?' and 'even?' work also for inexact integers.
  614. Previously, (odd? 1.0) would signal an error since only exact integers
  615. were recognized as integers. Now (odd? 1.0) returns #t, (odd? 2.0)
  616. returns #f and (odd? 1.5) signals an error.
  617. ** Guile now has uninterned symbols.
  618. The new function 'make-symbol' will return an uninterned symbol. This
  619. is a symbol that is unique and is guaranteed to remain unique.
  620. However, uninterned symbols can not yet be read back in.
  621. Use the new function 'symbol-interned?' to check whether a symbol is
  622. interned or not.
  623. ** pretty-print has more options.
  624. The function pretty-print from the (ice-9 pretty-print) module can now
  625. also be invoked with keyword arguments that control things like
  626. maximum output width. See the manual for details.
  627. ** Variables have no longer a special behavior for `equal?'.
  628. Previously, comparing two variables with `equal?' would recursivly
  629. compare their values. This is no longer done. Variables are now only
  630. `equal?' if they are `eq?'.
  631. ** `(begin)' is now valid.
  632. You can now use an empty `begin' form. It will yield #<unspecified>
  633. when evaluated and simply be ignored in a definition context.
  634. ** Deprecated: procedure->macro
  635. Change your code to use 'define-macro' or r5rs macros. Also, be aware
  636. that macro expansion will not be done during evaluation, but prior to
  637. evaluation.
  638. ** Soft ports now allow a `char-ready?' procedure
  639. The vector argument to `make-soft-port' can now have a length of
  640. either 5 or 6. (Previously the length had to be 5.) The optional 6th
  641. element is interpreted as an `input-waiting' thunk -- i.e. a thunk
  642. that returns the number of characters that can be read immediately
  643. without the soft port blocking.
  644. ** Deprecated: undefine
  645. There is no replacement for undefine.
  646. ** The functions make-keyword-from-dash-symbol and keyword-dash-symbol
  647. have been discouraged.
  648. They are relics from a time where a keyword like #:foo was used
  649. directly as a Tcl option "-foo" and thus keywords were internally
  650. stored as a symbol with a starting dash. We now store a symbol
  651. without the dash.
  652. Use symbol->keyword and keyword->symbol instead.
  653. ** The `cheap' debug option is now obsolete
  654. Evaluator trap calls are now unconditionally "cheap" - in other words,
  655. they pass a debug object to the trap handler rather than a full
  656. continuation. The trap handler code can capture a full continuation
  657. by using `call-with-current-continuation' in the usual way, if it so
  658. desires.
  659. The `cheap' option is retained for now so as not to break existing
  660. code which gets or sets it, but setting it now has no effect. It will
  661. be removed in the next major Guile release.
  662. ** Evaluator trap calls now support `tweaking'
  663. `Tweaking' means that the trap handler code can modify the Scheme
  664. expression that is about to be evaluated (in the case of an
  665. enter-frame trap) or the value that is being returned (in the case of
  666. an exit-frame trap). The trap handler code indicates that it wants to
  667. do this by returning a pair whose car is the symbol 'instead and whose
  668. cdr is the modified expression or return value.
  669. * Changes to the C interface
  670. ** The functions scm_hash_fn_remove_x and scm_hashx_remove_x no longer
  671. take a 'delete' function argument.
  672. This argument makes no sense since the delete function is used to
  673. remove a pair from an alist, and this must not be configurable.
  674. This is an incompatible change.
  675. ** The GH interface is now subject to the deprecation mechanism
  676. The GH interface has been deprecated for quite some time but now it is
  677. actually removed from Guile when it is configured with
  678. --disable-deprecated.
  679. See the manual "Transitioning away from GH" for more information.
  680. ** A new family of functions for converting between C values and
  681. Scheme values has been added.
  682. These functions follow a common naming scheme and are designed to be
  683. easier to use, thread-safe and more future-proof than the older
  684. alternatives.
  685. - int scm_is_* (...)
  686. These are predicates that return a C boolean: 1 or 0. Instead of
  687. SCM_NFALSEP, you can now use scm_is_true, for example.
  688. - <type> scm_to_<type> (SCM val, ...)
  689. These are functions that convert a Scheme value into an appropriate
  690. C value. For example, you can use scm_to_int to safely convert from
  691. a SCM to an int.
  692. - SCM scm_from_<type> (<type> val, ...)
  693. These functions convert from a C type to a SCM value; for example,
  694. scm_from_int for ints.
  695. There is a huge number of these functions, for numbers, strings,
  696. symbols, vectors, etc. They are documented in the reference manual in
  697. the API section together with the types that they apply to.
  698. ** New functions for dealing with complex numbers in C have been added.
  699. The new functions are scm_c_make_rectangular, scm_c_make_polar,
  700. scm_c_real_part, scm_c_imag_part, scm_c_magnitude and scm_c_angle.
  701. They work like scm_make_rectangular etc but take or return doubles
  702. directly.
  703. ** The function scm_make_complex has been discouraged.
  704. Use scm_c_make_rectangular instead.
  705. ** The INUM macros have been deprecated.
  706. A lot of code uses these macros to do general integer conversions,
  707. although the macros only work correctly with fixnums. Use the
  708. following alternatives.
  709. SCM_INUMP -> scm_is_integer or similar
  710. SCM_NINUMP -> !scm_is_integer or similar
  711. SCM_MAKINUM -> scm_from_int or similar
  712. SCM_INUM -> scm_to_int or similar
  713. SCM_VALIDATE_INUM_* -> Do not use these; scm_to_int, etc. will
  714. do the validating for you.
  715. ** The scm_num2<type> and scm_<type>2num functions and scm_make_real
  716. have been discouraged.
  717. Use the newer scm_to_<type> and scm_from_<type> functions instead for
  718. new code. The functions have been discouraged since they don't fit
  719. the naming scheme.
  720. ** The 'boolean' macros SCM_FALSEP etc have been discouraged.
  721. They have strange names, especially SCM_NFALSEP, and SCM_BOOLP
  722. evaluates its argument twice. Use scm_is_true, etc. instead for new
  723. code.
  724. ** The macro SCM_EQ_P has been discouraged.
  725. Use scm_is_eq for new code, which fits better into the naming
  726. conventions.
  727. ** The macros SCM_CONSP, SCM_NCONSP, SCM_NULLP, and SCM_NNULLP have
  728. been discouraged.
  729. Use the function scm_is_pair or scm_is_null instead.
  730. ** The functions scm_round and scm_truncate have been deprecated and
  731. are now available as scm_c_round and scm_c_truncate, respectively.
  732. These functions occupy the names that scm_round_number and
  733. scm_truncate_number should have.
  734. ** The functions scm_c_string2str, scm_c_substring2str, and
  735. scm_c_symbol2str have been deprecated.
  736. Use scm_to_locale_stringbuf or similar instead, maybe together with
  737. scm_substring.
  738. ** New functions scm_c_make_string, scm_c_string_length,
  739. scm_c_string_ref, scm_c_string_set_x, scm_c_substring,
  740. scm_c_substring_shared, scm_c_substring_copy.
  741. These are like scm_make_string, scm_length, etc. but are slightly
  742. easier to use from C.
  743. ** The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
  744. SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
  745. They export too many assumptions about the implementation of strings
  746. and symbols that are no longer true in the presence of
  747. mutation-sharing substrings and when Guile switches to some form of
  748. Unicode.
  749. When working with strings, it is often best to use the normal string
  750. functions provided by Guile, such as scm_c_string_ref,
  751. scm_c_string_set_x, scm_string_append, etc. Be sure to look in the
  752. manual since many more such functions are now provided than
  753. previously.
  754. When you want to convert a SCM string to a C string, use the
  755. scm_to_locale_string function or similar instead. For symbols, use
  756. scm_symbol_to_string and then work with that string. Because of the
  757. new string representation, scm_symbol_to_string does not need to copy
  758. and is thus quite efficient.
  759. ** Some string, symbol and keyword functions have been discouraged.
  760. They don't fit into the uniform naming scheme and are not explicit
  761. about the character encoding.
  762. Replace according to the following table:
  763. scm_allocate_string -> scm_c_make_string
  764. scm_take_str -> scm_take_locale_stringn
  765. scm_take0str -> scm_take_locale_string
  766. scm_mem2string -> scm_from_locale_stringn
  767. scm_str2string -> scm_from_locale_string
  768. scm_makfrom0str -> scm_from_locale_string
  769. scm_mem2symbol -> scm_from_locale_symboln
  770. scm_mem2uninterned_symbol -> scm_from_locale_stringn + scm_make_symbol
  771. scm_str2symbol -> scm_from_locale_symbol
  772. SCM_SYMBOL_HASH -> scm_hashq
  773. SCM_SYMBOL_INTERNED_P -> scm_symbol_interned_p
  774. scm_c_make_keyword -> scm_from_locale_keyword
  775. ** The functions scm_keyword_to_symbol and sym_symbol_to_keyword are
  776. now also available to C code.
  777. ** SCM_KEYWORDP and SCM_KEYWORDSYM have been deprecated.
  778. Use scm_is_keyword and scm_keyword_to_symbol instead, but note that
  779. the latter returns the true name of the keyword, not the 'dash name',
  780. as SCM_KEYWORDSYM used to do.
  781. ** A new way to access arrays in a thread-safe and efficient way has
  782. been added.
  783. See the manual, node "Accessing Arrays From C".
  784. ** The old uniform vector and bitvector implementations have been
  785. unceremoniously removed.
  786. This implementation exposed the details of the tagging system of
  787. Guile. Use the new C API explained in the manual in node "Uniform
  788. Numeric Vectors" and "Bit Vectors", respectively.
  789. The following macros are gone: SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
  790. SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
  791. SCM_SET_UVECTOR_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
  792. SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
  793. SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
  794. SCM_SET_BITVECTOR_LENGTH, SCM_BITVEC_REF, SCM_BITVEC_SET,
  795. SCM_BITVEC_CLR.
  796. ** The macros dealing with vectors have been deprecated.
  797. Use the new functions scm_is_vector, scm_vector_elements,
  798. scm_vector_writable_elements, etc, or scm_is_simple_vector,
  799. SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET, etc instead. See the
  800. manual for more details.
  801. Deprecated are SCM_VECTORP, SCM_VELTS, SCM_VECTOR_MAX_LENGTH,
  802. SCM_VECTOR_LENGTH, SCM_VECTOR_REF, SCM_VECTOR_SET, SCM_WRITABLE_VELTS.
  803. The following macros have been removed: SCM_VECTOR_BASE,
  804. SCM_SET_VECTOR_BASE, SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
  805. SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS.
  806. ** Some C functions and macros related to arrays have been deprecated.
  807. Migrate according to the following table:
  808. scm_make_uve -> scm_make_typed_array, scm_make_u8vector etc.
  809. scm_make_ra -> scm_make_array
  810. scm_shap2ra -> scm_make_array
  811. scm_cvref -> scm_c_generalized_vector_ref
  812. scm_ra_set_contp -> do not use
  813. scm_aind -> scm_array_handle_pos
  814. scm_raprin1 -> scm_display or scm_write
  815. SCM_ARRAYP -> scm_is_array
  816. SCM_ARRAY_NDIM -> scm_c_array_rank
  817. SCM_ARRAY_DIMS -> scm_array_handle_dims
  818. SCM_ARRAY_CONTP -> do not use
  819. SCM_ARRAY_MEM -> do not use
  820. SCM_ARRAY_V -> scm_array_handle_elements or similar
  821. SCM_ARRAY_BASE -> do not use
  822. ** SCM_CELL_WORD_LOC has been deprecated.
  823. Use the new macro SCM_CELL_OBJECT_LOC instead, which returns a pointer
  824. to a SCM, as opposed to a pointer to a scm_t_bits.
  825. This was done to allow the correct use of pointers into the Scheme
  826. heap. Previously, the heap words were of type scm_t_bits and local
  827. variables and function arguments were of type SCM, making it
  828. non-standards-conformant to have a pointer that can point to both.
  829. ** New macros SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, etc.
  830. These macros should be used instead of SCM_CELL_WORD_2/3 to access the
  831. second and third words of double smobs. Likewise for
  832. SCM_SET_SMOB_DATA_2 and SCM_SET_SMOB_DATA_3.
  833. Also, there is SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS that should be
  834. used to get and set the 16 exra bits in the zeroth word of a smob.
  835. And finally, there is SCM_SMOB_OBJECT and SCM_SMOB_SET_OBJECT for
  836. accesing the first immediate word of a smob as a SCM value, and there
  837. is SCM_SMOB_OBJECT_LOC for getting a pointer to the first immediate
  838. smob word. Like wise for SCM_SMOB_OBJECT_2, etc.
  839. ** New way to deal with non-local exits and re-entries.
  840. There is a new set of functions that essentially do what
  841. scm_internal_dynamic_wind does, but in a way that is more convenient
  842. for C code in some situations. Here is a quick example of how to
  843. prevent a potential memory leak:
  844. void
  845. foo ()
  846. {
  847. char *mem;
  848. scm_dynwind_begin (0);
  849. mem = scm_malloc (100);
  850. scm_dynwind_unwind_handler (free, mem, SCM_F_WIND_EXPLICITLY);
  851. /* MEM would leak if BAR throws an error.
  852. SCM_DYNWIND_UNWIND_HANDLER frees it nevertheless.
  853. */
  854. bar ();
  855. scm_dynwind_end ();
  856. /* Because of SCM_F_WIND_EXPLICITLY, MEM will be freed by
  857. SCM_DYNWIND_END as well.
  858. */
  859. }
  860. For full documentation, see the node "Dynamic Wind" in the manual.
  861. ** New function scm_dynwind_free
  862. This function calls 'free' on a given pointer when a dynwind context
  863. is left. Thus the call to scm_dynwind_unwind_handler above could be
  864. replaced with simply scm_dynwind_free (mem).
  865. ** New functions scm_c_call_with_blocked_asyncs and
  866. scm_c_call_with_unblocked_asyncs
  867. Like scm_call_with_blocked_asyncs etc. but for C functions.
  868. ** New functions scm_dynwind_block_asyncs and scm_dynwind_unblock_asyncs
  869. In addition to scm_c_call_with_blocked_asyncs you can now also use
  870. scm_dynwind_block_asyncs in a 'dynwind context' (see above). Likewise for
  871. scm_c_call_with_unblocked_asyncs and scm_dynwind_unblock_asyncs.
  872. ** The macros SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
  873. SCM_REALLOW_INTS have been deprecated.
  874. They do no longer fulfill their original role of blocking signal
  875. delivery. Depending on what you want to achieve, replace a pair of
  876. SCM_DEFER_INTS and SCM_ALLOW_INTS with a dynwind context that locks a
  877. mutex, blocks asyncs, or both. See node "Critical Sections" in the
  878. manual.
  879. ** The value 'scm_mask_ints' is no longer writable.
  880. Previously, you could set scm_mask_ints directly. This is no longer
  881. possible. Use scm_c_call_with_blocked_asyncs and
  882. scm_c_call_with_unblocked_asyncs instead.
  883. ** New way to temporarily set the current input, output or error ports
  884. C code can now use scm_dynwind_current_<foo>_port in a 'dynwind
  885. context' (see above). <foo> is one of "input", "output" or "error".
  886. ** New way to temporarily set fluids
  887. C code can now use scm_dynwind_fluid in a 'dynwind context' (see
  888. above) to temporarily set the value of a fluid.
  889. ** New types scm_t_intmax and scm_t_uintmax.
  890. On platforms that have them, these types are identical to intmax_t and
  891. uintmax_t, respectively. On other platforms, they are identical to
  892. the largest integer types that Guile knows about.
  893. ** The functions scm_unmemocopy and scm_unmemoize have been removed.
  894. You should not have used them.
  895. ** Many public #defines with generic names have been made private.
  896. #defines with generic names like HAVE_FOO or SIZEOF_FOO have been made
  897. private or renamed with a more suitable public name.
  898. ** The macro SCM_TYP16S has been deprecated.
  899. This macro is not intended for public use.
  900. ** The macro SCM_SLOPPY_INEXACTP has been deprecated.
  901. Use scm_is_true (scm_inexact_p (...)) instead.
  902. ** The macro SCM_SLOPPY_REALP has been deprecated.
  903. Use scm_is_real instead.
  904. ** The macro SCM_SLOPPY_COMPLEXP has been deprecated.
  905. Use scm_is_complex instead.
  906. ** Some preprocessor defines have been deprecated.
  907. These defines indicated whether a certain feature was present in Guile
  908. or not. Going forward, assume that the features are always present.
  909. The macros are: USE_THREADS, GUILE_ISELECT, READER_EXTENSIONS,
  910. DEBUG_EXTENSIONS, DYNAMIC_LINKING.
  911. The following macros have been removed completely: MEMOIZE_LOCALS,
  912. SCM_RECKLESS, SCM_CAUTIOUS.
  913. ** The preprocessor define STACK_DIRECTION has been deprecated.
  914. There should be no need to know about the stack direction for ordinary
  915. programs.
  916. ** New function: scm_effective_version
  917. Returns the "effective" version number. This is just the normal full
  918. version string without the final micro-version number. See "Changes
  919. to the distribution" above.
  920. ** The function scm_call_with_new_thread has a new prototype.
  921. Instead of taking a list with the thunk and handler, these two
  922. arguments are now passed directly:
  923. SCM scm_call_with_new_thread (SCM thunk, SCM handler);
  924. This is an incompatible change.
  925. ** New snarfer macro SCM_DEFINE_PUBLIC.
  926. This is like SCM_DEFINE, but also calls scm_c_export for the defined
  927. function in the init section.
  928. ** The snarfer macro SCM_SNARF_INIT is now officially supported.
  929. ** Garbage collector rewrite.
  930. The garbage collector is cleaned up a lot, and now uses lazy
  931. sweeping. This is reflected in the output of (gc-stats); since cells
  932. are being freed when they are allocated, the cells-allocated field
  933. stays roughly constant.
  934. For malloc related triggers, the behavior is changed. It uses the same
  935. heuristic as the cell-triggered collections. It may be tuned with the
  936. environment variables GUILE_MIN_YIELD_MALLOC. This is the percentage
  937. for minimum yield of malloc related triggers. The default is 40.
  938. GUILE_INIT_MALLOC_LIMIT sets the initial trigger for doing a GC. The
  939. default is 200 kb.
  940. Debugging operations for the freelist have been deprecated, along with
  941. the C variables that control garbage collection. The environment
  942. variables GUILE_MAX_SEGMENT_SIZE, GUILE_INIT_SEGMENT_SIZE_2,
  943. GUILE_INIT_SEGMENT_SIZE_1, and GUILE_MIN_YIELD_2 should be used.
  944. For understanding the memory usage of a GUILE program, the routine
  945. gc-live-object-stats returns an alist containing the number of live
  946. objects for every type.
  947. ** The function scm_definedp has been renamed to scm_defined_p
  948. The name scm_definedp is deprecated.
  949. ** The struct scm_cell type has been renamed to scm_t_cell
  950. This is in accordance to Guile's naming scheme for types. Note that
  951. the name scm_cell is now used for a function that allocates and
  952. initializes a new cell (see below).
  953. ** New functions for memory management
  954. A new set of functions for memory management has been added since the
  955. old way (scm_must_malloc, scm_must_free, etc) was error prone and
  956. indeed, Guile itself contained some long standing bugs that could
  957. cause aborts in long running programs.
  958. The new functions are more symmetrical and do not need cooperation
  959. from smob free routines, among other improvements.
  960. The new functions are scm_malloc, scm_realloc, scm_calloc, scm_strdup,
  961. scm_strndup, scm_gc_malloc, scm_gc_calloc, scm_gc_realloc,
  962. scm_gc_free, scm_gc_register_collectable_memory, and
  963. scm_gc_unregister_collectable_memory. Refer to the manual for more
  964. details and for upgrading instructions.
  965. The old functions for memory management have been deprecated. They
  966. are: scm_must_malloc, scm_must_realloc, scm_must_free,
  967. scm_must_strdup, scm_must_strndup, scm_done_malloc, scm_done_free.
  968. ** Declarations of exported features are marked with SCM_API.
  969. Every declaration of a feature that belongs to the exported Guile API
  970. has been marked by adding the macro "SCM_API" to the start of the
  971. declaration. This macro can expand into different things, the most
  972. common of which is just "extern" for Unix platforms. On Win32, it can
  973. be used to control which symbols are exported from a DLL.
  974. If you `#define SCM_IMPORT' before including <libguile.h>, SCM_API
  975. will expand into "__declspec (dllimport) extern", which is needed for
  976. linking to the Guile DLL in Windows.
  977. There are also SCM_RL_IMPORT, SCM_SRFI1314_IMPORT, and
  978. SCM_SRFI4_IMPORT, for the corresponding libraries.
  979. ** SCM_NEWCELL and SCM_NEWCELL2 have been deprecated.
  980. Use the new functions scm_cell and scm_double_cell instead. The old
  981. macros had problems because with them allocation and initialization
  982. was separated and the GC could sometimes observe half initialized
  983. cells. Only careful coding by the user of SCM_NEWCELL and
  984. SCM_NEWCELL2 could make this safe and efficient.
  985. ** CHECK_ENTRY, CHECK_APPLY and CHECK_EXIT have been deprecated.
  986. Use the variables scm_check_entry_p, scm_check_apply_p and scm_check_exit_p
  987. instead.
  988. ** SRCBRKP has been deprecated.
  989. Use scm_c_source_property_breakpoint_p instead.
  990. ** Deprecated: scm_makmacro
  991. Change your code to use either scm_makmmacro or to define macros in
  992. Scheme, using 'define-macro'.
  993. ** New function scm_c_port_for_each.
  994. This function is like scm_port_for_each but takes a pointer to a C
  995. function as the callback instead of a SCM value.
  996. ** The names scm_internal_select, scm_thread_sleep, and
  997. scm_thread_usleep have been discouraged.
  998. Use scm_std_select, scm_std_sleep, scm_std_usleep instead.
  999. ** The GC can no longer be blocked.
  1000. The global flags scm_gc_heap_lock and scm_block_gc have been removed.
  1001. The GC can now run (partially) concurrently with other code and thus
  1002. blocking it is not well defined.
  1003. ** Many definitions have been removed that were previously deprecated.
  1004. scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify, s_t_ify,
  1005. scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify, scm_m_0_ify, s_1_ify,
  1006. scm_m_1_ify, scm_debug_newcell, scm_debug_newcell2,
  1007. scm_tc16_allocated, SCM_SET_SYMBOL_HASH, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
  1008. SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY, SCM_GC_SET_ALLOCATED,
  1009. scm_debug_newcell, scm_debug_newcell2, SCM_HUP_SIGNAL, SCM_INT_SIGNAL,
  1010. SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL,
  1011. SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG,
  1012. SCM_NUM_SIGS, scm_top_level_lookup_closure_var,
  1013. *top-level-lookup-closure*, scm_system_transformer, scm_eval_3,
  1014. scm_eval2, root_module_lookup_closure, SCM_SLOPPY_STRINGP,
  1015. SCM_RWSTRINGP, scm_read_only_string_p, scm_make_shared_substring,
  1016. scm_tc7_substring, sym_huh, SCM_VARVCELL, SCM_UDVARIABLEP,
  1017. SCM_DEFVARIABLEP, scm_mkbig, scm_big2inum, scm_adjbig, scm_normbig,
  1018. scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl, SCM_FIXNUM_BIT,
  1019. SCM_SETCHARS, SCM_SLOPPY_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET,
  1020. SCM_LENGTH_MAX, SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH,
  1021. SCM_ROCHARS, SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR,
  1022. scm_sym2vcell, scm_intern, scm_intern0, scm_sysintern, scm_sysintern0,
  1023. scm_sysintern0_no_module_lookup, scm_init_symbols_deprecated,
  1024. scm_vector_set_length_x, scm_contregs, scm_debug_info,
  1025. scm_debug_frame, SCM_DSIDEVAL, SCM_CONST_LONG, SCM_VCELL,
  1026. SCM_GLOBAL_VCELL, SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT,
  1027. SCM_HUGE_LENGTH, SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
  1028. SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
  1029. SCM_VALIDATE_RWSTRING, DIGITS, scm_small_istr2int, scm_istr2int,
  1030. scm_istr2flo, scm_istring2number, scm_istr2int, scm_istr2flo,
  1031. scm_istring2number, scm_vtable_index_vcell, scm_si_vcell, SCM_ECONSP,
  1032. SCM_NECONSP, SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL,
  1033. SCM_GLOC_VAL_LOC, scm_make_gloc, scm_gloc_p, scm_tc16_variable,
  1034. SCM_CHARS, SCM_LENGTH, SCM_SET_STRING_CHARS, SCM_SET_STRING_LENGTH.
  1035. * Changes to bundled modules
  1036. ** (ice-9 debug)
  1037. Using the (ice-9 debug) module no longer automatically switches Guile
  1038. to use the debugging evaluator. If you want to switch to the
  1039. debugging evaluator (which is needed for backtrace information if you
  1040. hit an error), please add an explicit "(debug-enable 'debug)" to your
  1041. code just after the code to use (ice-9 debug).
  1042. Changes since Guile 1.4:
  1043. * Changes to the distribution
  1044. ** A top-level TODO file is included.
  1045. ** Guile now uses a versioning scheme similar to that of the Linux kernel.
  1046. Guile now always uses three numbers to represent the version,
  1047. i.e. "1.6.5". The first number, 1, is the major version number, the
  1048. second number, 6, is the minor version number, and the third number,
  1049. 5, is the micro version number. Changes in major version number
  1050. indicate major changes in Guile.
  1051. Minor version numbers that are even denote stable releases, and odd
  1052. minor version numbers denote development versions (which may be
  1053. unstable). The micro version number indicates a minor sub-revision of
  1054. a given MAJOR.MINOR release.
  1055. In keeping with the new scheme, (minor-version) and scm_minor_version
  1056. no longer return everything but the major version number. They now
  1057. just return the minor version number. Two new functions
  1058. (micro-version) and scm_micro_version have been added to report the
  1059. micro version number.
  1060. In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
  1061. ** New preprocessor definitions are available for checking versions.
  1062. version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
  1063. SCM_MICRO_VERSION to the appropriate integer values.
  1064. ** Guile now actively warns about deprecated features.
  1065. The new configure option `--enable-deprecated=LEVEL' and the
  1066. environment variable GUILE_WARN_DEPRECATED control this mechanism.
  1067. See INSTALL and README for more information.
  1068. ** Guile is much more likely to work on 64-bit architectures.
  1069. Guile now compiles and passes "make check" with only two UNRESOLVED GC
  1070. cases on Alpha and ia64 based machines now. Thanks to John Goerzen
  1071. for the use of a test machine, and thanks to Stefan Jahn for ia64
  1072. patches.
  1073. ** New functions: setitimer and getitimer.
  1074. These implement a fairly direct interface to the libc functions of the
  1075. same name.
  1076. ** The #. reader extension is now disabled by default.
  1077. For safety reasons, #. evaluation is disabled by default. To
  1078. re-enable it, set the fluid read-eval? to #t. For example:
  1079. (fluid-set! read-eval? #t)
  1080. but make sure you realize the potential security risks involved. With
  1081. read-eval? enabled, reading a data file from an untrusted source can
  1082. be dangerous.
  1083. ** New SRFI modules have been added:
  1084. SRFI-0 `cond-expand' is now supported in Guile, without requiring
  1085. using a module.
  1086. (srfi srfi-1) is a library containing many useful pair- and list-processing
  1087. procedures.
  1088. (srfi srfi-2) exports and-let*.
  1089. (srfi srfi-4) implements homogeneous numeric vector datatypes.
  1090. (srfi srfi-6) is a dummy module for now, since guile already provides
  1091. all of the srfi-6 procedures by default: open-input-string,
  1092. open-output-string, get-output-string.
  1093. (srfi srfi-8) exports receive.
  1094. (srfi srfi-9) exports define-record-type.
  1095. (srfi srfi-10) exports define-reader-ctor and implements the reader
  1096. extension #,().
  1097. (srfi srfi-11) exports let-values and let*-values.
  1098. (srfi srfi-13) implements the SRFI String Library.
  1099. (srfi srfi-14) implements the SRFI Character-Set Library.
  1100. (srfi srfi-17) implements setter and getter-with-setter and redefines
  1101. some accessor procedures as procedures with getters. (such as car,
  1102. cdr, vector-ref etc.)
  1103. (srfi srfi-19) implements the SRFI Time/Date Library.
  1104. ** New scripts / "executable modules"
  1105. Subdirectory "scripts" contains Scheme modules that are packaged to
  1106. also be executable as scripts. At this time, these scripts are available:
  1107. display-commentary
  1108. doc-snarf
  1109. generate-autoload
  1110. punify
  1111. read-scheme-source
  1112. use2dot
  1113. See README there for more info.
  1114. These scripts can be invoked from the shell with the new program
  1115. "guile-tools", which keeps track of installation directory for you.
  1116. For example:
  1117. $ guile-tools display-commentary srfi/*.scm
  1118. guile-tools is copied to the standard $bindir on "make install".
  1119. ** New module (ice-9 stack-catch):
  1120. stack-catch is like catch, but saves the current state of the stack in
  1121. the fluid the-last-stack. This fluid can be useful when using the
  1122. debugger and when re-throwing an error.
  1123. ** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
  1124. This has been done to prevent problems on lesser operating systems
  1125. that can't tolerate `*'s in file names. The exported macro continues
  1126. to be named `and-let*', of course.
  1127. On systems that support it, there is also a compatibility module named
  1128. (ice-9 and-let*). It will go away in the next release.
  1129. ** New modules (oop goops) etc.:
  1130. (oop goops)
  1131. (oop goops describe)
  1132. (oop goops save)
  1133. (oop goops active-slot)
  1134. (oop goops composite-slot)
  1135. The Guile Object Oriented Programming System (GOOPS) has been
  1136. integrated into Guile. For further information, consult the GOOPS
  1137. manual and tutorial in the `doc' directory.
  1138. ** New module (ice-9 rdelim).
  1139. This exports the following procedures which were previously defined
  1140. in the default environment:
  1141. read-line read-line! read-delimited read-delimited! %read-delimited!
  1142. %read-line write-line
  1143. For backwards compatibility the definitions are still imported into the
  1144. default environment in this version of Guile. However you should add:
  1145. (use-modules (ice-9 rdelim))
  1146. to any program which uses the definitions, since this may change in
  1147. future.
  1148. Alternatively, if guile-scsh is installed, the (scsh rdelim) module
  1149. can be used for similar functionality.
  1150. ** New module (ice-9 rw)
  1151. This is a subset of the (scsh rw) module from guile-scsh. Currently
  1152. it defines two procedures:
  1153. *** New function: read-string!/partial str [port_or_fdes [start [end]]]
  1154. Read characters from a port or file descriptor into a string STR.
  1155. A port must have an underlying file descriptor -- a so-called
  1156. fport. This procedure is scsh-compatible and can efficiently read
  1157. large strings.
  1158. *** New function: write-string/partial str [port_or_fdes [start [end]]]
  1159. Write characters from a string STR to a port or file descriptor.
  1160. A port must have an underlying file descriptor -- a so-called
  1161. fport. This procedure is mostly compatible and can efficiently
  1162. write large strings.
  1163. ** New module (ice-9 match)
  1164. This module includes Andrew K. Wright's pattern matcher. See
  1165. ice-9/match.scm for brief description or
  1166. http://www.star-lab.com/wright/code.html
  1167. for complete documentation.
  1168. ** New module (ice-9 buffered-input)
  1169. This module provides procedures to construct an input port from an
  1170. underlying source of input that reads and returns its input in chunks.
  1171. The underlying input source is a Scheme procedure, specified by the
  1172. caller, which the port invokes whenever it needs more input.
  1173. This is useful when building an input port whose back end is Readline
  1174. or a UI element such as the GtkEntry widget.
  1175. ** Documentation
  1176. The reference and tutorial documentation that was previously
  1177. distributed separately, as `guile-doc', is now included in the core
  1178. Guile distribution. The documentation consists of the following
  1179. manuals.
  1180. - The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
  1181. to using Guile.
  1182. - The Guile Reference Manual (guile.texi) contains (or is intended to
  1183. contain) reference documentation on all aspects of Guile.
  1184. - The GOOPS Manual (goops.texi) contains both tutorial-style and
  1185. reference documentation for using GOOPS, Guile's Object Oriented
  1186. Programming System.
  1187. - The Revised^5 Report on the Algorithmic Language Scheme
  1188. (r5rs.texi).
  1189. See the README file in the `doc' directory for more details.
  1190. ** There are a couple of examples in the examples/ directory now.
  1191. * Changes to the stand-alone interpreter
  1192. ** New command line option `--use-srfi'
  1193. Using this option, SRFI modules can be loaded on startup and be
  1194. available right from the beginning. This makes programming portable
  1195. Scheme programs easier.
  1196. The option `--use-srfi' expects a comma-separated list of numbers,
  1197. each representing a SRFI number to be loaded into the interpreter
  1198. before starting evaluating a script file or the REPL. Additionally,
  1199. the feature identifier for the loaded SRFIs is recognized by
  1200. `cond-expand' when using this option.
  1201. Example:
  1202. $ guile --use-srfi=8,13
  1203. guile> (receive (x z) (values 1 2) (+ 1 2))
  1204. 3
  1205. guile> (string-pad "bla" 20)
  1206. " bla"
  1207. ** Guile now always starts up in the `(guile-user)' module.
  1208. Previously, scripts executed via the `-s' option would run in the
  1209. `(guile)' module and the repl would run in the `(guile-user)' module.
  1210. Now every user action takes place in the `(guile-user)' module by
  1211. default.
  1212. * Changes to Scheme functions and syntax
  1213. ** Character classifiers work for non-ASCII characters.
  1214. The predicates `char-alphabetic?', `char-numeric?',
  1215. `char-whitespace?', `char-lower?', `char-upper?' and `char-is-both?'
  1216. no longer check whether their arguments are ASCII characters.
  1217. Previously, a character would only be considered alphabetic when it
  1218. was also ASCII, for example.
  1219. ** Previously deprecated Scheme functions have been removed:
  1220. tag - no replacement.
  1221. fseek - replaced by seek.
  1222. list* - replaced by cons*.
  1223. ** It's now possible to create modules with controlled environments
  1224. Example:
  1225. (use-modules (ice-9 safe))
  1226. (define m (make-safe-module))
  1227. ;;; m will now be a module containing only a safe subset of R5RS
  1228. (eval '(+ 1 2) m) --> 3
  1229. (eval 'load m) --> ERROR: Unbound variable: load
  1230. ** Evaluation of "()", the empty list, is now an error.
  1231. Previously, the expression "()" evaluated to the empty list. This has
  1232. been changed to signal a "missing expression" error. The correct way
  1233. to write the empty list as a literal constant is to use quote: "'()".
  1234. ** New concept of `Guile Extensions'.
  1235. A Guile Extension is just a ordinary shared library that can be linked
  1236. at run-time. We found it advantageous to give this simple concept a
  1237. dedicated name to distinguish the issues related to shared libraries
  1238. from the issues related to the module system.
  1239. *** New function: load-extension
  1240. Executing (load-extension lib init) is mostly equivalent to
  1241. (dynamic-call init (dynamic-link lib))
  1242. except when scm_register_extension has been called previously.
  1243. Whenever appropriate, you should use `load-extension' instead of
  1244. dynamic-link and dynamic-call.
  1245. *** New C function: scm_c_register_extension
  1246. This function registers a initialization function for use by
  1247. `load-extension'. Use it when you don't want specific extensions to
  1248. be loaded as shared libraries (for example on platforms that don't
  1249. support dynamic linking).
  1250. ** Auto-loading of compiled-code modules is deprecated.
  1251. Guile used to be able to automatically find and link a shared
  1252. library to satisfy requests for a module. For example, the module
  1253. `(foo bar)' could be implemented by placing a shared library named
  1254. "foo/libbar.so" (or with a different extension) in a directory on the
  1255. load path of Guile.
  1256. This has been found to be too tricky, and is no longer supported. The
  1257. shared libraries are now called "extensions". You should now write a
  1258. small Scheme file that calls `load-extension' to load the shared
  1259. library and initialize it explicitly.
  1260. The shared libraries themselves should be installed in the usual
  1261. places for shared libraries, with names like "libguile-foo-bar".
  1262. For example, place this into a file "foo/bar.scm"
  1263. (define-module (foo bar))
  1264. (load-extension "libguile-foo-bar" "foobar_init")
  1265. ** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
  1266. `eval' is now R5RS, that is it takes two arguments.
  1267. The second argument is an environment specifier, i.e. either
  1268. (scheme-report-environment 5)
  1269. (null-environment 5)
  1270. (interaction-environment)
  1271. or
  1272. any module.
  1273. ** The module system has been made more disciplined.
  1274. The function `eval' will save and restore the current module around
  1275. the evaluation of the specified expression. While this expression is
  1276. evaluated, `(current-module)' will now return the right module, which
  1277. is the module specified as the second argument to `eval'.
  1278. A consequence of this change is that `eval' is not particularly
  1279. useful when you want allow the evaluated code to change what module is
  1280. designated as the current module and have this change persist from one
  1281. call to `eval' to the next. The read-eval-print-loop is an example
  1282. where `eval' is now inadequate. To compensate, there is a new
  1283. function `primitive-eval' that does not take a module specifier and
  1284. that does not save/restore the current module. You should use this
  1285. function together with `set-current-module', `current-module', etc
  1286. when you want to have more control over the state that is carried from
  1287. one eval to the next.
  1288. Additionally, it has been made sure that forms that are evaluated at
  1289. the top level are always evaluated with respect to the current module.
  1290. Previously, subforms of top-level forms such as `begin', `case',
  1291. etc. did not respect changes to the current module although these
  1292. subforms are at the top-level as well.
  1293. To prevent strange behavior, the forms `define-module',
  1294. `use-modules', `use-syntax', and `export' have been restricted to only
  1295. work on the top level. The forms `define-public' and
  1296. `defmacro-public' only export the new binding on the top level. They
  1297. behave just like `define' and `defmacro', respectively, when they are
  1298. used in a lexical environment.
  1299. Also, `export' will no longer silently re-export bindings imported
  1300. from a used module. It will emit a `deprecation' warning and will
  1301. cease to perform any re-export in the next version. If you actually
  1302. want to re-export bindings, use the new `re-export' in place of
  1303. `export'. The new `re-export' will not make copies of variables when
  1304. rexporting them, as `export' did wrongly.
  1305. ** Module system now allows selection and renaming of imported bindings
  1306. Previously, when using `use-modules' or the `#:use-module' clause in
  1307. the `define-module' form, all the bindings (association of symbols to
  1308. values) for imported modules were added to the "current module" on an
  1309. as-is basis. This has been changed to allow finer control through two
  1310. new facilities: selection and renaming.
  1311. You can now select which of the imported module's bindings are to be
  1312. visible in the current module by using the `:select' clause. This
  1313. clause also can be used to rename individual bindings. For example:
  1314. ;; import all bindings no questions asked
  1315. (use-modules (ice-9 common-list))
  1316. ;; import four bindings, renaming two of them;
  1317. ;; the current module sees: every some zonk-y zonk-n
  1318. (use-modules ((ice-9 common-list)
  1319. :select (every some
  1320. (remove-if . zonk-y)
  1321. (remove-if-not . zonk-n))))
  1322. You can also programmatically rename all selected bindings using the
  1323. `:renamer' clause, which specifies a proc that takes a symbol and
  1324. returns another symbol. Because it is common practice to use a prefix,
  1325. we now provide the convenience procedure `symbol-prefix-proc'. For
  1326. example:
  1327. ;; import four bindings, renaming two of them specifically,
  1328. ;; and all four w/ prefix "CL:";
  1329. ;; the current module sees: CL:every CL:some CL:zonk-y CL:zonk-n
  1330. (use-modules ((ice-9 common-list)
  1331. :select (every some
  1332. (remove-if . zonk-y)
  1333. (remove-if-not . zonk-n))
  1334. :renamer (symbol-prefix-proc 'CL:)))
  1335. ;; import four bindings, renaming two of them specifically,
  1336. ;; and all four by upcasing.
  1337. ;; the current module sees: EVERY SOME ZONK-Y ZONK-N
  1338. (define (upcase-symbol sym)
  1339. (string->symbol (string-upcase (symbol->string sym))))
  1340. (use-modules ((ice-9 common-list)
  1341. :select (every some
  1342. (remove-if . zonk-y)
  1343. (remove-if-not . zonk-n))
  1344. :renamer upcase-symbol))
  1345. Note that programmatic renaming is done *after* individual renaming.
  1346. Also, the above examples show `use-modules', but the same facilities are
  1347. available for the `#:use-module' clause of `define-module'.
  1348. See manual for more info.
  1349. ** The semantics of guardians have changed.
  1350. The changes are for the most part compatible. An important criterion
  1351. was to keep the typical usage of guardians as simple as before, but to
  1352. make the semantics safer and (as a result) more useful.
  1353. *** All objects returned from guardians are now properly alive.
  1354. It is now guaranteed that any object referenced by an object returned
  1355. from a guardian is alive. It's now impossible for a guardian to
  1356. return a "contained" object before its "containing" object.
  1357. One incompatible (but probably not very important) change resulting
  1358. from this is that it is no longer possible to guard objects that
  1359. indirectly reference themselves (i.e. are parts of cycles). If you do
  1360. so accidentally, you'll get a warning.
  1361. *** There are now two types of guardians: greedy and sharing.
  1362. If you call (make-guardian #t) or just (make-guardian), you'll get a
  1363. greedy guardian, and for (make-guardian #f) a sharing guardian.
  1364. Greedy guardians are the default because they are more "defensive".
  1365. You can only greedily guard an object once. If you guard an object
  1366. more than once, once in a greedy guardian and the rest of times in
  1367. sharing guardians, then it is guaranteed that the object won't be
  1368. returned from sharing guardians as long as it is greedily guarded
  1369. and/or alive.
  1370. Guardians returned by calls to `make-guardian' can now take one more
  1371. optional parameter, which says whether to throw an error in case an
  1372. attempt is made to greedily guard an object that is already greedily
  1373. guarded. The default is true, i.e. throw an error. If the parameter
  1374. is false, the guardian invocation returns #t if guarding was
  1375. successful and #f if it wasn't.
  1376. Also, since greedy guarding is, in effect, a side-effecting operation
  1377. on objects, a new function is introduced: `destroy-guardian!'.
  1378. Invoking this function on a guardian renders it unoperative and, if
  1379. the guardian is greedy, clears the "greedily guarded" property of the
  1380. objects that were guarded by it, thus undoing the side effect.
  1381. Note that all this hair is hardly very important, since guardian
  1382. objects are usually permanent.
  1383. ** Continuations created by call-with-current-continuation now accept
  1384. any number of arguments, as required by R5RS.
  1385. ** New function `issue-deprecation-warning'
  1386. This function is used to display the deprecation messages that are
  1387. controlled by GUILE_WARN_DEPRECATION as explained in the README.
  1388. (define (id x)
  1389. (issue-deprecation-warning "`id' is deprecated. Use `identity' instead.")
  1390. (identity x))
  1391. guile> (id 1)
  1392. ;; `id' is deprecated. Use `identity' instead.
  1393. 1
  1394. guile> (id 1)
  1395. 1
  1396. ** New syntax `begin-deprecated'
  1397. When deprecated features are included (as determined by the configure
  1398. option --enable-deprecated), `begin-deprecated' is identical to
  1399. `begin'. When deprecated features are excluded, it always evaluates
  1400. to `#f', ignoring the body forms.
  1401. ** New function `make-object-property'
  1402. This function returns a new `procedure with setter' P that can be used
  1403. to attach a property to objects. When calling P as
  1404. (set! (P obj) val)
  1405. where `obj' is any kind of object, it attaches `val' to `obj' in such
  1406. a way that it can be retrieved by calling P as
  1407. (P obj)
  1408. This function will replace procedure properties, symbol properties and
  1409. source properties eventually.
  1410. ** Module (ice-9 optargs) now uses keywords instead of `#&'.
  1411. Instead of #&optional, #&key, etc you should now use #:optional,
  1412. #:key, etc. Since #:optional is a keyword, you can write it as just
  1413. :optional when (read-set! keywords 'prefix) is active.
  1414. The old reader syntax `#&' is still supported, but deprecated. It
  1415. will be removed in the next release.
  1416. ** New define-module option: pure
  1417. Tells the module system not to include any bindings from the root
  1418. module.
  1419. Example:
  1420. (define-module (totally-empty-module)
  1421. :pure)
  1422. ** New define-module option: export NAME1 ...
  1423. Export names NAME1 ...
  1424. This option is required if you want to be able to export bindings from
  1425. a module which doesn't import one of `define-public' or `export'.
  1426. Example:
  1427. (define-module (foo)
  1428. :pure
  1429. :use-module (ice-9 r5rs)
  1430. :export (bar))
  1431. ;;; Note that we're pure R5RS below this point!
  1432. (define (bar)
  1433. ...)
  1434. ** New function: object->string OBJ
  1435. Return a Scheme string obtained by printing a given object.
  1436. ** New function: port? X
  1437. Returns a boolean indicating whether X is a port. Equivalent to
  1438. `(or (input-port? X) (output-port? X))'.
  1439. ** New function: file-port?
  1440. Determines whether a given object is a port that is related to a file.
  1441. ** New function: port-for-each proc
  1442. Apply PROC to each port in the Guile port table in turn. The return
  1443. value is unspecified. More specifically, PROC is applied exactly once
  1444. to every port that exists in the system at the time PORT-FOR-EACH is
  1445. invoked. Changes to the port table while PORT-FOR-EACH is running
  1446. have no effect as far as PORT-FOR-EACH is concerned.
  1447. ** New function: dup2 oldfd newfd
  1448. A simple wrapper for the `dup2' system call. Copies the file
  1449. descriptor OLDFD to descriptor number NEWFD, replacing the
  1450. previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
  1451. Unlike for dup->fdes or primitive-move->fdes, no attempt is made
  1452. to move away ports which are using NEWFD. The return value is
  1453. unspecified.
  1454. ** New function: close-fdes fd
  1455. A simple wrapper for the `close' system call. Close file
  1456. descriptor FD, which must be an integer. Unlike close (*note
  1457. close: Ports and File Descriptors.), the file descriptor will be
  1458. closed even if a port is using it. The return value is
  1459. unspecified.
  1460. ** New function: crypt password salt
  1461. Encrypts `password' using the standard unix password encryption
  1462. algorithm.
  1463. ** New function: chroot path
  1464. Change the root directory of the running process to `path'.
  1465. ** New functions: getlogin, cuserid
  1466. Return the login name or the user name of the current effective user
  1467. id, respectively.
  1468. ** New functions: getpriority which who, setpriority which who prio
  1469. Get or set the priority of the running process.
  1470. ** New function: getpass prompt
  1471. Read a password from the terminal, first displaying `prompt' and
  1472. disabling echoing.
  1473. ** New function: flock file operation
  1474. Set/remove an advisory shared or exclusive lock on `file'.
  1475. ** New functions: sethostname name, gethostname
  1476. Set or get the hostname of the machine the current process is running
  1477. on.
  1478. ** New function: mkstemp! tmpl
  1479. mkstemp creates a new unique file in the file system and returns a
  1480. new buffered port open for reading and writing to the file. TMPL
  1481. is a string specifying where the file should be created: it must
  1482. end with `XXXXXX' and will be changed in place to return the name
  1483. of the temporary file.
  1484. ** New function: open-input-string string
  1485. Return an input string port which delivers the characters from
  1486. `string'. This procedure, together with `open-output-string' and
  1487. `get-output-string' implements SRFI-6.
  1488. ** New function: open-output-string
  1489. Return an output string port which collects all data written to it.
  1490. The data can then be retrieved by `get-output-string'.
  1491. ** New function: get-output-string
  1492. Return the contents of an output string port.
  1493. ** New function: identity
  1494. Return the argument.
  1495. ** socket, connect, accept etc., now have support for IPv6. IPv6 addresses
  1496. are represented in Scheme as integers with normal host byte ordering.
  1497. ** New function: inet-pton family address
  1498. Convert a printable string network address into an integer. Note that
  1499. unlike the C version of this function, the result is an integer with
  1500. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  1501. e.g.,
  1502. (inet-pton AF_INET "127.0.0.1") => 2130706433
  1503. (inet-pton AF_INET6 "::1") => 1
  1504. ** New function: inet-ntop family address
  1505. Convert an integer network address into a printable string. Note that
  1506. unlike the C version of this function, the input is an integer with
  1507. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  1508. e.g.,
  1509. (inet-ntop AF_INET 2130706433) => "127.0.0.1"
  1510. (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
  1511. ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
  1512. ** Deprecated: id
  1513. Use `identity' instead.
  1514. ** Deprecated: -1+
  1515. Use `1-' instead.
  1516. ** Deprecated: return-it
  1517. Do without it.
  1518. ** Deprecated: string-character-length
  1519. Use `string-length' instead.
  1520. ** Deprecated: flags
  1521. Use `logior' instead.
  1522. ** Deprecated: close-all-ports-except.
  1523. This was intended for closing ports in a child process after a fork,
  1524. but it has the undesirable side effect of flushing buffers.
  1525. port-for-each is more flexible.
  1526. ** The (ice-9 popen) module now attempts to set up file descriptors in
  1527. the child process from the current Scheme ports, instead of using the
  1528. current values of file descriptors 0, 1, and 2 in the parent process.
  1529. ** Removed function: builtin-weak-bindings
  1530. There is no such concept as a weak binding any more.
  1531. ** Removed constants: bignum-radix, scm-line-incrementors
  1532. ** define-method: New syntax mandatory.
  1533. The new method syntax is now mandatory:
  1534. (define-method (NAME ARG-SPEC ...) BODY ...)
  1535. (define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
  1536. ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
  1537. REST-ARG ::= ARG-NAME
  1538. If you have old code using the old syntax, import
  1539. (oop goops old-define-method) before (oop goops) as in:
  1540. (use-modules (oop goops old-define-method) (oop goops))
  1541. ** Deprecated function: builtin-variable
  1542. Removed function: builtin-bindings
  1543. There is no longer a distinction between builtin or other variables.
  1544. Use module system operations for all variables.
  1545. ** Lazy-catch handlers are no longer allowed to return.
  1546. That is, a call to `throw', `error', etc is now guaranteed to not
  1547. return.
  1548. ** Bugfixes for (ice-9 getopt-long)
  1549. This module is now tested using test-suite/tests/getopt-long.test.
  1550. The following bugs have been fixed:
  1551. *** Parsing for options that are specified to have `optional' args now checks
  1552. if the next element is an option instead of unconditionally taking it as the
  1553. option arg.
  1554. *** An error is now thrown for `--opt=val' when the option description
  1555. does not specify `(value #t)' or `(value optional)'. This condition used to
  1556. be accepted w/o error, contrary to the documentation.
  1557. *** The error message for unrecognized options is now more informative.
  1558. It used to be "not a record", an artifact of the implementation.
  1559. *** The error message for `--opt' terminating the arg list (no value), when
  1560. `(value #t)' is specified, is now more informative. It used to be "not enough
  1561. args".
  1562. *** "Clumped" single-char args now preserve trailing string, use it as arg.
  1563. The expansion used to be like so:
  1564. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "--xyz")
  1565. Note that the "5d" is dropped. Now it is like so:
  1566. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "5d" "--xyz")
  1567. This enables single-char options to have adjoining arguments as long as their
  1568. constituent characters are not potential single-char options.
  1569. ** (ice-9 session) procedure `arity' now works with (ice-9 optargs) `lambda*'
  1570. The `lambda*' and derivative forms in (ice-9 optargs) now set a procedure
  1571. property `arglist', which can be retrieved by `arity'. The result is that
  1572. `arity' can give more detailed information than before:
  1573. Before:
  1574. guile> (use-modules (ice-9 optargs))
  1575. guile> (define* (foo #:optional a b c) a)
  1576. guile> (arity foo)
  1577. 0 or more arguments in `lambda*:G0'.
  1578. After:
  1579. guile> (arity foo)
  1580. 3 optional arguments: `a', `b' and `c'.
  1581. guile> (define* (bar a b #:key c d #:allow-other-keys) a)
  1582. guile> (arity bar)
  1583. 2 required arguments: `a' and `b', 2 keyword arguments: `c'
  1584. and `d', other keywords allowed.
  1585. guile> (define* (baz a b #:optional c #:rest r) a)
  1586. guile> (arity baz)
  1587. 2 required arguments: `a' and `b', 1 optional argument: `c',
  1588. the rest in `r'.
  1589. * Changes to the C interface
  1590. ** Types have been renamed from scm_*_t to scm_t_*.
  1591. This has been done for POSIX sake. It reserves identifiers ending
  1592. with "_t". What a concept.
  1593. The old names are still available with status `deprecated'.
  1594. ** scm_t_bits (former scm_bits_t) is now a unsigned type.
  1595. ** Deprecated features have been removed.
  1596. *** Macros removed
  1597. SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
  1598. SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
  1599. *** C Functions removed
  1600. scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
  1601. scm_fseek - replaced by scm_seek.
  1602. gc-thunk - replaced by after-gc-hook.
  1603. gh_int2scmb - replaced by gh_bool2scm.
  1604. scm_tc_dblr - replaced by scm_tc16_real.
  1605. scm_tc_dblc - replaced by scm_tc16_complex.
  1606. scm_list_star - replaced by scm_cons_star.
  1607. ** Deprecated: scm_makfromstr
  1608. Use scm_mem2string instead.
  1609. ** Deprecated: scm_make_shared_substring
  1610. Explicit shared substrings will disappear from Guile.
  1611. Instead, "normal" strings will be implemented using sharing
  1612. internally, combined with a copy-on-write strategy.
  1613. ** Deprecated: scm_read_only_string_p
  1614. The concept of read-only strings will disappear in next release of
  1615. Guile.
  1616. ** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
  1617. Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
  1618. ** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
  1619. Call a procedure with the indicated number of arguments. See "Fly
  1620. Evaluation" in the manual.
  1621. ** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
  1622. Call a procedure with the indicated number of arguments and a list of
  1623. further arguments. See "Fly Evaluation" in the manual.
  1624. ** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5
  1625. Create a list of the given number of elements. See "List
  1626. Constructors" in the manual.
  1627. ** Renamed function: scm_listify has been replaced by scm_list_n.
  1628. ** Deprecated macros: SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4,
  1629. SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9.
  1630. Use functions scm_list_N instead.
  1631. ** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
  1632. Used by an application to read arbitrary number of bytes from a port.
  1633. Same semantics as libc read, except that scm_c_read only returns less
  1634. than SIZE bytes if at end-of-file.
  1635. Warning: Doesn't update port line and column counts!
  1636. ** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
  1637. Used by an application to write arbitrary number of bytes to an SCM
  1638. port. Similar semantics as libc write. However, unlike libc
  1639. write, scm_c_write writes the requested number of bytes and has no
  1640. return value.
  1641. Warning: Doesn't update port line and column counts!
  1642. ** New function: scm_init_guile ()
  1643. In contrast to scm_boot_guile, scm_init_guile will return normally
  1644. after initializing Guile. It is not available on all systems, tho.
  1645. ** New functions: scm_str2symbol, scm_mem2symbol
  1646. The function scm_str2symbol takes a const char* pointing to a zero-terminated
  1647. field of characters and creates a scheme symbol object from that C string.
  1648. The function scm_mem2symbol takes a const char* and a number of characters and
  1649. creates a symbol from the characters in that memory area.
  1650. ** New functions: scm_primitive_make_property
  1651. scm_primitive_property_ref
  1652. scm_primitive_property_set_x
  1653. scm_primitive_property_del_x
  1654. These functions implement a new way to deal with object properties.
  1655. See libguile/properties.c for their documentation.
  1656. ** New function: scm_done_free (long size)
  1657. This function is the inverse of scm_done_malloc. Use it to report the
  1658. amount of smob memory you free. The previous method, which involved
  1659. calling scm_done_malloc with negative argument, was somewhat
  1660. unintuitive (and is still available, of course).
  1661. ** New function: scm_c_memq (SCM obj, SCM list)
  1662. This function provides a fast C level alternative for scm_memq for the case
  1663. that the list parameter is known to be a proper list. The function is a
  1664. replacement for scm_sloppy_memq, but is stricter in its requirements on its
  1665. list input parameter, since for anything else but a proper list the function's
  1666. behaviour is undefined - it may even crash or loop endlessly. Further, for
  1667. the case that the object is not found in the list, scm_c_memq returns #f which
  1668. is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
  1669. ** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
  1670. scm_remember_upto_here
  1671. These functions replace the function scm_remember.
  1672. ** Deprecated function: scm_remember
  1673. Use one of the new functions scm_remember_upto_here_1,
  1674. scm_remember_upto_here_2 or scm_remember_upto_here instead.
  1675. ** New function: scm_allocate_string
  1676. This function replaces the function scm_makstr.
  1677. ** Deprecated function: scm_makstr
  1678. Use the new function scm_allocate_string instead.
  1679. ** New global variable scm_gc_running_p introduced.
  1680. Use this variable to find out if garbage collection is being executed. Up to
  1681. now applications have used scm_gc_heap_lock to test if garbage collection was
  1682. running, which also works because of the fact that up to know only the garbage
  1683. collector has set this variable. But, this is an implementation detail that
  1684. may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
  1685. of this variable is (and has been) not fully safe anyway.
  1686. ** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
  1687. Use these instead of SCM_LENGTH_MAX.
  1688. ** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
  1689. SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
  1690. SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
  1691. Use these instead of SCM_LENGTH.
  1692. ** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
  1693. SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
  1694. SCM_SET_BITVECTOR_LENGTH
  1695. Use these instead of SCM_SETLENGTH
  1696. ** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
  1697. SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
  1698. SCM_ARRAY_MEM
  1699. Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
  1700. SCM_VELTS.
  1701. ** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
  1702. SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
  1703. SCM_SET_VECTOR_BASE
  1704. Use these instead of SCM_SETCHARS.
  1705. ** New macro: SCM_BITVECTOR_P
  1706. ** New macro: SCM_STRING_COERCE_0TERMINATION_X
  1707. Use instead of SCM_COERCE_SUBSTR.
  1708. ** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
  1709. For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
  1710. ** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
  1711. SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
  1712. SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
  1713. SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
  1714. SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
  1715. SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
  1716. SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
  1717. SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
  1718. SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
  1719. SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
  1720. SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
  1721. SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
  1722. SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
  1723. SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
  1724. SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_SETAND_CAR, SCM_SETOR_CAR
  1725. Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
  1726. Use scm_memory_error instead of SCM_NALLOC.
  1727. Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
  1728. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
  1729. Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
  1730. Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
  1731. Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
  1732. Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
  1733. Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
  1734. Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
  1735. Use SCM_STRINGP instead of SCM_RWSTRINGP.
  1736. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
  1737. Use SCM_STRING_CHARS instead of SCM_ROCHARS.
  1738. Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
  1739. Use a type specific setter macro instead of SCM_SETLENGTH.
  1740. Use a type specific setter macro instead of SCM_SETCHARS.
  1741. Use a type specific length macro instead of SCM_LENGTH_MAX.
  1742. Use SCM_GCMARKP instead of SCM_GC8MARKP.
  1743. Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
  1744. Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
  1745. Use SCM_TYP16 instead of SCM_GCTYP16.
  1746. Use SCM_CDR instead of SCM_GCCDR.
  1747. Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
  1748. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
  1749. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
  1750. Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
  1751. Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
  1752. Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
  1753. Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
  1754. ** Removed function: scm_struct_init
  1755. ** Removed variable: scm_symhash_dim
  1756. ** Renamed function: scm_make_cont has been replaced by
  1757. scm_make_continuation, which has a different interface.
  1758. ** Deprecated function: scm_call_catching_errors
  1759. Use scm_catch or scm_lazy_catch from throw.[ch] instead.
  1760. ** Deprecated function: scm_strhash
  1761. Use scm_string_hash instead.
  1762. ** Deprecated function: scm_vector_set_length_x
  1763. Instead, create a fresh vector of the desired size and copy the contents.
  1764. ** scm_gensym has changed prototype
  1765. scm_gensym now only takes one argument.
  1766. ** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
  1767. scm_tc7_lvector
  1768. There is now only a single symbol type scm_tc7_symbol.
  1769. The tag scm_tc7_lvector was not used anyway.
  1770. ** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
  1771. Use scm_make_smob_type and scm_set_smob_XXX instead.
  1772. ** New function scm_set_smob_apply.
  1773. This can be used to set an apply function to a smob type.
  1774. ** Deprecated function: scm_strprint_obj
  1775. Use scm_object_to_string instead.
  1776. ** Deprecated function: scm_wta
  1777. Use scm_wrong_type_arg, or another appropriate error signalling function
  1778. instead.
  1779. ** Explicit support for obarrays has been deprecated.
  1780. Use `scm_str2symbol' and the generic hashtable functions instead.
  1781. ** The concept of `vcells' has been deprecated.
  1782. The data type `variable' is now used exclusively. `Vcells' have been
  1783. a low-level concept so you are likely not affected by this change.
  1784. *** Deprecated functions: scm_sym2vcell, scm_sysintern,
  1785. scm_sysintern0, scm_symbol_value0, scm_intern, scm_intern0.
  1786. Use scm_c_define or scm_c_lookup instead, as appropriate.
  1787. *** New functions: scm_c_module_lookup, scm_c_lookup,
  1788. scm_c_module_define, scm_c_define, scm_module_lookup, scm_lookup,
  1789. scm_module_define, scm_define.
  1790. These functions work with variables instead of with vcells.
  1791. ** New functions for creating and defining `subr's and `gsubr's.
  1792. The new functions more clearly distinguish between creating a subr (or
  1793. gsubr) object and adding it to the current module.
  1794. These new functions are available: scm_c_make_subr, scm_c_define_subr,
  1795. scm_c_make_subr_with_generic, scm_c_define_subr_with_generic,
  1796. scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
  1797. scm_c_define_gsubr_with_generic.
  1798. ** Deprecated functions: scm_make_subr, scm_make_subr_opt,
  1799. scm_make_subr_with_generic, scm_make_gsubr,
  1800. scm_make_gsubr_with_generic.
  1801. Use the new ones from above instead.
  1802. ** C interface to the module system has changed.
  1803. While we suggest that you avoid as many explicit module system
  1804. operations from C as possible for the time being, the C interface has
  1805. been made more similar to the high-level Scheme module system.
  1806. *** New functions: scm_c_define_module, scm_c_use_module,
  1807. scm_c_export, scm_c_resolve_module.
  1808. They mostly work like their Scheme namesakes. scm_c_define_module
  1809. takes a function that is called a context where the new module is
  1810. current.
  1811. *** Deprecated functions: scm_the_root_module, scm_make_module,
  1812. scm_ensure_user_module, scm_load_scheme_module.
  1813. Use the new functions instead.
  1814. ** Renamed function: scm_internal_with_fluids becomes
  1815. scm_c_with_fluids.
  1816. scm_internal_with_fluids is available as a deprecated function.
  1817. ** New function: scm_c_with_fluid.
  1818. Just like scm_c_with_fluids, but takes one fluid and one value instead
  1819. of lists of same.
  1820. ** Deprecated typedefs: long_long, ulong_long.
  1821. They are of questionable utility and they pollute the global
  1822. namespace.
  1823. ** Deprecated typedef: scm_sizet
  1824. It is of questionable utility now that Guile requires ANSI C, and is
  1825. oddly named.
  1826. ** Deprecated typedefs: scm_port_rw_active, scm_port,
  1827. scm_ptob_descriptor, scm_debug_info, scm_debug_frame, scm_fport,
  1828. scm_option, scm_rstate, scm_rng, scm_array, scm_array_dim.
  1829. Made more compliant with the naming policy by adding a _t at the end.
  1830. ** Deprecated functions: scm_mkbig, scm_big2num, scm_adjbig,
  1831. scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl
  1832. With the exception of the mysterious scm_2ulong2big, they are still
  1833. available under new names (scm_i_mkbig etc). These functions are not
  1834. intended to be used in user code. You should avoid dealing with
  1835. bignums directly, and should deal with numbers in general (which can
  1836. be bignums).
  1837. ** Change in behavior: scm_num2long, scm_num2ulong
  1838. The scm_num2[u]long functions don't any longer accept an inexact
  1839. argument. This change in behavior is motivated by concordance with
  1840. R5RS: It is more common that a primitive doesn't want to accept an
  1841. inexact for an exact.
  1842. ** New functions: scm_short2num, scm_ushort2num, scm_int2num,
  1843. scm_uint2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
  1844. scm_num2ushort, scm_num2int, scm_num2uint, scm_num2ptrdiff,
  1845. scm_num2size.
  1846. These are conversion functions between the various ANSI C integral
  1847. types and Scheme numbers. NOTE: The scm_num2xxx functions don't
  1848. accept an inexact argument.
  1849. ** New functions: scm_float2num, scm_double2num,
  1850. scm_num2float, scm_num2double.
  1851. These are conversion functions between the two ANSI C float types and
  1852. Scheme numbers.
  1853. ** New number validation macros:
  1854. SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,INT,UINT}[_DEF]
  1855. See above.
  1856. ** New functions: scm_gc_protect_object, scm_gc_unprotect_object
  1857. These are just nicer-named old scm_protect_object and
  1858. scm_unprotect_object.
  1859. ** Deprecated functions: scm_protect_object, scm_unprotect_object
  1860. ** New functions: scm_gc_[un]register_root, scm_gc_[un]register_roots
  1861. These functions can be used to register pointers to locations that
  1862. hold SCM values.
  1863. ** Deprecated function: scm_create_hook.
  1864. Its sins are: misleading name, non-modularity and lack of general
  1865. usefulness.
  1866. Changes since Guile 1.3.4:
  1867. * Changes to the distribution
  1868. ** Trees from nightly snapshots and CVS now require you to run autogen.sh.
  1869. We've changed the way we handle generated files in the Guile source
  1870. repository. As a result, the procedure for building trees obtained
  1871. from the nightly FTP snapshots or via CVS has changed:
  1872. - You must have appropriate versions of autoconf, automake, and
  1873. libtool installed on your system. See README for info on how to
  1874. obtain these programs.
  1875. - Before configuring the tree, you must first run the script
  1876. `autogen.sh' at the top of the source tree.
  1877. The Guile repository used to contain not only source files, written by
  1878. humans, but also some generated files, like configure scripts and
  1879. Makefile.in files. Even though the contents of these files could be
  1880. derived mechanically from other files present, we thought it would
  1881. make the tree easier to build if we checked them into CVS.
  1882. However, this approach means that minor differences between
  1883. developer's installed tools and habits affected the whole team.
  1884. So we have removed the generated files from the repository, and
  1885. added the autogen.sh script, which will reconstruct them
  1886. appropriately.
  1887. ** configure now has experimental options to remove support for certain
  1888. features:
  1889. --disable-arrays omit array and uniform array support
  1890. --disable-posix omit posix interfaces
  1891. --disable-networking omit networking interfaces
  1892. --disable-regex omit regular expression interfaces
  1893. These are likely to become separate modules some day.
  1894. ** New configure option --enable-debug-freelist
  1895. This enables a debugging version of SCM_NEWCELL(), and also registers
  1896. an extra primitive, the setter `gc-set-debug-check-freelist!'.
  1897. Configure with the --enable-debug-freelist option to enable
  1898. the gc-set-debug-check-freelist! primitive, and then use:
  1899. (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
  1900. (gc-set-debug-check-freelist! #f) # turn off checking
  1901. Checking of the freelist forces a traversal of the freelist and
  1902. a garbage collection before each allocation of a cell. This can
  1903. slow down the interpreter dramatically, so the setter should be used to
  1904. turn on this extra processing only when necessary.
  1905. ** New configure option --enable-debug-malloc
  1906. Include code for debugging of calls to scm_must_malloc/realloc/free.
  1907. Checks that
  1908. 1. objects freed by scm_must_free has been mallocated by scm_must_malloc
  1909. 2. objects reallocated by scm_must_realloc has been allocated by
  1910. scm_must_malloc
  1911. 3. reallocated objects are reallocated with the same what string
  1912. But, most importantly, it records the number of allocated objects of
  1913. each kind. This is useful when searching for memory leaks.
  1914. A Guile compiled with this option provides the primitive
  1915. `malloc-stats' which returns an alist with pairs of kind and the
  1916. number of objects of that kind.
  1917. ** All includes are now referenced relative to the root directory
  1918. Since some users have had problems with mixups between Guile and
  1919. system headers, we have decided to always refer to Guile headers via
  1920. their parent directories. This essentially creates a "private name
  1921. space" for Guile headers. This means that the compiler only is given
  1922. -I options for the root build and root source directory.
  1923. ** Header files kw.h and genio.h have been removed.
  1924. ** The module (ice-9 getopt-gnu-style) has been removed.
  1925. ** New module (ice-9 documentation)
  1926. Implements the interface to documentation strings associated with
  1927. objects.
  1928. ** New module (ice-9 time)
  1929. Provides a macro `time', which displays execution time of a given form.
  1930. ** New module (ice-9 history)
  1931. Loading this module enables value history in the repl.
  1932. * Changes to the stand-alone interpreter
  1933. ** New command line option --debug
  1934. Start Guile with debugging evaluator and backtraces enabled.
  1935. This is useful when debugging your .guile init file or scripts.
  1936. ** New help facility
  1937. Usage: (help NAME) gives documentation about objects named NAME (a symbol)
  1938. (help REGEXP) ditto for objects with names matching REGEXP (a string)
  1939. (help 'NAME) gives documentation for NAME, even if it is not an object
  1940. (help ,EXPR) gives documentation for object returned by EXPR
  1941. (help (my module)) gives module commentary for `(my module)'
  1942. (help) gives this text
  1943. `help' searches among bindings exported from loaded modules, while
  1944. `apropos' searches among bindings visible from the "current" module.
  1945. Examples: (help help)
  1946. (help cons)
  1947. (help "output-string")
  1948. ** `help' and `apropos' now prints full module names
  1949. ** Dynamic linking now uses libltdl from the libtool package.
  1950. The old system dependent code for doing dynamic linking has been
  1951. replaced with calls to the libltdl functions which do all the hairy
  1952. details for us.
  1953. The major improvement is that you can now directly pass libtool
  1954. library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
  1955. will be able to do the best shared library job you can get, via
  1956. libltdl.
  1957. The way dynamic libraries are found has changed and is not really
  1958. portable across platforms, probably. It is therefore recommended to
  1959. use absolute filenames when possible.
  1960. If you pass a filename without an extension to `dynamic-link', it will
  1961. try a few appropriate ones. Thus, the most platform ignorant way is
  1962. to specify a name like "libfoo", without any directories and
  1963. extensions.
  1964. ** Guile COOP threads are now compatible with LinuxThreads
  1965. Previously, COOP threading wasn't possible in applications linked with
  1966. Linux POSIX threads due to their use of the stack pointer to find the
  1967. thread context. This has now been fixed with a workaround which uses
  1968. the pthreads to allocate the stack.
  1969. ** New primitives: `pkgdata-dir', `site-dir', `library-dir'
  1970. ** Positions of erring expression in scripts
  1971. With version 1.3.4, the location of the erring expression in Guile
  1972. scipts is no longer automatically reported. (This should have been
  1973. documented before the 1.3.4 release.)
  1974. You can get this information by enabling recording of positions of
  1975. source expressions and running the debugging evaluator. Put this at
  1976. the top of your script (or in your "site" file):
  1977. (read-enable 'positions)
  1978. (debug-enable 'debug)
  1979. ** Backtraces in scripts
  1980. It is now possible to get backtraces in scripts.
  1981. Put
  1982. (debug-enable 'debug 'backtrace)
  1983. at the top of the script.
  1984. (The first options enables the debugging evaluator.
  1985. The second enables backtraces.)
  1986. ** Part of module system symbol lookup now implemented in C
  1987. The eval closure of most modules is now implemented in C. Since this
  1988. was one of the bottlenecks for loading speed, Guile now loads code
  1989. substantially faster than before.
  1990. ** Attempting to get the value of an unbound variable now produces
  1991. an exception with a key of 'unbound-variable instead of 'misc-error.
  1992. ** The initial default output port is now unbuffered if it's using a
  1993. tty device. Previously in this situation it was line-buffered.
  1994. ** New hook: after-gc-hook
  1995. after-gc-hook takes over the role of gc-thunk. This hook is run at
  1996. the first SCM_TICK after a GC. (Thus, the code is run at the same
  1997. point during evaluation as signal handlers.)
  1998. Note that this hook should be used only for diagnostic and debugging
  1999. purposes. It is not certain that it will continue to be well-defined
  2000. when this hook is run in the future.
  2001. C programmers: Note the new C level hooks scm_before_gc_c_hook,
  2002. scm_before_sweep_c_hook, scm_after_gc_c_hook.
  2003. ** Improvements to garbage collector
  2004. Guile 1.4 has a new policy for triggering heap allocation and
  2005. determining the sizes of heap segments. It fixes a number of problems
  2006. in the old GC.
  2007. 1. The new policy can handle two separate pools of cells
  2008. (2-word/4-word) better. (The old policy would run wild, allocating
  2009. more and more memory for certain programs.)
  2010. 2. The old code would sometimes allocate far too much heap so that the
  2011. Guile process became gigantic. The new code avoids this.
  2012. 3. The old code would sometimes allocate too little so that few cells
  2013. were freed at GC so that, in turn, too much time was spent in GC.
  2014. 4. The old code would often trigger heap allocation several times in a
  2015. row. (The new scheme predicts how large the segments needs to be
  2016. in order not to need further allocation.)
  2017. All in all, the new GC policy will make larger applications more
  2018. efficient.
  2019. The new GC scheme also is prepared for POSIX threading. Threads can
  2020. allocate private pools of cells ("clusters") with just a single
  2021. function call. Allocation of single cells from such a cluster can
  2022. then proceed without any need of inter-thread synchronization.
  2023. ** New environment variables controlling GC parameters
  2024. GUILE_MAX_SEGMENT_SIZE Maximal segment size
  2025. (default = 2097000)
  2026. Allocation of 2-word cell heaps:
  2027. GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
  2028. (default = 360000)
  2029. GUILE_MIN_YIELD_1 Minimum number of freed cells at each
  2030. GC in percent of total heap size
  2031. (default = 40)
  2032. Allocation of 4-word cell heaps
  2033. (used for real numbers and misc other objects):
  2034. GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
  2035. (See entry "Way for application to customize GC parameters" under
  2036. section "Changes to the scm_ interface" below.)
  2037. ** Guile now implements reals using 4-word cells
  2038. This speeds up computation with reals. (They were earlier allocated
  2039. with `malloc'.) There is still some room for optimizations, however.
  2040. ** Some further steps toward POSIX thread support have been taken
  2041. *** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
  2042. don't have much effect any longer, and many of them will be removed in
  2043. next release.
  2044. *** Signals
  2045. are only handled at the top of the evaluator loop, immediately after
  2046. I/O, and in scm_equalp.
  2047. *** The GC can allocate thread private pools of pairs.
  2048. * Changes to Scheme functions and syntax
  2049. ** close-input-port and close-output-port are now R5RS
  2050. These procedures have been turned into primitives and have R5RS behaviour.
  2051. ** New procedure: simple-format PORT MESSAGE ARG1 ...
  2052. (ice-9 boot) makes `format' an alias for `simple-format' until possibly
  2053. extended by the more sophisticated version in (ice-9 format)
  2054. (simple-format port message . args)
  2055. Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
  2056. MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
  2057. the escapes are replaced with corresponding members of ARGS:
  2058. ~A formats using `display' and ~S formats using `write'.
  2059. If DESTINATION is #t, then use the `current-output-port',
  2060. if DESTINATION is #f, then return a string containing the formatted text.
  2061. Does not add a trailing newline."
  2062. ** string-ref: the second argument is no longer optional.
  2063. ** string, list->string: no longer accept strings in their arguments,
  2064. only characters, for compatibility with R5RS.
  2065. ** New procedure: port-closed? PORT
  2066. Returns #t if PORT is closed or #f if it is open.
  2067. ** Deprecated: list*
  2068. The list* functionality is now provided by cons* (SRFI-1 compliant)
  2069. ** New procedure: cons* ARG1 ARG2 ... ARGn
  2070. Like `list', but the last arg provides the tail of the constructed list,
  2071. returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
  2072. Requires at least one argument. If given one argument, that argument
  2073. is returned as result.
  2074. This function is called `list*' in some other Schemes and in Common LISP.
  2075. ** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
  2076. ** New procedure: object-documentation OBJECT
  2077. Returns the documentation string associated with OBJECT. The
  2078. procedure uses a caching mechanism so that subsequent lookups are
  2079. faster.
  2080. Exported by (ice-9 documentation).
  2081. ** module-name now returns full names of modules
  2082. Previously, only the last part of the name was returned (`session' for
  2083. `(ice-9 session)'). Ex: `(ice-9 session)'.
  2084. * Changes to the gh_ interface
  2085. ** Deprecated: gh_int2scmb
  2086. Use gh_bool2scm instead.
  2087. * Changes to the scm_ interface
  2088. ** Guile primitives now carry docstrings!
  2089. Thanks to Greg Badros!
  2090. ** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  2091. Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  2092. macros and must contain a docstring that is extracted into foo.doc using a new
  2093. guile-doc-snarf script (that uses guile-doc-snarf.awk).
  2094. However, a major overhaul of these macros is scheduled for the next release of
  2095. guile.
  2096. ** Guile primitives use a new technique for validation of arguments
  2097. SCM_VALIDATE_* macros are defined to ease the redundancy and improve
  2098. the readability of argument checking.
  2099. ** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
  2100. ** New macros: SCM_PACK, SCM_UNPACK
  2101. Compose/decompose an SCM value.
  2102. The SCM type is now treated as an abstract data type and may be defined as a
  2103. long, a void* or as a struct, depending on the architecture and compile time
  2104. options. This makes it easier to find several types of bugs, for example when
  2105. SCM values are treated as integers without conversion. Values of the SCM type
  2106. should be treated as "atomic" values. These macros are used when
  2107. composing/decomposing an SCM value, either because you want to access
  2108. individual bits, or because you want to treat it as an integer value.
  2109. E.g., in order to set bit 7 in an SCM value x, use the expression
  2110. SCM_PACK (SCM_UNPACK (x) | 0x80)
  2111. ** The name property of hooks is deprecated.
  2112. Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
  2113. You can emulate this feature by using object properties.
  2114. ** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
  2115. SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
  2116. SCM_NVECTORP
  2117. These macros will be removed in a future release of Guile.
  2118. ** The following types, functions and macros from numbers.h are deprecated:
  2119. scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
  2120. SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
  2121. ** Port internals: the rw_random variable in the scm_port structure
  2122. must be set to non-zero in any random access port. In recent Guile
  2123. releases it was only set for bidirectional random-access ports.
  2124. ** Port internals: the seek ptob procedure is now responsible for
  2125. resetting the buffers if required. The change was made so that in the
  2126. special case of reading the current position (i.e., seek p 0 SEEK_CUR)
  2127. the fport and strport ptobs can avoid resetting the buffers,
  2128. in particular to avoid discarding unread chars. An existing port
  2129. type can be fixed by adding something like the following to the
  2130. beginning of the ptob seek procedure:
  2131. if (pt->rw_active == SCM_PORT_READ)
  2132. scm_end_input (object);
  2133. else if (pt->rw_active == SCM_PORT_WRITE)
  2134. ptob->flush (object);
  2135. although to actually avoid resetting the buffers and discard unread
  2136. chars requires further hacking that depends on the characteristics
  2137. of the ptob.
  2138. ** Deprecated functions: scm_fseek, scm_tag
  2139. These functions are no longer used and will be removed in a future version.
  2140. ** The scm_sysmissing procedure is no longer used in libguile.
  2141. Unless it turns out to be unexpectedly useful to somebody, it will be
  2142. removed in a future version.
  2143. ** The format of error message strings has changed
  2144. The two C procedures: scm_display_error and scm_error, as well as the
  2145. primitive `scm-error', now use scm_simple_format to do their work.
  2146. This means that the message strings of all code must be updated to use
  2147. ~A where %s was used before, and ~S where %S was used before.
  2148. During the period when there still are a lot of old Guiles out there,
  2149. you might want to support both old and new versions of Guile.
  2150. There are basically two methods to achieve this. Both methods use
  2151. autoconf. Put
  2152. AC_CHECK_FUNCS(scm_simple_format)
  2153. in your configure.in.
  2154. Method 1: Use the string concatenation features of ANSI C's
  2155. preprocessor.
  2156. In C:
  2157. #ifdef HAVE_SCM_SIMPLE_FORMAT
  2158. #define FMT_S "~S"
  2159. #else
  2160. #define FMT_S "%S"
  2161. #endif
  2162. Then represent each of your error messages using a preprocessor macro:
  2163. #define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
  2164. In Scheme:
  2165. (define fmt-s (if (defined? 'simple-format) "~S" "%S"))
  2166. (define make-message string-append)
  2167. (define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
  2168. Method 2: Use the oldfmt function found in doc/oldfmt.c.
  2169. In C:
  2170. scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
  2171. ...);
  2172. In Scheme:
  2173. (scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
  2174. ...)
  2175. ** Deprecated: coop_mutex_init, coop_condition_variable_init
  2176. Don't use the functions coop_mutex_init and
  2177. coop_condition_variable_init. They will change.
  2178. Use scm_mutex_init and scm_cond_init instead.
  2179. ** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
  2180. `scm_cond_timedwait' atomically unlocks MUTEX and waits on
  2181. COND, as `scm_cond_wait' does, but it also bounds the duration
  2182. of the wait. If COND has not been signaled before time ABSTIME,
  2183. the mutex MUTEX is re-acquired and `scm_cond_timedwait'
  2184. returns the error code `ETIMEDOUT'.
  2185. The ABSTIME parameter specifies an absolute time, with the same
  2186. origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
  2187. to 00:00:00 GMT, January 1, 1970.
  2188. ** New function: scm_cond_broadcast (scm_cond_t *COND)
  2189. `scm_cond_broadcast' restarts all the threads that are waiting
  2190. on the condition variable COND. Nothing happens if no threads are
  2191. waiting on COND.
  2192. ** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
  2193. `scm_key_create' allocates a new TSD key. The key is stored in
  2194. the location pointed to by KEY. There is no limit on the number
  2195. of keys allocated at a given time. The value initially associated
  2196. with the returned key is `NULL' in all currently executing threads.
  2197. The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
  2198. function associated with the key. When a thread terminates,
  2199. DESTR_FUNCTION is called on the value associated with the key in
  2200. that thread. The DESTR_FUNCTION is not called if a key is deleted
  2201. with `scm_key_delete' or a value is changed with
  2202. `scm_setspecific'. The order in which destructor functions are
  2203. called at thread termination time is unspecified.
  2204. Destructors are not yet implemented.
  2205. ** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
  2206. `scm_setspecific' changes the value associated with KEY in the
  2207. calling thread, storing the given POINTER instead.
  2208. ** New function: scm_getspecific (scm_key_t KEY)
  2209. `scm_getspecific' returns the value currently associated with
  2210. KEY in the calling thread.
  2211. ** New function: scm_key_delete (scm_key_t KEY)
  2212. `scm_key_delete' deallocates a TSD key. It does not check
  2213. whether non-`NULL' values are associated with that key in the
  2214. currently executing threads, nor call the destructor function
  2215. associated with the key.
  2216. ** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
  2217. Initialize a C level hook HOOK with associated HOOK_DATA and type
  2218. TYPE. (See scm_c_hook_run ().)
  2219. ** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
  2220. Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
  2221. is true, add it last, otherwise first. The same FUNC can be added
  2222. multiple times if FUNC_DATA differ and vice versa.
  2223. ** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
  2224. Remove hook function FUNC with associated FUNC_DATA from HOOK. A
  2225. function is only removed if both FUNC and FUNC_DATA matches.
  2226. ** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
  2227. Run hook HOOK passing DATA to the hook functions.
  2228. If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
  2229. returned is undefined.
  2230. If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
  2231. returns a non-NULL value. This value is returned as the result of
  2232. scm_c_hook_run. If all functions return NULL, NULL is returned.
  2233. If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
  2234. returns a NULL value, and NULL is returned. If all functions returns
  2235. a non-NULL value, the last value is returned.
  2236. ** New C level GC hooks
  2237. Five new C level hooks has been added to the garbage collector.
  2238. scm_before_gc_c_hook
  2239. scm_after_gc_c_hook
  2240. are run before locking and after unlocking the heap. The system is
  2241. thus in a mode where evaluation can take place. (Except that
  2242. scm_before_gc_c_hook must not allocate new cells.)
  2243. scm_before_mark_c_hook
  2244. scm_before_sweep_c_hook
  2245. scm_after_sweep_c_hook
  2246. are run when the heap is locked. These are intended for extension of
  2247. the GC in a modular fashion. Examples are the weaks and guardians
  2248. modules.
  2249. ** Way for application to customize GC parameters
  2250. The application can set up other default values for the GC heap
  2251. allocation parameters
  2252. GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
  2253. GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
  2254. GUILE_MAX_SEGMENT_SIZE,
  2255. by setting
  2256. scm_default_init_heap_size_1, scm_default_min_yield_1,
  2257. scm_default_init_heap_size_2, scm_default_min_yield_2,
  2258. scm_default_max_segment_size
  2259. respectively before callong scm_boot_guile.
  2260. (See entry "New environment variables ..." in section
  2261. "Changes to the stand-alone interpreter" above.)
  2262. ** scm_protect_object/scm_unprotect_object now nest
  2263. This means that you can call scm_protect_object multiple times on an
  2264. object and count on the object being protected until
  2265. scm_unprotect_object has been call the same number of times.
  2266. The functions also have better time complexity.
  2267. Still, it is usually possible to structure the application in a way
  2268. that you don't need to use these functions. For example, if you use a
  2269. protected standard Guile list to keep track of live objects rather
  2270. than some custom data type, objects will die a natural death when they
  2271. are no longer needed.
  2272. ** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
  2273. Guile does not provide the float representation for inexact real numbers any
  2274. more. Now, only doubles are used to represent inexact real numbers. Further,
  2275. the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
  2276. and scm_tc16_complex, respectively.
  2277. ** Removed deprecated type scm_smobfuns
  2278. ** Removed deprecated function scm_newsmob
  2279. ** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
  2280. There is an ongoing discussion among the developers whether to
  2281. deprecate `scm_make_smob_type_mfpe' or not. Please use the current
  2282. standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
  2283. until this issue has been settled.
  2284. ** Removed deprecated type tag scm_tc16_kw
  2285. ** Added type tag scm_tc16_keyword
  2286. (This was introduced already in release 1.3.4 but was not documented
  2287. until now.)
  2288. ** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
  2289. * Changes to system call interfaces:
  2290. ** The "select" procedure now tests port buffers for the ability to
  2291. provide input or accept output. Previously only the underlying file
  2292. descriptors were checked.
  2293. ** New variable PIPE_BUF: the maximum number of bytes that can be
  2294. atomically written to a pipe.
  2295. ** If a facility is not available on the system when Guile is
  2296. compiled, the corresponding primitive procedure will not be defined.
  2297. Previously it would have been defined but would throw a system-error
  2298. exception if called. Exception handlers which catch this case may
  2299. need minor modification: an error will be thrown with key
  2300. 'unbound-variable instead of 'system-error. Alternatively it's
  2301. now possible to use `defined?' to check whether the facility is
  2302. available.
  2303. ** Procedures which depend on the timezone should now give the correct
  2304. result on systems which cache the TZ environment variable, even if TZ
  2305. is changed without calling tzset.
  2306. * Changes to the networking interfaces:
  2307. ** New functions: htons, ntohs, htonl, ntohl: for converting short and
  2308. long integers between network and host format. For now, it's not
  2309. particularly convenient to do this kind of thing, but consider:
  2310. (define write-network-long
  2311. (lambda (value port)
  2312. (let ((v (make-uniform-vector 1 1 0)))
  2313. (uniform-vector-set! v 0 (htonl value))
  2314. (uniform-vector-write v port))))
  2315. (define read-network-long
  2316. (lambda (port)
  2317. (let ((v (make-uniform-vector 1 1 0)))
  2318. (uniform-vector-read! v port)
  2319. (ntohl (uniform-vector-ref v 0)))))
  2320. ** If inet-aton fails, it now throws an error with key 'misc-error
  2321. instead of 'system-error, since errno is not relevant.
  2322. ** Certain gethostbyname/gethostbyaddr failures now throw errors with
  2323. specific keys instead of 'system-error. The latter is inappropriate
  2324. since errno will not have been set. The keys are:
  2325. 'host-not-found, 'try-again, 'no-recovery and 'no-data.
  2326. ** sethostent, setnetent, setprotoent, setservent: now take an
  2327. optional argument STAYOPEN, which specifies whether the database
  2328. remains open after a database entry is accessed randomly (e.g., using
  2329. gethostbyname for the hosts database.) The default is #f. Previously
  2330. #t was always used.
  2331. Changes since Guile 1.3.2:
  2332. * Changes to the stand-alone interpreter
  2333. ** Debugger
  2334. An initial version of the Guile debugger written by Chris Hanson has
  2335. been added. The debugger is still under development but is included
  2336. in the distribution anyway since it is already quite useful.
  2337. Type
  2338. (debug)
  2339. after an error to enter the debugger. Type `help' inside the debugger
  2340. for a description of available commands.
  2341. If you prefer to have stack frames numbered and printed in
  2342. anti-chronological order and prefer up in the stack to be down on the
  2343. screen as is the case in gdb, you can put
  2344. (debug-enable 'backwards)
  2345. in your .guile startup file. (However, this means that Guile can't
  2346. use indentation to indicate stack level.)
  2347. The debugger is autoloaded into Guile at the first use.
  2348. ** Further enhancements to backtraces
  2349. There is a new debug option `width' which controls the maximum width
  2350. on the screen of printed stack frames. Fancy printing parameters
  2351. ("level" and "length" as in Common LISP) are adaptively adjusted for
  2352. each stack frame to give maximum information while still fitting
  2353. within the bounds. If the stack frame can't be made to fit by
  2354. adjusting parameters, it is simply cut off at the end. This is marked
  2355. with a `$'.
  2356. ** Some modules are now only loaded when the repl is started
  2357. The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
  2358. regex) are now loaded into (guile-user) only if the repl has been
  2359. started. The effect is that the startup time for scripts has been
  2360. reduced to 30% of what it was previously.
  2361. Correctly written scripts load the modules they require at the top of
  2362. the file and should not be affected by this change.
  2363. ** Hooks are now represented as smobs
  2364. * Changes to Scheme functions and syntax
  2365. ** Readline support has changed again.
  2366. The old (readline-activator) module is gone. Use (ice-9 readline)
  2367. instead, which now contains all readline functionality. So the code
  2368. to activate readline is now
  2369. (use-modules (ice-9 readline))
  2370. (activate-readline)
  2371. This should work at any time, including from the guile prompt.
  2372. To avoid confusion about the terms of Guile's license, please only
  2373. enable readline for your personal use; please don't make it the
  2374. default for others. Here is why we make this rather odd-sounding
  2375. request:
  2376. Guile is normally licensed under a weakened form of the GNU General
  2377. Public License, which allows you to link code with Guile without
  2378. placing that code under the GPL. This exception is important to some
  2379. people.
  2380. However, since readline is distributed under the GNU General Public
  2381. License, when you link Guile with readline, either statically or
  2382. dynamically, you effectively change Guile's license to the strict GPL.
  2383. Whenever you link any strictly GPL'd code into Guile, uses of Guile
  2384. which are normally permitted become forbidden. This is a rather
  2385. non-obvious consequence of the licensing terms.
  2386. So, to make sure things remain clear, please let people choose for
  2387. themselves whether to link GPL'd libraries like readline with Guile.
  2388. ** regexp-substitute/global has changed slightly, but incompatibly.
  2389. If you include a function in the item list, the string of the match
  2390. object it receives is the same string passed to
  2391. regexp-substitute/global, not some suffix of that string.
  2392. Correspondingly, the match's positions are relative to the entire
  2393. string, not the suffix.
  2394. If the regexp can match the empty string, the way matches are chosen
  2395. from the string has changed. regexp-substitute/global recognizes the
  2396. same set of matches that list-matches does; see below.
  2397. ** New function: list-matches REGEXP STRING [FLAGS]
  2398. Return a list of match objects, one for every non-overlapping, maximal
  2399. match of REGEXP in STRING. The matches appear in left-to-right order.
  2400. list-matches only reports matches of the empty string if there are no
  2401. other matches which begin on, end at, or include the empty match's
  2402. position.
  2403. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  2404. ** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
  2405. For each match of REGEXP in STRING, apply PROC to the match object,
  2406. and the last value PROC returned, or INIT for the first call. Return
  2407. the last value returned by PROC. We apply PROC to the matches as they
  2408. appear from left to right.
  2409. This function recognizes matches according to the same criteria as
  2410. list-matches.
  2411. Thus, you could define list-matches like this:
  2412. (define (list-matches regexp string . flags)
  2413. (reverse! (apply fold-matches regexp string '() cons flags)))
  2414. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  2415. ** Hooks
  2416. *** New function: hook? OBJ
  2417. Return #t if OBJ is a hook, otherwise #f.
  2418. *** New function: make-hook-with-name NAME [ARITY]
  2419. Return a hook with name NAME and arity ARITY. The default value for
  2420. ARITY is 0. The only effect of NAME is that it will appear when the
  2421. hook object is printed to ease debugging.
  2422. *** New function: hook-empty? HOOK
  2423. Return #t if HOOK doesn't contain any procedures, otherwise #f.
  2424. *** New function: hook->list HOOK
  2425. Return a list of the procedures that are called when run-hook is
  2426. applied to HOOK.
  2427. ** `map' signals an error if its argument lists are not all the same length.
  2428. This is the behavior required by R5RS, so this change is really a bug
  2429. fix. But it seems to affect a lot of people's code, so we're
  2430. mentioning it here anyway.
  2431. ** Print-state handling has been made more transparent
  2432. Under certain circumstances, ports are represented as a port with an
  2433. associated print state. Earlier, this pair was represented as a pair
  2434. (see "Some magic has been added to the printer" below). It is now
  2435. indistinguishable (almost; see `get-print-state') from a port on the
  2436. user level.
  2437. *** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
  2438. Return a new port with the associated print state PRINT-STATE.
  2439. *** New function: get-print-state OUTPUT-PORT
  2440. Return the print state associated with this port if it exists,
  2441. otherwise return #f.
  2442. *** New function: directory-stream? OBJECT
  2443. Returns true iff OBJECT is a directory stream --- the sort of object
  2444. returned by `opendir'.
  2445. ** New function: using-readline?
  2446. Return #t if readline is in use in the current repl.
  2447. ** structs will be removed in 1.4
  2448. Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
  2449. and use GOOPS objects as the fundamental record type.
  2450. * Changes to the scm_ interface
  2451. ** structs will be removed in 1.4
  2452. The entire current struct interface (struct.c, struct.h) will be
  2453. replaced in Guile 1.4. We will merge GOOPS into libguile and use
  2454. GOOPS objects as the fundamental record type.
  2455. ** The internal representation of subr's has changed
  2456. Instead of giving a hint to the subr name, the CAR field of the subr
  2457. now contains an index to a subr entry in scm_subr_table.
  2458. *** New variable: scm_subr_table
  2459. An array of subr entries. A subr entry contains the name, properties
  2460. and documentation associated with the subr. The properties and
  2461. documentation slots are not yet used.
  2462. ** A new scheme for "forwarding" calls to a builtin to a generic function
  2463. It is now possible to extend the functionality of some Guile
  2464. primitives by letting them defer a call to a GOOPS generic function on
  2465. argument mismatch. This means that there is no loss of efficiency in
  2466. normal evaluation.
  2467. Example:
  2468. (use-modules (oop goops)) ; Must be GOOPS version 0.2.
  2469. (define-method + ((x <string>) (y <string>))
  2470. (string-append x y))
  2471. + will still be as efficient as usual in numerical calculations, but
  2472. can also be used for concatenating strings.
  2473. Who will be the first one to extend Guile's numerical tower to
  2474. rationals? :) [OK, there a few other things to fix before this can
  2475. be made in a clean way.]
  2476. *** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
  2477. New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
  2478. New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
  2479. These do the same job as SCM_PROC and SCM_PROC1, but they also define
  2480. a variable GENERIC which can be used by the dispatch macros below.
  2481. [This is experimental code which may change soon.]
  2482. *** New macros for forwarding control to a generic on arg type error
  2483. New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
  2484. New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
  2485. These correspond to the scm_wta function call, and have the same
  2486. behaviour until the user has called the GOOPS primitive
  2487. `enable-primitive-generic!'. After that, these macros will apply the
  2488. generic function GENERIC to the argument(s) instead of calling
  2489. scm_wta.
  2490. [This is experimental code which may change soon.]
  2491. *** New macros for argument testing with generic dispatch
  2492. New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
  2493. New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
  2494. These correspond to the SCM_ASSERT macro, but will defer control to
  2495. GENERIC on error after `enable-primitive-generic!' has been called.
  2496. [This is experimental code which may change soon.]
  2497. ** New function: SCM scm_eval_body (SCM body, SCM env)
  2498. Evaluates the body of a special form.
  2499. ** The internal representation of struct's has changed
  2500. Previously, four slots were allocated for the procedure(s) of entities
  2501. and operators. The motivation for this representation had to do with
  2502. the structure of the evaluator, the wish to support tail-recursive
  2503. generic functions, and efficiency. Since the generic function
  2504. dispatch mechanism has changed, there is no longer a need for such an
  2505. expensive representation, and the representation has been simplified.
  2506. This should not make any difference for most users.
  2507. ** GOOPS support has been cleaned up.
  2508. Some code has been moved from eval.c to objects.c and code in both of
  2509. these compilation units has been cleaned up and better structured.
  2510. *** New functions for applying generic functions
  2511. New function: SCM scm_apply_generic (GENERIC, ARGS)
  2512. New function: SCM scm_call_generic_0 (GENERIC)
  2513. New function: SCM scm_call_generic_1 (GENERIC, ARG1)
  2514. New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
  2515. New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
  2516. ** Deprecated function: scm_make_named_hook
  2517. It is now replaced by:
  2518. ** New function: SCM scm_create_hook (const char *name, int arity)
  2519. Creates a hook in the same way as make-hook above but also
  2520. binds a variable named NAME to it.
  2521. This is the typical way of creating a hook from C code.
  2522. Currently, the variable is created in the "current" module.
  2523. This might change when we get the new module system.
  2524. [The behaviour is identical to scm_make_named_hook.]
  2525. Changes since Guile 1.3:
  2526. * Changes to mailing lists
  2527. ** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
  2528. See the README file to find current addresses for all the Guile
  2529. mailing lists.
  2530. * Changes to the distribution
  2531. ** Readline support is no longer included with Guile by default.
  2532. Based on the different license terms of Guile and Readline, we
  2533. concluded that Guile should not *by default* cause the linking of
  2534. Readline into an application program. Readline support is now offered
  2535. as a separate module, which is linked into an application only when
  2536. you explicitly specify it.
  2537. Although Guile is GNU software, its distribution terms add a special
  2538. exception to the usual GNU General Public License (GPL). Guile's
  2539. license includes a clause that allows you to link Guile with non-free
  2540. programs. We add this exception so as not to put Guile at a
  2541. disadvantage vis-a-vis other extensibility packages that support other
  2542. languages.
  2543. In contrast, the GNU Readline library is distributed under the GNU
  2544. General Public License pure and simple. This means that you may not
  2545. link Readline, even dynamically, into an application unless it is
  2546. distributed under a free software license that is compatible the GPL.
  2547. Because of this difference in distribution terms, an application that
  2548. can use Guile may not be able to use Readline. Now users will be
  2549. explicitly offered two independent decisions about the use of these
  2550. two packages.
  2551. You can activate the readline support by issuing
  2552. (use-modules (readline-activator))
  2553. (activate-readline)
  2554. from your ".guile" file, for example.
  2555. * Changes to the stand-alone interpreter
  2556. ** All builtins now print as primitives.
  2557. Previously builtin procedures not belonging to the fundamental subr
  2558. types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
  2559. Now, they print as #<primitive-procedure NAME>.
  2560. ** Backtraces slightly more intelligible.
  2561. gsubr-apply and macro transformer application frames no longer appear
  2562. in backtraces.
  2563. * Changes to Scheme functions and syntax
  2564. ** Guile now correctly handles internal defines by rewriting them into
  2565. their equivalent letrec. Previously, internal defines would
  2566. incrementally add to the innermost environment, without checking
  2567. whether the restrictions specified in RnRS were met. This lead to the
  2568. correct behaviour when these restriction actually were met, but didn't
  2569. catch all illegal uses. Such an illegal use could lead to crashes of
  2570. the Guile interpreter or or other unwanted results. An example of
  2571. incorrect internal defines that made Guile behave erratically:
  2572. (let ()
  2573. (define a 1)
  2574. (define (b) a)
  2575. (define c (1+ (b)))
  2576. (define d 3)
  2577. (b))
  2578. => 2
  2579. The problem with this example is that the definition of `c' uses the
  2580. value of `b' directly. This confuses the meoization machine of Guile
  2581. so that the second call of `b' (this time in a larger environment that
  2582. also contains bindings for `c' and `d') refers to the binding of `c'
  2583. instead of `a'. You could also make Guile crash with a variation on
  2584. this theme:
  2585. (define (foo flag)
  2586. (define a 1)
  2587. (define (b flag) (if flag a 1))
  2588. (define c (1+ (b flag)))
  2589. (define d 3)
  2590. (b #t))
  2591. (foo #f)
  2592. (foo #t)
  2593. From now on, Guile will issue an `Unbound variable: b' error message
  2594. for both examples.
  2595. ** Hooks
  2596. A hook contains a list of functions which should be called on
  2597. particular occasions in an existing program. Hooks are used for
  2598. customization.
  2599. A window manager might have a hook before-window-map-hook. The window
  2600. manager uses the function run-hooks to call all functions stored in
  2601. before-window-map-hook each time a window is mapped. The user can
  2602. store functions in the hook using add-hook!.
  2603. In Guile, hooks are first class objects.
  2604. *** New function: make-hook [N_ARGS]
  2605. Return a hook for hook functions which can take N_ARGS arguments.
  2606. The default value for N_ARGS is 0.
  2607. (See also scm_make_named_hook below.)
  2608. *** New function: add-hook! HOOK PROC [APPEND_P]
  2609. Put PROC at the beginning of the list of functions stored in HOOK.
  2610. If APPEND_P is supplied, and non-false, put PROC at the end instead.
  2611. PROC must be able to take the number of arguments specified when the
  2612. hook was created.
  2613. If PROC already exists in HOOK, then remove it first.
  2614. *** New function: remove-hook! HOOK PROC
  2615. Remove PROC from the list of functions in HOOK.
  2616. *** New function: reset-hook! HOOK
  2617. Clear the list of hook functions stored in HOOK.
  2618. *** New function: run-hook HOOK ARG1 ...
  2619. Run all hook functions stored in HOOK with arguments ARG1 ... .
  2620. The number of arguments supplied must correspond to the number given
  2621. when the hook was created.
  2622. ** The function `dynamic-link' now takes optional keyword arguments.
  2623. The only keyword argument that is currently defined is `:global
  2624. BOOL'. With it, you can control whether the shared library will be
  2625. linked in global mode or not. In global mode, the symbols from the
  2626. linked library can be used to resolve references from other
  2627. dynamically linked libraries. In non-global mode, the linked
  2628. library is essentially invisible and can only be accessed via
  2629. `dynamic-func', etc. The default is now to link in global mode.
  2630. Previously, the default has been non-global mode.
  2631. The `#:global' keyword is only effective on platforms that support
  2632. the dlopen family of functions.
  2633. ** New function `provided?'
  2634. - Function: provided? FEATURE
  2635. Return true iff FEATURE is supported by this installation of
  2636. Guile. FEATURE must be a symbol naming a feature; the global
  2637. variable `*features*' is a list of available features.
  2638. ** Changes to the module (ice-9 expect):
  2639. *** The expect-strings macro now matches `$' in a regular expression
  2640. only at a line-break or end-of-file by default. Previously it would
  2641. match the end of the string accumulated so far. The old behaviour
  2642. can be obtained by setting the variable `expect-strings-exec-flags'
  2643. to 0.
  2644. *** The expect-strings macro now uses a variable `expect-strings-exec-flags'
  2645. for the regexp-exec flags. If `regexp/noteol' is included, then `$'
  2646. in a regular expression will still match before a line-break or
  2647. end-of-file. The default is `regexp/noteol'.
  2648. *** The expect-strings macro now uses a variable
  2649. `expect-strings-compile-flags' for the flags to be supplied to
  2650. `make-regexp'. The default is `regexp/newline', which was previously
  2651. hard-coded.
  2652. *** The expect macro now supplies two arguments to a match procedure:
  2653. the current accumulated string and a flag to indicate whether
  2654. end-of-file has been reached. Previously only the string was supplied.
  2655. If end-of-file is reached, the match procedure will be called an
  2656. additional time with the same accumulated string as the previous call
  2657. but with the flag set.
  2658. ** New module (ice-9 format), implementing the Common Lisp `format' function.
  2659. This code, and the documentation for it that appears here, was
  2660. borrowed from SLIB, with minor adaptations for Guile.
  2661. - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
  2662. An almost complete implementation of Common LISP format description
  2663. according to the CL reference book `Common LISP' from Guy L.
  2664. Steele, Digital Press. Backward compatible to most of the
  2665. available Scheme format implementations.
  2666. Returns `#t', `#f' or a string; has side effect of printing
  2667. according to FORMAT-STRING. If DESTINATION is `#t', the output is
  2668. to the current output port and `#t' is returned. If DESTINATION
  2669. is `#f', a formatted string is returned as the result of the call.
  2670. NEW: If DESTINATION is a string, DESTINATION is regarded as the
  2671. format string; FORMAT-STRING is then the first argument and the
  2672. output is returned as a string. If DESTINATION is a number, the
  2673. output is to the current error port if available by the
  2674. implementation. Otherwise DESTINATION must be an output port and
  2675. `#t' is returned.
  2676. FORMAT-STRING must be a string. In case of a formatting error
  2677. format returns `#f' and prints a message on the current output or
  2678. error port. Characters are output as if the string were output by
  2679. the `display' function with the exception of those prefixed by a
  2680. tilde (~). For a detailed description of the FORMAT-STRING syntax
  2681. please consult a Common LISP format reference manual. For a test
  2682. suite to verify this format implementation load `formatst.scm'.
  2683. Please send bug reports to `lutzeb@cs.tu-berlin.de'.
  2684. Note: `format' is not reentrant, i.e. only one `format'-call may
  2685. be executed at a time.
  2686. *** Format Specification (Format version 3.0)
  2687. Please consult a Common LISP format reference manual for a detailed
  2688. description of the format string syntax. For a demonstration of the
  2689. implemented directives see `formatst.scm'.
  2690. This implementation supports directive parameters and modifiers (`:'
  2691. and `@' characters). Multiple parameters must be separated by a comma
  2692. (`,'). Parameters can be numerical parameters (positive or negative),
  2693. character parameters (prefixed by a quote character (`''), variable
  2694. parameters (`v'), number of rest arguments parameter (`#'), empty and
  2695. default parameters. Directive characters are case independent. The
  2696. general form of a directive is:
  2697. DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
  2698. DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
  2699. *** Implemented CL Format Control Directives
  2700. Documentation syntax: Uppercase characters represent the
  2701. corresponding control directive characters. Lowercase characters
  2702. represent control directive parameter descriptions.
  2703. `~A'
  2704. Any (print as `display' does).
  2705. `~@A'
  2706. left pad.
  2707. `~MINCOL,COLINC,MINPAD,PADCHARA'
  2708. full padding.
  2709. `~S'
  2710. S-expression (print as `write' does).
  2711. `~@S'
  2712. left pad.
  2713. `~MINCOL,COLINC,MINPAD,PADCHARS'
  2714. full padding.
  2715. `~D'
  2716. Decimal.
  2717. `~@D'
  2718. print number sign always.
  2719. `~:D'
  2720. print comma separated.
  2721. `~MINCOL,PADCHAR,COMMACHARD'
  2722. padding.
  2723. `~X'
  2724. Hexadecimal.
  2725. `~@X'
  2726. print number sign always.
  2727. `~:X'
  2728. print comma separated.
  2729. `~MINCOL,PADCHAR,COMMACHARX'
  2730. padding.
  2731. `~O'
  2732. Octal.
  2733. `~@O'
  2734. print number sign always.
  2735. `~:O'
  2736. print comma separated.
  2737. `~MINCOL,PADCHAR,COMMACHARO'
  2738. padding.
  2739. `~B'
  2740. Binary.
  2741. `~@B'
  2742. print number sign always.
  2743. `~:B'
  2744. print comma separated.
  2745. `~MINCOL,PADCHAR,COMMACHARB'
  2746. padding.
  2747. `~NR'
  2748. Radix N.
  2749. `~N,MINCOL,PADCHAR,COMMACHARR'
  2750. padding.
  2751. `~@R'
  2752. print a number as a Roman numeral.
  2753. `~:@R'
  2754. print a number as an "old fashioned" Roman numeral.
  2755. `~:R'
  2756. print a number as an ordinal English number.
  2757. `~:@R'
  2758. print a number as a cardinal English number.
  2759. `~P'
  2760. Plural.
  2761. `~@P'
  2762. prints `y' and `ies'.
  2763. `~:P'
  2764. as `~P but jumps 1 argument backward.'
  2765. `~:@P'
  2766. as `~@P but jumps 1 argument backward.'
  2767. `~C'
  2768. Character.
  2769. `~@C'
  2770. prints a character as the reader can understand it (i.e. `#\'
  2771. prefixing).
  2772. `~:C'
  2773. prints a character as emacs does (eg. `^C' for ASCII 03).
  2774. `~F'
  2775. Fixed-format floating-point (prints a flonum like MMM.NNN).
  2776. `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
  2777. `~@F'
  2778. If the number is positive a plus sign is printed.
  2779. `~E'
  2780. Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
  2781. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
  2782. `~@E'
  2783. If the number is positive a plus sign is printed.
  2784. `~G'
  2785. General floating-point (prints a flonum either fixed or
  2786. exponential).
  2787. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
  2788. `~@G'
  2789. If the number is positive a plus sign is printed.
  2790. `~$'
  2791. Dollars floating-point (prints a flonum in fixed with signs
  2792. separated).
  2793. `~DIGITS,SCALE,WIDTH,PADCHAR$'
  2794. `~@$'
  2795. If the number is positive a plus sign is printed.
  2796. `~:@$'
  2797. A sign is always printed and appears before the padding.
  2798. `~:$'
  2799. The sign appears before the padding.
  2800. `~%'
  2801. Newline.
  2802. `~N%'
  2803. print N newlines.
  2804. `~&'
  2805. print newline if not at the beginning of the output line.
  2806. `~N&'
  2807. prints `~&' and then N-1 newlines.
  2808. `~|'
  2809. Page Separator.
  2810. `~N|'
  2811. print N page separators.
  2812. `~~'
  2813. Tilde.
  2814. `~N~'
  2815. print N tildes.
  2816. `~'<newline>
  2817. Continuation Line.
  2818. `~:'<newline>
  2819. newline is ignored, white space left.
  2820. `~@'<newline>
  2821. newline is left, white space ignored.
  2822. `~T'
  2823. Tabulation.
  2824. `~@T'
  2825. relative tabulation.
  2826. `~COLNUM,COLINCT'
  2827. full tabulation.
  2828. `~?'
  2829. Indirection (expects indirect arguments as a list).
  2830. `~@?'
  2831. extracts indirect arguments from format arguments.
  2832. `~(STR~)'
  2833. Case conversion (converts by `string-downcase').
  2834. `~:(STR~)'
  2835. converts by `string-capitalize'.
  2836. `~@(STR~)'
  2837. converts by `string-capitalize-first'.
  2838. `~:@(STR~)'
  2839. converts by `string-upcase'.
  2840. `~*'
  2841. Argument Jumping (jumps 1 argument forward).
  2842. `~N*'
  2843. jumps N arguments forward.
  2844. `~:*'
  2845. jumps 1 argument backward.
  2846. `~N:*'
  2847. jumps N arguments backward.
  2848. `~@*'
  2849. jumps to the 0th argument.
  2850. `~N@*'
  2851. jumps to the Nth argument (beginning from 0)
  2852. `~[STR0~;STR1~;...~;STRN~]'
  2853. Conditional Expression (numerical clause conditional).
  2854. `~N['
  2855. take argument from N.
  2856. `~@['
  2857. true test conditional.
  2858. `~:['
  2859. if-else-then conditional.
  2860. `~;'
  2861. clause separator.
  2862. `~:;'
  2863. default clause follows.
  2864. `~{STR~}'
  2865. Iteration (args come from the next argument (a list)).
  2866. `~N{'
  2867. at most N iterations.
  2868. `~:{'
  2869. args from next arg (a list of lists).
  2870. `~@{'
  2871. args from the rest of arguments.
  2872. `~:@{'
  2873. args from the rest args (lists).
  2874. `~^'
  2875. Up and out.
  2876. `~N^'
  2877. aborts if N = 0
  2878. `~N,M^'
  2879. aborts if N = M
  2880. `~N,M,K^'
  2881. aborts if N <= M <= K
  2882. *** Not Implemented CL Format Control Directives
  2883. `~:A'
  2884. print `#f' as an empty list (see below).
  2885. `~:S'
  2886. print `#f' as an empty list (see below).
  2887. `~<~>'
  2888. Justification.
  2889. `~:^'
  2890. (sorry I don't understand its semantics completely)
  2891. *** Extended, Replaced and Additional Control Directives
  2892. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
  2893. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
  2894. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
  2895. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
  2896. `~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
  2897. COMMAWIDTH is the number of characters between two comma
  2898. characters.
  2899. `~I'
  2900. print a R4RS complex number as `~F~@Fi' with passed parameters for
  2901. `~F'.
  2902. `~Y'
  2903. Pretty print formatting of an argument for scheme code lists.
  2904. `~K'
  2905. Same as `~?.'
  2906. `~!'
  2907. Flushes the output if format DESTINATION is a port.
  2908. `~_'
  2909. Print a `#\space' character
  2910. `~N_'
  2911. print N `#\space' characters.
  2912. `~/'
  2913. Print a `#\tab' character
  2914. `~N/'
  2915. print N `#\tab' characters.
  2916. `~NC'
  2917. Takes N as an integer representation for a character. No arguments
  2918. are consumed. N is converted to a character by `integer->char'. N
  2919. must be a positive decimal number.
  2920. `~:S'
  2921. Print out readproof. Prints out internal objects represented as
  2922. `#<...>' as strings `"#<...>"' so that the format output can always
  2923. be processed by `read'.
  2924. `~:A'
  2925. Print out readproof. Prints out internal objects represented as
  2926. `#<...>' as strings `"#<...>"' so that the format output can always
  2927. be processed by `read'.
  2928. `~Q'
  2929. Prints information and a copyright notice on the format
  2930. implementation.
  2931. `~:Q'
  2932. prints format version.
  2933. `~F, ~E, ~G, ~$'
  2934. may also print number strings, i.e. passing a number as a string
  2935. and format it accordingly.
  2936. *** Configuration Variables
  2937. The format module exports some configuration variables to suit the
  2938. systems and users needs. There should be no modification necessary for
  2939. the configuration that comes with Guile. Format detects automatically
  2940. if the running scheme system implements floating point numbers and
  2941. complex numbers.
  2942. format:symbol-case-conv
  2943. Symbols are converted by `symbol->string' so the case type of the
  2944. printed symbols is implementation dependent.
  2945. `format:symbol-case-conv' is a one arg closure which is either
  2946. `#f' (no conversion), `string-upcase', `string-downcase' or
  2947. `string-capitalize'. (default `#f')
  2948. format:iobj-case-conv
  2949. As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
  2950. implementation internal objects. (default `#f')
  2951. format:expch
  2952. The character prefixing the exponent value in `~E' printing.
  2953. (default `#\E')
  2954. *** Compatibility With Other Format Implementations
  2955. SLIB format 2.x:
  2956. See `format.doc'.
  2957. SLIB format 1.4:
  2958. Downward compatible except for padding support and `~A', `~S',
  2959. `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
  2960. `printf' padding support which is completely replaced by the CL
  2961. `format' padding style.
  2962. MIT C-Scheme 7.1:
  2963. Downward compatible except for `~', which is not documented
  2964. (ignores all characters inside the format string up to a newline
  2965. character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
  2966. numerical and variable parameters and `:/@' modifiers in the CL
  2967. sense).
  2968. Elk 1.5/2.0:
  2969. Downward compatible except for `~A' and `~S' which print in
  2970. uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
  2971. directive parameters or modifiers)).
  2972. Scheme->C 01nov91:
  2973. Downward compatible except for an optional destination parameter:
  2974. S2C accepts a format call without a destination which returns a
  2975. formatted string. This is equivalent to a #f destination in S2C.
  2976. (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
  2977. parameters or modifiers)).
  2978. ** Changes to string-handling functions.
  2979. These functions were added to support the (ice-9 format) module, above.
  2980. *** New function: string-upcase STRING
  2981. *** New function: string-downcase STRING
  2982. These are non-destructive versions of the existing string-upcase! and
  2983. string-downcase! functions.
  2984. *** New function: string-capitalize! STRING
  2985. *** New function: string-capitalize STRING
  2986. These functions convert the first letter of each word in the string to
  2987. upper case. Thus:
  2988. (string-capitalize "howdy there")
  2989. => "Howdy There"
  2990. As with the other functions, string-capitalize! modifies the string in
  2991. place, while string-capitalize returns a modified copy of its argument.
  2992. *** New function: string-ci->symbol STRING
  2993. Return a symbol whose name is STRING, but having the same case as if
  2994. the symbol had be read by `read'.
  2995. Guile can be configured to be sensitive or insensitive to case
  2996. differences in Scheme identifiers. If Guile is case-insensitive, all
  2997. symbols are converted to lower case on input. The `string-ci->symbol'
  2998. function returns a symbol whose name in STRING, transformed as Guile
  2999. would if STRING were input.
  3000. *** New function: substring-move! STRING1 START END STRING2 START
  3001. Copy the substring of STRING1 from START (inclusive) to END
  3002. (exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
  3003. string, and the source and destination areas may overlap; in all
  3004. cases, the function behaves as if all the characters were copied
  3005. simultanously.
  3006. *** Extended functions: substring-move-left! substring-move-right!
  3007. These functions now correctly copy arbitrarily overlapping substrings;
  3008. they are both synonyms for substring-move!.
  3009. ** New module (ice-9 getopt-long), with the function `getopt-long'.
  3010. getopt-long is a function for parsing command-line arguments in a
  3011. manner consistent with other GNU programs.
  3012. (getopt-long ARGS GRAMMAR)
  3013. Parse the arguments ARGS according to the argument list grammar GRAMMAR.
  3014. ARGS should be a list of strings. Its first element should be the
  3015. name of the program; subsequent elements should be the arguments
  3016. that were passed to the program on the command line. The
  3017. `program-arguments' procedure returns a list of this form.
  3018. GRAMMAR is a list of the form:
  3019. ((OPTION (PROPERTY VALUE) ...) ...)
  3020. Each OPTION should be a symbol. `getopt-long' will accept a
  3021. command-line option named `--OPTION'.
  3022. Each option can have the following (PROPERTY VALUE) pairs:
  3023. (single-char CHAR) --- Accept `-CHAR' as a single-character
  3024. equivalent to `--OPTION'. This is how to specify traditional
  3025. Unix-style flags.
  3026. (required? BOOL) --- If BOOL is true, the option is required.
  3027. getopt-long will raise an error if it is not found in ARGS.
  3028. (value BOOL) --- If BOOL is #t, the option accepts a value; if
  3029. it is #f, it does not; and if it is the symbol
  3030. `optional', the option may appear in ARGS with or
  3031. without a value.
  3032. (predicate FUNC) --- If the option accepts a value (i.e. you
  3033. specified `(value #t)' for this option), then getopt
  3034. will apply FUNC to the value, and throw an exception
  3035. if it returns #f. FUNC should be a procedure which
  3036. accepts a string and returns a boolean value; you may
  3037. need to use quasiquotes to get it into GRAMMAR.
  3038. The (PROPERTY VALUE) pairs may occur in any order, but each
  3039. property may occur only once. By default, options do not have
  3040. single-character equivalents, are not required, and do not take
  3041. values.
  3042. In ARGS, single-character options may be combined, in the usual
  3043. Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
  3044. accepts values, then it must be the last option in the
  3045. combination; the value is the next argument. So, for example, using
  3046. the following grammar:
  3047. ((apples (single-char #\a))
  3048. (blimps (single-char #\b) (value #t))
  3049. (catalexis (single-char #\c) (value #t)))
  3050. the following argument lists would be acceptable:
  3051. ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
  3052. for "blimps" and "catalexis")
  3053. ("-ab" "bang" "-c" "couth") (same)
  3054. ("-ac" "couth" "-b" "bang") (same)
  3055. ("-abc" "couth" "bang") (an error, since `-b' is not the
  3056. last option in its combination)
  3057. If an option's value is optional, then `getopt-long' decides
  3058. whether it has a value by looking at what follows it in ARGS. If
  3059. the next element is a string, and it does not appear to be an
  3060. option itself, then that string is the option's value.
  3061. The value of a long option can appear as the next element in ARGS,
  3062. or it can follow the option name, separated by an `=' character.
  3063. Thus, using the same grammar as above, the following argument lists
  3064. are equivalent:
  3065. ("--apples" "Braeburn" "--blimps" "Goodyear")
  3066. ("--apples=Braeburn" "--blimps" "Goodyear")
  3067. ("--blimps" "Goodyear" "--apples=Braeburn")
  3068. If the option "--" appears in ARGS, argument parsing stops there;
  3069. subsequent arguments are returned as ordinary arguments, even if
  3070. they resemble options. So, in the argument list:
  3071. ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
  3072. `getopt-long' will recognize the `apples' option as having the
  3073. value "Granny Smith", but it will not recognize the `blimp'
  3074. option; it will return the strings "--blimp" and "Goodyear" as
  3075. ordinary argument strings.
  3076. The `getopt-long' function returns the parsed argument list as an
  3077. assocation list, mapping option names --- the symbols from GRAMMAR
  3078. --- onto their values, or #t if the option does not accept a value.
  3079. Unused options do not appear in the alist.
  3080. All arguments that are not the value of any option are returned
  3081. as a list, associated with the empty list.
  3082. `getopt-long' throws an exception if:
  3083. - it finds an unrecognized option in ARGS
  3084. - a required option is omitted
  3085. - an option that requires an argument doesn't get one
  3086. - an option that doesn't accept an argument does get one (this can
  3087. only happen using the long option `--opt=value' syntax)
  3088. - an option predicate fails
  3089. So, for example:
  3090. (define grammar
  3091. `((lockfile-dir (required? #t)
  3092. (value #t)
  3093. (single-char #\k)
  3094. (predicate ,file-is-directory?))
  3095. (verbose (required? #f)
  3096. (single-char #\v)
  3097. (value #f))
  3098. (x-includes (single-char #\x))
  3099. (rnet-server (single-char #\y)
  3100. (predicate ,string?))))
  3101. (getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
  3102. "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
  3103. grammar)
  3104. => ((() "foo1" "-fred" "foo2" "foo3")
  3105. (rnet-server . "lamprod")
  3106. (x-includes . "/usr/include")
  3107. (lockfile-dir . "/tmp")
  3108. (verbose . #t))
  3109. ** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
  3110. It will be removed in a few releases.
  3111. ** New syntax: lambda*
  3112. ** New syntax: define*
  3113. ** New syntax: define*-public
  3114. ** New syntax: defmacro*
  3115. ** New syntax: defmacro*-public
  3116. Guile now supports optional arguments.
  3117. `lambda*', `define*', `define*-public', `defmacro*' and
  3118. `defmacro*-public' are identical to the non-* versions except that
  3119. they use an extended type of parameter list that has the following BNF
  3120. syntax (parentheses are literal, square brackets indicate grouping,
  3121. and `*', `+' and `?' have the usual meaning):
  3122. ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
  3123. [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
  3124. [[#&rest identifier]|[. identifier]]? ) | [identifier]
  3125. ext-var-decl ::= identifier | ( identifier expression )
  3126. The semantics are best illustrated with the following documentation
  3127. and examples for `lambda*':
  3128. lambda* args . body
  3129. lambda extended for optional and keyword arguments
  3130. lambda* creates a procedure that takes optional arguments. These
  3131. are specified by putting them inside brackets at the end of the
  3132. paramater list, but before any dotted rest argument. For example,
  3133. (lambda* (a b #&optional c d . e) '())
  3134. creates a procedure with fixed arguments a and b, optional arguments c
  3135. and d, and rest argument e. If the optional arguments are omitted
  3136. in a call, the variables for them are unbound in the procedure. This
  3137. can be checked with the bound? macro.
  3138. lambda* can also take keyword arguments. For example, a procedure
  3139. defined like this:
  3140. (lambda* (#&key xyzzy larch) '())
  3141. can be called with any of the argument lists (#:xyzzy 11)
  3142. (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
  3143. are given as keywords are bound to values.
  3144. Optional and keyword arguments can also be given default values
  3145. which they take on when they are not present in a call, by giving a
  3146. two-item list in place of an optional argument, for example in:
  3147. (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
  3148. foo is a fixed argument, bar is an optional argument with default
  3149. value 42, and baz is a keyword argument with default value 73.
  3150. Default value expressions are not evaluated unless they are needed
  3151. and until the procedure is called.
  3152. lambda* now supports two more special parameter list keywords.
  3153. lambda*-defined procedures now throw an error by default if a
  3154. keyword other than one of those specified is found in the actual
  3155. passed arguments. However, specifying #&allow-other-keys
  3156. immediately after the kyword argument declarations restores the
  3157. previous behavior of ignoring unknown keywords. lambda* also now
  3158. guarantees that if the same keyword is passed more than once, the
  3159. last one passed is the one that takes effect. For example,
  3160. ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
  3161. #:heads 37 #:tails 42 #:heads 99)
  3162. would result in (99 47) being displayed.
  3163. #&rest is also now provided as a synonym for the dotted syntax rest
  3164. argument. The argument lists (a . b) and (a #&rest b) are equivalent in
  3165. all respects to lambda*. This is provided for more similarity to DSSSL,
  3166. MIT-Scheme and Kawa among others, as well as for refugees from other
  3167. Lisp dialects.
  3168. Further documentation may be found in the optargs.scm file itself.
  3169. The optional argument module also exports the macros `let-optional',
  3170. `let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
  3171. are not documented here because they may be removed in the future, but
  3172. full documentation is still available in optargs.scm.
  3173. ** New syntax: and-let*
  3174. Guile now supports the `and-let*' form, described in the draft SRFI-2.
  3175. Syntax: (land* (<clause> ...) <body> ...)
  3176. Each <clause> should have one of the following forms:
  3177. (<variable> <expression>)
  3178. (<expression>)
  3179. <bound-variable>
  3180. Each <variable> or <bound-variable> should be an identifier. Each
  3181. <expression> should be a valid expression. The <body> should be a
  3182. possibly empty sequence of expressions, like the <body> of a
  3183. lambda form.
  3184. Semantics: A LAND* expression is evaluated by evaluating the
  3185. <expression> or <bound-variable> of each of the <clause>s from
  3186. left to right. The value of the first <expression> or
  3187. <bound-variable> that evaluates to a false value is returned; the
  3188. remaining <expression>s and <bound-variable>s are not evaluated.
  3189. The <body> forms are evaluated iff all the <expression>s and
  3190. <bound-variable>s evaluate to true values.
  3191. The <expression>s and the <body> are evaluated in an environment
  3192. binding each <variable> of the preceding (<variable> <expression>)
  3193. clauses to the value of the <expression>. Later bindings
  3194. shadow earlier bindings.
  3195. Guile's and-let* macro was contributed by Michael Livshin.
  3196. ** New sorting functions
  3197. *** New function: sorted? SEQUENCE LESS?
  3198. Returns `#t' when the sequence argument is in non-decreasing order
  3199. according to LESS? (that is, there is no adjacent pair `... x y
  3200. ...' for which `(less? y x)').
  3201. Returns `#f' when the sequence contains at least one out-of-order
  3202. pair. It is an error if the sequence is neither a list nor a
  3203. vector.
  3204. *** New function: merge LIST1 LIST2 LESS?
  3205. LIST1 and LIST2 are sorted lists.
  3206. Returns the sorted list of all elements in LIST1 and LIST2.
  3207. Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
  3208. in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
  3209. and that a < b1 in LIST1. Then a < b1 < b2 in the result.
  3210. (Here "<" should read "comes before".)
  3211. *** New procedure: merge! LIST1 LIST2 LESS?
  3212. Merges two lists, re-using the pairs of LIST1 and LIST2 to build
  3213. the result. If the code is compiled, and LESS? constructs no new
  3214. pairs, no pairs at all will be allocated. The first pair of the
  3215. result will be either the first pair of LIST1 or the first pair of
  3216. LIST2.
  3217. *** New function: sort SEQUENCE LESS?
  3218. Accepts either a list or a vector, and returns a new sequence
  3219. which is sorted. The new sequence is the same type as the input.
  3220. Always `(sorted? (sort sequence less?) less?)'. The original
  3221. sequence is not altered in any way. The new sequence shares its
  3222. elements with the old one; no elements are copied.
  3223. *** New procedure: sort! SEQUENCE LESS
  3224. Returns its sorted result in the original boxes. No new storage is
  3225. allocated at all. Proper usage: (set! slist (sort! slist <))
  3226. *** New function: stable-sort SEQUENCE LESS?
  3227. Similar to `sort' but stable. That is, if "equal" elements are
  3228. ordered a < b in the original sequence, they will have the same order
  3229. in the result.
  3230. *** New function: stable-sort! SEQUENCE LESS?
  3231. Similar to `sort!' but stable.
  3232. Uses temporary storage when sorting vectors.
  3233. *** New functions: sort-list, sort-list!
  3234. Added for compatibility with scsh.
  3235. ** New built-in random number support
  3236. *** New function: random N [STATE]
  3237. Accepts a positive integer or real N and returns a number of the
  3238. same type between zero (inclusive) and N (exclusive). The values
  3239. returned have a uniform distribution.
  3240. The optional argument STATE must be of the type produced by
  3241. `copy-random-state' or `seed->random-state'. It defaults to the value
  3242. of the variable `*random-state*'. This object is used to maintain the
  3243. state of the pseudo-random-number generator and is altered as a side
  3244. effect of the `random' operation.
  3245. *** New variable: *random-state*
  3246. Holds a data structure that encodes the internal state of the
  3247. random-number generator that `random' uses by default. The nature
  3248. of this data structure is implementation-dependent. It may be
  3249. printed out and successfully read back in, but may or may not
  3250. function correctly as a random-number state object in another
  3251. implementation.
  3252. *** New function: copy-random-state [STATE]
  3253. Returns a new object of type suitable for use as the value of the
  3254. variable `*random-state*' and as a second argument to `random'.
  3255. If argument STATE is given, a copy of it is returned. Otherwise a
  3256. copy of `*random-state*' is returned.
  3257. *** New function: seed->random-state SEED
  3258. Returns a new object of type suitable for use as the value of the
  3259. variable `*random-state*' and as a second argument to `random'.
  3260. SEED is a string or a number. A new state is generated and
  3261. initialized using SEED.
  3262. *** New function: random:uniform [STATE]
  3263. Returns an uniformly distributed inexact real random number in the
  3264. range between 0 and 1.
  3265. *** New procedure: random:solid-sphere! VECT [STATE]
  3266. Fills VECT with inexact real random numbers the sum of whose
  3267. squares is less than 1.0. Thinking of VECT as coordinates in
  3268. space of dimension N = `(vector-length VECT)', the coordinates are
  3269. uniformly distributed within the unit N-shere. The sum of the
  3270. squares of the numbers is returned. VECT can be either a vector
  3271. or a uniform vector of doubles.
  3272. *** New procedure: random:hollow-sphere! VECT [STATE]
  3273. Fills VECT with inexact real random numbers the sum of whose squares
  3274. is equal to 1.0. Thinking of VECT as coordinates in space of
  3275. dimension n = `(vector-length VECT)', the coordinates are uniformly
  3276. distributed over the surface of the unit n-shere. VECT can be either
  3277. a vector or a uniform vector of doubles.
  3278. *** New function: random:normal [STATE]
  3279. Returns an inexact real in a normal distribution with mean 0 and
  3280. standard deviation 1. For a normal distribution with mean M and
  3281. standard deviation D use `(+ M (* D (random:normal)))'.
  3282. *** New procedure: random:normal-vector! VECT [STATE]
  3283. Fills VECT with inexact real random numbers which are independent and
  3284. standard normally distributed (i.e., with mean 0 and variance 1).
  3285. VECT can be either a vector or a uniform vector of doubles.
  3286. *** New function: random:exp STATE
  3287. Returns an inexact real in an exponential distribution with mean 1.
  3288. For an exponential distribution with mean U use (* U (random:exp)).
  3289. ** The range of logand, logior, logxor, logtest, and logbit? have changed.
  3290. These functions now operate on numbers in the range of a C unsigned
  3291. long.
  3292. These functions used to operate on numbers in the range of a C signed
  3293. long; however, this seems inappropriate, because Guile integers don't
  3294. overflow.
  3295. ** New function: make-guardian
  3296. This is an implementation of guardians as described in
  3297. R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
  3298. Generation-Based Garbage Collector" ACM SIGPLAN Conference on
  3299. Programming Language Design and Implementation, June 1993
  3300. ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
  3301. ** New functions: delq1!, delv1!, delete1!
  3302. These procedures behave similar to delq! and friends but delete only
  3303. one object if at all.
  3304. ** New function: unread-string STRING PORT
  3305. Unread STRING to PORT, that is, push it back onto the port so that
  3306. next read operation will work on the pushed back characters.
  3307. ** unread-char can now be called multiple times
  3308. If unread-char is called multiple times, the unread characters will be
  3309. read again in last-in first-out order.
  3310. ** the procedures uniform-array-read! and uniform-array-write! now
  3311. work on any kind of port, not just ports which are open on a file.
  3312. ** Now 'l' in a port mode requests line buffering.
  3313. ** The procedure truncate-file now works on string ports as well
  3314. as file ports. If the size argument is omitted, the current
  3315. file position is used.
  3316. ** new procedure: seek PORT/FDES OFFSET WHENCE
  3317. The arguments are the same as for the old fseek procedure, but it
  3318. works on string ports as well as random-access file ports.
  3319. ** the fseek procedure now works on string ports, since it has been
  3320. redefined using seek.
  3321. ** the setvbuf procedure now uses a default size if mode is _IOFBF and
  3322. size is not supplied.
  3323. ** the newline procedure no longer flushes the port if it's not
  3324. line-buffered: previously it did if it was the current output port.
  3325. ** open-pipe and close-pipe are no longer primitive procedures, but
  3326. an emulation can be obtained using `(use-modules (ice-9 popen))'.
  3327. ** the freopen procedure has been removed.
  3328. ** new procedure: drain-input PORT
  3329. Drains PORT's read buffers (including any pushed-back characters)
  3330. and returns the contents as a single string.
  3331. ** New function: map-in-order PROC LIST1 LIST2 ...
  3332. Version of `map' which guarantees that the procedure is applied to the
  3333. lists in serial order.
  3334. ** Renamed `serial-array-copy!' and `serial-array-map!' to
  3335. `array-copy-in-order!' and `array-map-in-order!'. The old names are
  3336. now obsolete and will go away in release 1.5.
  3337. ** New syntax: collect BODY1 ...
  3338. Version of `begin' which returns a list of the results of the body
  3339. forms instead of the result of the last body form. In contrast to
  3340. `begin', `collect' allows an empty body.
  3341. ** New functions: read-history FILENAME, write-history FILENAME
  3342. Read/write command line history from/to file. Returns #t on success
  3343. and #f if an error occured.
  3344. ** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
  3345. These procedures return a list of definitions available in the specified
  3346. argument, a relative module reference. In the case of no argument,
  3347. `(current-module)' is now consulted for definitions to return, instead
  3348. of simply returning #f, the former behavior.
  3349. ** The #/ syntax for lists is no longer supported.
  3350. Earlier versions of Scheme accepted this syntax, but printed a
  3351. warning.
  3352. ** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
  3353. Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
  3354. modules.
  3355. * Changes to the gh_ interface
  3356. ** gh_scm2doubles
  3357. Now takes a second argument which is the result array. If this
  3358. pointer is NULL, a new array is malloced (the old behaviour).
  3359. ** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
  3360. gh_scm2shorts, gh_scm2longs, gh_scm2floats
  3361. New functions.
  3362. * Changes to the scm_ interface
  3363. ** Function: scm_make_named_hook (char* name, int n_args)
  3364. Creates a hook in the same way as make-hook above but also
  3365. binds a variable named NAME to it.
  3366. This is the typical way of creating a hook from C code.
  3367. Currently, the variable is created in the "current" module. This
  3368. might change when we get the new module system.
  3369. ** The smob interface
  3370. The interface for creating smobs has changed. For documentation, see
  3371. data-rep.info (made from guile-core/doc/data-rep.texi).
  3372. *** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
  3373. >>> This function will be removed in 1.3.4. <<<
  3374. It is replaced by:
  3375. *** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
  3376. This function adds a new smob type, named NAME, with instance size
  3377. SIZE to the system. The return value is a tag that is used in
  3378. creating instances of the type. If SIZE is 0, then no memory will
  3379. be allocated when instances of the smob are created, and nothing
  3380. will be freed by the default free function.
  3381. *** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
  3382. This function sets the smob marking procedure for the smob type
  3383. specified by the tag TC. TC is the tag returned by
  3384. `scm_make_smob_type'.
  3385. *** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
  3386. This function sets the smob freeing procedure for the smob type
  3387. specified by the tag TC. TC is the tag returned by
  3388. `scm_make_smob_type'.
  3389. *** Function: void scm_set_smob_print (tc, print)
  3390. - Function: void scm_set_smob_print (long tc,
  3391. scm_sizet (*print) (SCM,
  3392. SCM,
  3393. scm_print_state *))
  3394. This function sets the smob printing procedure for the smob type
  3395. specified by the tag TC. TC is the tag returned by
  3396. `scm_make_smob_type'.
  3397. *** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
  3398. This function sets the smob equality-testing predicate for the
  3399. smob type specified by the tag TC. TC is the tag returned by
  3400. `scm_make_smob_type'.
  3401. *** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
  3402. Make VALUE contain a smob instance of the type with type code TC and
  3403. smob data DATA. VALUE must be previously declared as C type `SCM'.
  3404. *** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
  3405. This macro expands to a block of code that creates a smob instance
  3406. of the type with type code TC and smob data DATA, and returns that
  3407. `SCM' value. It should be the last piece of code in a block.
  3408. ** The interfaces for using I/O ports and implementing port types
  3409. (ptobs) have changed significantly. The new interface is based on
  3410. shared access to buffers and a new set of ptob procedures.
  3411. *** scm_newptob has been removed
  3412. It is replaced by:
  3413. *** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
  3414. - Function: SCM scm_make_port_type (char *type_name,
  3415. int (*fill_buffer) (SCM port),
  3416. void (*write_flush) (SCM port));
  3417. Similarly to the new smob interface, there is a set of function
  3418. setters by which the user can customize the behaviour of his port
  3419. type. See ports.h (scm_set_port_XXX).
  3420. ** scm_strport_to_string: New function: creates a new string from
  3421. a string port's buffer.
  3422. ** Plug in interface for random number generators
  3423. The variable `scm_the_rng' in random.c contains a value and three
  3424. function pointers which together define the current random number
  3425. generator being used by the Scheme level interface and the random
  3426. number library functions.
  3427. The user is free to replace the default generator with the generator
  3428. of his own choice.
  3429. *** Variable: size_t scm_the_rng.rstate_size
  3430. The size of the random state type used by the current RNG
  3431. measured in chars.
  3432. *** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
  3433. Given the random STATE, return 32 random bits.
  3434. *** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
  3435. Seed random state STATE using string S of length N.
  3436. *** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
  3437. Given random state STATE, return a malloced copy.
  3438. ** Default RNG
  3439. The default RNG is the MWC (Multiply With Carry) random number
  3440. generator described by George Marsaglia at the Department of
  3441. Statistics and Supercomputer Computations Research Institute, The
  3442. Florida State University (http://stat.fsu.edu/~geo).
  3443. It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
  3444. passes all tests in the DIEHARD test suite
  3445. (http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
  3446. costs one multiply and one add on platforms which either supports long
  3447. longs (gcc does this on most systems) or have 64 bit longs. The cost
  3448. is four multiply on other systems but this can be optimized by writing
  3449. scm_i_uniform32 in assembler.
  3450. These functions are provided through the scm_the_rng interface for use
  3451. by libguile and the application.
  3452. *** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
  3453. Given the random STATE, return 32 random bits.
  3454. Don't use this function directly. Instead go through the plugin
  3455. interface (see "Plug in interface" above).
  3456. *** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
  3457. Initialize STATE using SEED of length N.
  3458. *** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
  3459. Return a malloc:ed copy of STATE. This function can easily be re-used
  3460. in the interfaces to other RNGs.
  3461. ** Random number library functions
  3462. These functions use the current RNG through the scm_the_rng interface.
  3463. It might be a good idea to use these functions from your C code so
  3464. that only one random generator is used by all code in your program.
  3465. The default random state is stored in:
  3466. *** Variable: SCM scm_var_random_state
  3467. Contains the vcell of the Scheme variable "*random-state*" which is
  3468. used as default state by all random number functions in the Scheme
  3469. level interface.
  3470. Example:
  3471. double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
  3472. *** Function: scm_rstate *scm_c_default_rstate (void)
  3473. This is a convenience function which returns the value of
  3474. scm_var_random_state. An error message is generated if this value
  3475. isn't a random state.
  3476. *** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
  3477. Make a new random state from the string SEED of length LENGTH.
  3478. It is generally not a good idea to use multiple random states in a
  3479. program. While subsequent random numbers generated from one random
  3480. state are guaranteed to be reasonably independent, there is no such
  3481. guarantee for numbers generated from different random states.
  3482. *** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
  3483. Return 32 random bits.
  3484. *** Function: double scm_c_uniform01 (scm_rstate *STATE)
  3485. Return a sample from the uniform(0,1) distribution.
  3486. *** Function: double scm_c_normal01 (scm_rstate *STATE)
  3487. Return a sample from the normal(0,1) distribution.
  3488. *** Function: double scm_c_exp1 (scm_rstate *STATE)
  3489. Return a sample from the exp(1) distribution.
  3490. *** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
  3491. Return a sample from the discrete uniform(0,M) distribution.
  3492. *** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
  3493. Return a sample from the discrete uniform(0,M) distribution.
  3494. M must be a bignum object. The returned value may be an INUM.
  3495. Changes in Guile 1.3 (released Monday, October 19, 1998):
  3496. * Changes to the distribution
  3497. ** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
  3498. To avoid conflicts, programs should name environment variables after
  3499. themselves, except when there's a common practice establishing some
  3500. other convention.
  3501. For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
  3502. giving the former precedence, and printing a warning message if the
  3503. latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
  3504. ** The header files related to multi-byte characters have been removed.
  3505. They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
  3506. which referred to these explicitly will probably need to be rewritten,
  3507. since the support for the variant string types has been removed; see
  3508. below.
  3509. ** The header files append.h and sequences.h have been removed. These
  3510. files implemented non-R4RS operations which would encourage
  3511. non-portable programming style and less easy-to-read code.
  3512. * Changes to the stand-alone interpreter
  3513. ** New procedures have been added to implement a "batch mode":
  3514. *** Function: batch-mode?
  3515. Returns a boolean indicating whether the interpreter is in batch
  3516. mode.
  3517. *** Function: set-batch-mode?! ARG
  3518. If ARG is true, switches the interpreter to batch mode. The `#f'
  3519. case has not been implemented.
  3520. ** Guile now provides full command-line editing, when run interactively.
  3521. To use this feature, you must have the readline library installed.
  3522. The Guile build process will notice it, and automatically include
  3523. support for it.
  3524. The readline library is available via anonymous FTP from any GNU
  3525. mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
  3526. ** the-last-stack is now a fluid.
  3527. * Changes to the procedure for linking libguile with your programs
  3528. ** You can now use the `guile-config' utility to build programs that use Guile.
  3529. Guile now includes a command-line utility called `guile-config', which
  3530. can provide information about how to compile and link programs that
  3531. use Guile.
  3532. *** `guile-config compile' prints any C compiler flags needed to use Guile.
  3533. You should include this command's output on the command line you use
  3534. to compile C or C++ code that #includes the Guile header files. It's
  3535. usually just a `-I' flag to help the compiler find the Guile headers.
  3536. *** `guile-config link' prints any linker flags necessary to link with Guile.
  3537. This command writes to its standard output a list of flags which you
  3538. must pass to the linker to link your code against the Guile library.
  3539. The flags include '-lguile' itself, any other libraries the Guile
  3540. library depends upon, and any `-L' flags needed to help the linker
  3541. find those libraries.
  3542. For example, here is a Makefile rule that builds a program named 'foo'
  3543. from the object files ${FOO_OBJECTS}, and links them against Guile:
  3544. foo: ${FOO_OBJECTS}
  3545. ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
  3546. Previous Guile releases recommended that you use autoconf to detect
  3547. which of a predefined set of libraries were present on your system.
  3548. It is more robust to use `guile-config', since it records exactly which
  3549. libraries the installed Guile library requires.
  3550. This was originally called `build-guile', but was renamed to
  3551. `guile-config' before Guile 1.3 was released, to be consistent with
  3552. the analogous script for the GTK+ GUI toolkit, which is called
  3553. `gtk-config'.
  3554. ** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
  3555. If you are using the GNU autoconf package to configure your program,
  3556. you can use the GUILE_FLAGS autoconf macro to call `guile-config'
  3557. (described above) and gather the necessary values for use in your
  3558. Makefiles.
  3559. The GUILE_FLAGS macro expands to configure script code which runs the
  3560. `guile-config' script, to find out where Guile's header files and
  3561. libraries are installed. It sets two variables, marked for
  3562. substitution, as by AC_SUBST.
  3563. GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
  3564. code that uses Guile header files. This is almost always just a
  3565. -I flag.
  3566. GUILE_LDFLAGS --- flags to pass to the linker to link a
  3567. program against Guile. This includes `-lguile' for the Guile
  3568. library itself, any libraries that Guile itself requires (like
  3569. -lqthreads), and so on. It may also include a -L flag to tell the
  3570. compiler where to find the libraries.
  3571. GUILE_FLAGS is defined in the file guile.m4, in the top-level
  3572. directory of the Guile distribution. You can copy it into your
  3573. package's aclocal.m4 file, and then use it in your configure.in file.
  3574. If you are using the `aclocal' program, distributed with GNU automake,
  3575. to maintain your aclocal.m4 file, the Guile installation process
  3576. installs guile.m4 where aclocal will find it. All you need to do is
  3577. use GUILE_FLAGS in your configure.in file, and then run `aclocal';
  3578. this will copy the definition of GUILE_FLAGS into your aclocal.m4
  3579. file.
  3580. * Changes to Scheme functions and syntax
  3581. ** Multi-byte strings have been removed, as have multi-byte and wide
  3582. ports. We felt that these were the wrong approach to
  3583. internationalization support.
  3584. ** New function: readline [PROMPT]
  3585. Read a line from the terminal, and allow the user to edit it,
  3586. prompting with PROMPT. READLINE provides a large set of Emacs-like
  3587. editing commands, lets the user recall previously typed lines, and
  3588. works on almost every kind of terminal, including dumb terminals.
  3589. READLINE assumes that the cursor is at the beginning of the line when
  3590. it is invoked. Thus, you can't print a prompt yourself, and then call
  3591. READLINE; you need to package up your prompt as a string, pass it to
  3592. the function, and let READLINE print the prompt itself. This is
  3593. because READLINE needs to know the prompt's screen width.
  3594. For Guile to provide this function, you must have the readline
  3595. library, version 2.1 or later, installed on your system. Readline is
  3596. available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
  3597. any GNU mirror site.
  3598. See also ADD-HISTORY function.
  3599. ** New function: add-history STRING
  3600. Add STRING as the most recent line in the history used by the READLINE
  3601. command. READLINE does not add lines to the history itself; you must
  3602. call ADD-HISTORY to make previous input available to the user.
  3603. ** The behavior of the read-line function has changed.
  3604. This function now uses standard C library functions to read the line,
  3605. for speed. This means that it doesn not respect the value of
  3606. scm-line-incrementors; it assumes that lines are delimited with
  3607. #\newline.
  3608. (Note that this is read-line, the function that reads a line of text
  3609. from a port, not readline, the function that reads a line from a
  3610. terminal, providing full editing capabilities.)
  3611. ** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
  3612. This module provides some simple argument parsing. It exports one
  3613. function:
  3614. Function: getopt-gnu-style ARG-LS
  3615. Parse a list of program arguments into an alist of option
  3616. descriptions.
  3617. Each item in the list of program arguments is examined to see if
  3618. it meets the syntax of a GNU long-named option. An argument like
  3619. `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
  3620. returned alist, where MUMBLE is a keyword object with the same
  3621. name as the argument. An argument like `--MUMBLE=FROB' produces
  3622. an element of the form (MUMBLE . FROB), where FROB is a string.
  3623. As a special case, the returned alist also contains a pair whose
  3624. car is the symbol `rest'. The cdr of this pair is a list
  3625. containing all the items in the argument list that are not options
  3626. of the form mentioned above.
  3627. The argument `--' is treated specially: all items in the argument
  3628. list appearing after such an argument are not examined, and are
  3629. returned in the special `rest' list.
  3630. This function does not parse normal single-character switches.
  3631. You will need to parse them out of the `rest' list yourself.
  3632. ** The read syntax for byte vectors and short vectors has changed.
  3633. Instead of #bytes(...), write #y(...).
  3634. Instead of #short(...), write #h(...).
  3635. This may seem nutty, but, like the other uniform vectors, byte vectors
  3636. and short vectors want to have the same print and read syntax (and,
  3637. more basic, want to have read syntax!). Changing the read syntax to
  3638. use multiple characters after the hash sign breaks with the
  3639. conventions used in R5RS and the conventions used for the other
  3640. uniform vectors. It also introduces complexity in the current reader,
  3641. both on the C and Scheme levels. (The Right solution is probably to
  3642. change the syntax and prototypes for uniform vectors entirely.)
  3643. ** The new module (ice-9 session) provides useful interactive functions.
  3644. *** New procedure: (apropos REGEXP OPTION ...)
  3645. Display a list of top-level variables whose names match REGEXP, and
  3646. the modules they are imported from. Each OPTION should be one of the
  3647. following symbols:
  3648. value --- Show the value of each matching variable.
  3649. shadow --- Show bindings shadowed by subsequently imported modules.
  3650. full --- Same as both `shadow' and `value'.
  3651. For example:
  3652. guile> (apropos "trace" 'full)
  3653. debug: trace #<procedure trace args>
  3654. debug: untrace #<procedure untrace args>
  3655. the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
  3656. the-scm-module: before-backtrace-hook ()
  3657. the-scm-module: backtrace #<primitive-procedure backtrace>
  3658. the-scm-module: after-backtrace-hook ()
  3659. the-scm-module: has-shown-backtrace-hint? #f
  3660. guile>
  3661. ** There are new functions and syntax for working with macros.
  3662. Guile implements macros as a special object type. Any variable whose
  3663. top-level binding is a macro object acts as a macro. The macro object
  3664. specifies how the expression should be transformed before evaluation.
  3665. *** Macro objects now print in a reasonable way, resembling procedures.
  3666. *** New function: (macro? OBJ)
  3667. True iff OBJ is a macro object.
  3668. *** New function: (primitive-macro? OBJ)
  3669. Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
  3670. macro transformers, implemented in eval.c rather than Scheme code.
  3671. Why do we have this function?
  3672. - For symmetry with procedure? and primitive-procedure?,
  3673. - to allow custom print procedures to tell whether a macro is
  3674. primitive, and display it differently, and
  3675. - to allow compilers and user-written evaluators to distinguish
  3676. builtin special forms from user-defined ones, which could be
  3677. compiled.
  3678. *** New function: (macro-type OBJ)
  3679. Return a value indicating what kind of macro OBJ is. Possible return
  3680. values are:
  3681. The symbol `syntax' --- a macro created by procedure->syntax.
  3682. The symbol `macro' --- a macro created by procedure->macro.
  3683. The symbol `macro!' --- a macro created by procedure->memoizing-macro.
  3684. The boolean #f --- if OBJ is not a macro object.
  3685. *** New function: (macro-name MACRO)
  3686. Return the name of the macro object MACRO's procedure, as returned by
  3687. procedure-name.
  3688. *** New function: (macro-transformer MACRO)
  3689. Return the transformer procedure for MACRO.
  3690. *** New syntax: (use-syntax MODULE ... TRANSFORMER)
  3691. Specify a new macro expander to use in the current module. Each
  3692. MODULE is a module name, with the same meaning as in the `use-modules'
  3693. form; each named module's exported bindings are added to the current
  3694. top-level environment. TRANSFORMER is an expression evaluated in the
  3695. resulting environment which must yield a procedure to use as the
  3696. module's eval transformer: every expression evaluated in this module
  3697. is passed to this function, and the result passed to the Guile
  3698. interpreter.
  3699. *** macro-eval! is removed. Use local-eval instead.
  3700. ** Some magic has been added to the printer to better handle user
  3701. written printing routines (like record printers, closure printers).
  3702. The problem is that these user written routines must have access to
  3703. the current `print-state' to be able to handle fancy things like
  3704. detection of circular references. These print-states have to be
  3705. passed to the builtin printing routines (display, write, etc) to
  3706. properly continue the print chain.
  3707. We didn't want to change all existing print code so that it
  3708. explicitly passes thru a print state in addition to a port. Instead,
  3709. we extented the possible values that the builtin printing routines
  3710. accept as a `port'. In addition to a normal port, they now also take
  3711. a pair of a normal port and a print-state. Printing will go to the
  3712. port and the print-state will be used to control the detection of
  3713. circular references, etc. If the builtin function does not care for a
  3714. print-state, it is simply ignored.
  3715. User written callbacks are now called with such a pair as their
  3716. `port', but because every function now accepts this pair as a PORT
  3717. argument, you don't have to worry about that. In fact, it is probably
  3718. safest to not check for these pairs.
  3719. However, it is sometimes necessary to continue a print chain on a
  3720. different port, for example to get a intermediate string
  3721. representation of the printed value, mangle that string somehow, and
  3722. then to finally print the mangled string. Use the new function
  3723. inherit-print-state OLD-PORT NEW-PORT
  3724. for this. It constructs a new `port' that prints to NEW-PORT but
  3725. inherits the print-state of OLD-PORT.
  3726. ** struct-vtable-offset renamed to vtable-offset-user
  3727. ** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
  3728. ** There is now a third optional argument to make-vtable-vtable
  3729. (and fourth to make-struct) when constructing new types (vtables).
  3730. This argument initializes field vtable-index-printer of the vtable.
  3731. ** The detection of circular references has been extended to structs.
  3732. That is, a structure that -- in the process of being printed -- prints
  3733. itself does not lead to infinite recursion.
  3734. ** There is now some basic support for fluids. Please read
  3735. "libguile/fluid.h" to find out more. It is accessible from Scheme with
  3736. the following functions and macros:
  3737. Function: make-fluid
  3738. Create a new fluid object. Fluids are not special variables or
  3739. some other extension to the semantics of Scheme, but rather
  3740. ordinary Scheme objects. You can store them into variables (that
  3741. are still lexically scoped, of course) or into any other place you
  3742. like. Every fluid has a initial value of `#f'.
  3743. Function: fluid? OBJ
  3744. Test whether OBJ is a fluid.
  3745. Function: fluid-ref FLUID
  3746. Function: fluid-set! FLUID VAL
  3747. Access/modify the fluid FLUID. Modifications are only visible
  3748. within the current dynamic root (that includes threads).
  3749. Function: with-fluids* FLUIDS VALUES THUNK
  3750. FLUIDS is a list of fluids and VALUES a corresponding list of
  3751. values for these fluids. Before THUNK gets called the values are
  3752. installed in the fluids and the old values of the fluids are
  3753. saved in the VALUES list. When the flow of control leaves THUNK
  3754. or reenters it, the values get swapped again. You might think of
  3755. this as a `safe-fluid-excursion'. Note that the VALUES list is
  3756. modified by `with-fluids*'.
  3757. Macro: with-fluids ((FLUID VALUE) ...) FORM ...
  3758. The same as `with-fluids*' but with a different syntax. It looks
  3759. just like `let', but both FLUID and VALUE are evaluated. Remember,
  3760. fluids are not special variables but ordinary objects. FLUID
  3761. should evaluate to a fluid.
  3762. ** Changes to system call interfaces:
  3763. *** close-port, close-input-port and close-output-port now return a
  3764. boolean instead of an `unspecified' object. #t means that the port
  3765. was successfully closed, while #f means it was already closed. It is
  3766. also now possible for these procedures to raise an exception if an
  3767. error occurs (some errors from write can be delayed until close.)
  3768. *** the first argument to chmod, fcntl, ftell and fseek can now be a
  3769. file descriptor.
  3770. *** the third argument to fcntl is now optional.
  3771. *** the first argument to chown can now be a file descriptor or a port.
  3772. *** the argument to stat can now be a port.
  3773. *** The following new procedures have been added (most use scsh
  3774. interfaces):
  3775. *** procedure: close PORT/FD
  3776. Similar to close-port (*note close-port: Closing Ports.), but also
  3777. works on file descriptors. A side effect of closing a file
  3778. descriptor is that any ports using that file descriptor are moved
  3779. to a different file descriptor and have their revealed counts set
  3780. to zero.
  3781. *** procedure: port->fdes PORT
  3782. Returns the integer file descriptor underlying PORT. As a side
  3783. effect the revealed count of PORT is incremented.
  3784. *** procedure: fdes->ports FDES
  3785. Returns a list of existing ports which have FDES as an underlying
  3786. file descriptor, without changing their revealed counts.
  3787. *** procedure: fdes->inport FDES
  3788. Returns an existing input port which has FDES as its underlying
  3789. file descriptor, if one exists, and increments its revealed count.
  3790. Otherwise, returns a new input port with a revealed count of 1.
  3791. *** procedure: fdes->outport FDES
  3792. Returns an existing output port which has FDES as its underlying
  3793. file descriptor, if one exists, and increments its revealed count.
  3794. Otherwise, returns a new output port with a revealed count of 1.
  3795. The next group of procedures perform a `dup2' system call, if NEWFD
  3796. (an integer) is supplied, otherwise a `dup'. The file descriptor to be
  3797. duplicated can be supplied as an integer or contained in a port. The
  3798. type of value returned varies depending on which procedure is used.
  3799. All procedures also have the side effect when performing `dup2' that
  3800. any ports using NEWFD are moved to a different file descriptor and have
  3801. their revealed counts set to zero.
  3802. *** procedure: dup->fdes PORT/FD [NEWFD]
  3803. Returns an integer file descriptor.
  3804. *** procedure: dup->inport PORT/FD [NEWFD]
  3805. Returns a new input port using the new file descriptor.
  3806. *** procedure: dup->outport PORT/FD [NEWFD]
  3807. Returns a new output port using the new file descriptor.
  3808. *** procedure: dup PORT/FD [NEWFD]
  3809. Returns a new port if PORT/FD is a port, with the same mode as the
  3810. supplied port, otherwise returns an integer file descriptor.
  3811. *** procedure: dup->port PORT/FD MODE [NEWFD]
  3812. Returns a new port using the new file descriptor. MODE supplies a
  3813. mode string for the port (*note open-file: File Ports.).
  3814. *** procedure: setenv NAME VALUE
  3815. Modifies the environment of the current process, which is also the
  3816. default environment inherited by child processes.
  3817. If VALUE is `#f', then NAME is removed from the environment.
  3818. Otherwise, the string NAME=VALUE is added to the environment,
  3819. replacing any existing string with name matching NAME.
  3820. The return value is unspecified.
  3821. *** procedure: truncate-file OBJ SIZE
  3822. Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
  3823. can be a string containing a file name or an integer file
  3824. descriptor or port open for output on the file. The underlying
  3825. system calls are `truncate' and `ftruncate'.
  3826. The return value is unspecified.
  3827. *** procedure: setvbuf PORT MODE [SIZE]
  3828. Set the buffering mode for PORT. MODE can be:
  3829. `_IONBF'
  3830. non-buffered
  3831. `_IOLBF'
  3832. line buffered
  3833. `_IOFBF'
  3834. block buffered, using a newly allocated buffer of SIZE bytes.
  3835. However if SIZE is zero or unspecified, the port will be made
  3836. non-buffered.
  3837. This procedure should not be used after I/O has been performed with
  3838. the port.
  3839. Ports are usually block buffered by default, with a default buffer
  3840. size. Procedures e.g., *Note open-file: File Ports, which accept a
  3841. mode string allow `0' to be added to request an unbuffered port.
  3842. *** procedure: fsync PORT/FD
  3843. Copies any unwritten data for the specified output file descriptor
  3844. to disk. If PORT/FD is a port, its buffer is flushed before the
  3845. underlying file descriptor is fsync'd. The return value is
  3846. unspecified.
  3847. *** procedure: open-fdes PATH FLAGS [MODES]
  3848. Similar to `open' but returns a file descriptor instead of a port.
  3849. *** procedure: execle PATH ENV [ARG] ...
  3850. Similar to `execl', but the environment of the new process is
  3851. specified by ENV, which must be a list of strings as returned by
  3852. the `environ' procedure.
  3853. This procedure is currently implemented using the `execve' system
  3854. call, but we call it `execle' because of its Scheme calling
  3855. interface.
  3856. *** procedure: strerror ERRNO
  3857. Returns the Unix error message corresponding to ERRNO, an integer.
  3858. *** procedure: primitive-exit [STATUS]
  3859. Terminate the current process without unwinding the Scheme stack.
  3860. This is would typically be useful after a fork. The exit status
  3861. is STATUS if supplied, otherwise zero.
  3862. *** procedure: times
  3863. Returns an object with information about real and processor time.
  3864. The following procedures accept such an object as an argument and
  3865. return a selected component:
  3866. `tms:clock'
  3867. The current real time, expressed as time units relative to an
  3868. arbitrary base.
  3869. `tms:utime'
  3870. The CPU time units used by the calling process.
  3871. `tms:stime'
  3872. The CPU time units used by the system on behalf of the
  3873. calling process.
  3874. `tms:cutime'
  3875. The CPU time units used by terminated child processes of the
  3876. calling process, whose status has been collected (e.g., using
  3877. `waitpid').
  3878. `tms:cstime'
  3879. Similarly, the CPU times units used by the system on behalf of
  3880. terminated child processes.
  3881. ** Removed: list-length
  3882. ** Removed: list-append, list-append!
  3883. ** Removed: list-reverse, list-reverse!
  3884. ** array-map renamed to array-map!
  3885. ** serial-array-map renamed to serial-array-map!
  3886. ** catch doesn't take #f as first argument any longer
  3887. Previously, it was possible to pass #f instead of a key to `catch'.
  3888. That would cause `catch' to pass a jump buffer object to the procedure
  3889. passed as second argument. The procedure could then use this jump
  3890. buffer objekt as an argument to throw.
  3891. This mechanism has been removed since its utility doesn't motivate the
  3892. extra complexity it introduces.
  3893. ** The `#/' notation for lists now provokes a warning message from Guile.
  3894. This syntax will be removed from Guile in the near future.
  3895. To disable the warning message, set the GUILE_HUSH environment
  3896. variable to any non-empty value.
  3897. ** The newline character now prints as `#\newline', following the
  3898. normal Scheme notation, not `#\nl'.
  3899. * Changes to the gh_ interface
  3900. ** The gh_enter function now takes care of loading the Guile startup files.
  3901. gh_enter works by calling scm_boot_guile; see the remarks below.
  3902. ** Function: void gh_write (SCM x)
  3903. Write the printed representation of the scheme object x to the current
  3904. output port. Corresponds to the scheme level `write'.
  3905. ** gh_list_length renamed to gh_length.
  3906. ** vector handling routines
  3907. Several major changes. In particular, gh_vector() now resembles
  3908. (vector ...) (with a caveat -- see manual), and gh_make_vector() now
  3909. exists and behaves like (make-vector ...). gh_vset() and gh_vref()
  3910. have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
  3911. vector-related gh_ functions have been implemented.
  3912. ** pair and list routines
  3913. Implemented several of the R4RS pair and list functions that were
  3914. missing.
  3915. ** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
  3916. New function. Converts double arrays back and forth between Scheme
  3917. and C.
  3918. * Changes to the scm_ interface
  3919. ** The function scm_boot_guile now takes care of loading the startup files.
  3920. Guile's primary initialization function, scm_boot_guile, now takes
  3921. care of loading `boot-9.scm', in the `ice-9' module, to initialize
  3922. Guile, define the module system, and put together some standard
  3923. bindings. It also loads `init.scm', which is intended to hold
  3924. site-specific initialization code.
  3925. Since Guile cannot operate properly until boot-9.scm is loaded, there
  3926. is no reason to separate loading boot-9.scm from Guile's other
  3927. initialization processes.
  3928. This job used to be done by scm_compile_shell_switches, which didn't
  3929. make much sense; in particular, it meant that people using Guile for
  3930. non-shell-like applications had to jump through hoops to get Guile
  3931. initialized properly.
  3932. ** The function scm_compile_shell_switches no longer loads the startup files.
  3933. Now, Guile always loads the startup files, whenever it is initialized;
  3934. see the notes above for scm_boot_guile and scm_load_startup_files.
  3935. ** Function: scm_load_startup_files
  3936. This new function takes care of loading Guile's initialization file
  3937. (`boot-9.scm'), and the site initialization file, `init.scm'. Since
  3938. this is always called by the Guile initialization process, it's
  3939. probably not too useful to call this yourself, but it's there anyway.
  3940. ** The semantics of smob marking have changed slightly.
  3941. The smob marking function (the `mark' member of the scm_smobfuns
  3942. structure) is no longer responsible for setting the mark bit on the
  3943. smob. The generic smob handling code in the garbage collector will
  3944. set this bit. The mark function need only ensure that any other
  3945. objects the smob refers to get marked.
  3946. Note that this change means that the smob's GC8MARK bit is typically
  3947. already set upon entry to the mark function. Thus, marking functions
  3948. which look like this:
  3949. {
  3950. if (SCM_GC8MARKP (ptr))
  3951. return SCM_BOOL_F;
  3952. SCM_SETGC8MARK (ptr);
  3953. ... mark objects to which the smob refers ...
  3954. }
  3955. are now incorrect, since they will return early, and fail to mark any
  3956. other objects the smob refers to. Some code in the Guile library used
  3957. to work this way.
  3958. ** The semantics of the I/O port functions in scm_ptobfuns have changed.
  3959. If you have implemented your own I/O port type, by writing the
  3960. functions required by the scm_ptobfuns and then calling scm_newptob,
  3961. you will need to change your functions slightly.
  3962. The functions in a scm_ptobfuns structure now expect the port itself
  3963. as their argument; they used to expect the `stream' member of the
  3964. port's scm_port_table structure. This allows functions in an
  3965. scm_ptobfuns structure to easily access the port's cell (and any flags
  3966. it its CAR), and the port's scm_port_table structure.
  3967. Guile now passes the I/O port itself as the `port' argument in the
  3968. following scm_ptobfuns functions:
  3969. int (*free) (SCM port);
  3970. int (*fputc) (int, SCM port);
  3971. int (*fputs) (char *, SCM port);
  3972. scm_sizet (*fwrite) SCM_P ((char *ptr,
  3973. scm_sizet size,
  3974. scm_sizet nitems,
  3975. SCM port));
  3976. int (*fflush) (SCM port);
  3977. int (*fgetc) (SCM port);
  3978. int (*fclose) (SCM port);
  3979. The interfaces to the `mark', `print', `equalp', and `fgets' methods
  3980. are unchanged.
  3981. If you have existing code which defines its own port types, it is easy
  3982. to convert your code to the new interface; simply apply SCM_STREAM to
  3983. the port argument to yield the value you code used to expect.
  3984. Note that since both the port and the stream have the same type in the
  3985. C code --- they are both SCM values --- the C compiler will not remind
  3986. you if you forget to update your scm_ptobfuns functions.
  3987. ** Function: int scm_internal_select (int fds,
  3988. SELECT_TYPE *rfds,
  3989. SELECT_TYPE *wfds,
  3990. SELECT_TYPE *efds,
  3991. struct timeval *timeout);
  3992. This is a replacement for the `select' function provided by the OS.
  3993. It enables I/O blocking and sleeping to happen for one cooperative
  3994. thread without blocking other threads. It also avoids busy-loops in
  3995. these situations. It is intended that all I/O blocking and sleeping
  3996. will finally go through this function. Currently, this function is
  3997. only available on systems providing `gettimeofday' and `select'.
  3998. ** Function: SCM scm_internal_stack_catch (SCM tag,
  3999. scm_catch_body_t body,
  4000. void *body_data,
  4001. scm_catch_handler_t handler,
  4002. void *handler_data)
  4003. A new sibling to the other two C level `catch' functions
  4004. scm_internal_catch and scm_internal_lazy_catch. Use it if you want
  4005. the stack to be saved automatically into the variable `the-last-stack'
  4006. (scm_the_last_stack_var) on error. This is necessary if you want to
  4007. use advanced error reporting, such as calling scm_display_error and
  4008. scm_display_backtrace. (They both take a stack object as argument.)
  4009. ** Function: SCM scm_spawn_thread (scm_catch_body_t body,
  4010. void *body_data,
  4011. scm_catch_handler_t handler,
  4012. void *handler_data)
  4013. Spawns a new thread. It does a job similar to
  4014. scm_call_with_new_thread but takes arguments more suitable when
  4015. spawning threads from application C code.
  4016. ** The hook scm_error_callback has been removed. It was originally
  4017. intended as a way for the user to install his own error handler. But
  4018. that method works badly since it intervenes between throw and catch,
  4019. thereby changing the semantics of expressions like (catch #t ...).
  4020. The correct way to do it is to use one of the C level catch functions
  4021. in throw.c: scm_internal_catch/lazy_catch/stack_catch.
  4022. ** Removed functions:
  4023. scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
  4024. scm_list_reverse, scm_list_reverse_x
  4025. ** New macros: SCM_LISTn where n is one of the integers 0-9.
  4026. These can be used for pretty list creation from C. The idea is taken
  4027. from Erick Gallesio's STk.
  4028. ** scm_array_map renamed to scm_array_map_x
  4029. ** mbstrings are now removed
  4030. This means that the type codes scm_tc7_mb_string and
  4031. scm_tc7_mb_substring has been removed.
  4032. ** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
  4033. Since we no longer support multi-byte strings, these I/O functions
  4034. have been simplified, and renamed. Here are their old names, and
  4035. their new names and arguments:
  4036. scm_gen_putc -> void scm_putc (int c, SCM port);
  4037. scm_gen_puts -> void scm_puts (char *s, SCM port);
  4038. scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
  4039. scm_gen_getc -> void scm_getc (SCM port);
  4040. ** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
  4041. ** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
  4042. SCM_TYP7S now masks away the bit which distinguishes substrings from
  4043. strings.
  4044. ** scm_catch_body_t: Backward incompatible change!
  4045. Body functions to scm_internal_catch and friends do not any longer
  4046. take a second argument. This is because it is no longer possible to
  4047. pass a #f arg to catch.
  4048. ** Calls to scm_protect_object and scm_unprotect now nest properly.
  4049. The function scm_protect_object protects its argument from being freed
  4050. by the garbage collector. scm_unprotect_object removes that
  4051. protection.
  4052. These functions now nest properly. That is, for every object O, there
  4053. is a counter which scm_protect_object(O) increments and
  4054. scm_unprotect_object(O) decrements, if the counter is greater than
  4055. zero. Every object's counter is zero when it is first created. If an
  4056. object's counter is greater than zero, the garbage collector will not
  4057. reclaim its storage.
  4058. This allows you to use scm_protect_object in your code without
  4059. worrying that some other function you call will call
  4060. scm_unprotect_object, and allow it to be freed. Assuming that the
  4061. functions you call are well-behaved, and unprotect only those objects
  4062. they protect, you can follow the same rule and have confidence that
  4063. objects will be freed only at appropriate times.
  4064. Changes in Guile 1.2 (released Tuesday, June 24 1997):
  4065. * Changes to the distribution
  4066. ** Nightly snapshots are now available from ftp.red-bean.com.
  4067. The old server, ftp.cyclic.com, has been relinquished to its rightful
  4068. owner.
  4069. Nightly snapshots of the Guile development sources are now available via
  4070. anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
  4071. Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
  4072. For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
  4073. ** To run Guile without installing it, the procedure has changed a bit.
  4074. If you used a separate build directory to compile Guile, you'll need
  4075. to include the build directory in SCHEME_LOAD_PATH, as well as the
  4076. source directory. See the `INSTALL' file for examples.
  4077. * Changes to the procedure for linking libguile with your programs
  4078. ** The standard Guile load path for Scheme code now includes
  4079. $(datadir)/guile (usually /usr/local/share/guile). This means that
  4080. you can install your own Scheme files there, and Guile will find them.
  4081. (Previous versions of Guile only checked a directory whose name
  4082. contained the Guile version number, so you had to re-install or move
  4083. your Scheme sources each time you installed a fresh version of Guile.)
  4084. The load path also includes $(datadir)/guile/site; we recommend
  4085. putting individual Scheme files there. If you want to install a
  4086. package with multiple source files, create a directory for them under
  4087. $(datadir)/guile.
  4088. ** Guile 1.2 will now use the Rx regular expression library, if it is
  4089. installed on your system. When you are linking libguile into your own
  4090. programs, this means you will have to link against -lguile, -lqt (if
  4091. you configured Guile with thread support), and -lrx.
  4092. If you are using autoconf to generate configuration scripts for your
  4093. application, the following lines should suffice to add the appropriate
  4094. libraries to your link command:
  4095. ### Find Rx, quickthreads and libguile.
  4096. AC_CHECK_LIB(rx, main)
  4097. AC_CHECK_LIB(qt, main)
  4098. AC_CHECK_LIB(guile, scm_shell)
  4099. The Guile 1.2 distribution does not contain sources for the Rx
  4100. library, as Guile 1.0 did. If you want to use Rx, you'll need to
  4101. retrieve it from a GNU FTP site and install it separately.
  4102. * Changes to Scheme functions and syntax
  4103. ** The dynamic linking features of Guile are now enabled by default.
  4104. You can disable them by giving the `--disable-dynamic-linking' option
  4105. to configure.
  4106. (dynamic-link FILENAME)
  4107. Find the object file denoted by FILENAME (a string) and link it
  4108. into the running Guile application. When everything works out,
  4109. return a Scheme object suitable for representing the linked object
  4110. file. Otherwise an error is thrown. How object files are
  4111. searched is system dependent.
  4112. (dynamic-object? VAL)
  4113. Determine whether VAL represents a dynamically linked object file.
  4114. (dynamic-unlink DYNOBJ)
  4115. Unlink the indicated object file from the application. DYNOBJ
  4116. should be one of the values returned by `dynamic-link'.
  4117. (dynamic-func FUNCTION DYNOBJ)
  4118. Search the C function indicated by FUNCTION (a string or symbol)
  4119. in DYNOBJ and return some Scheme object that can later be used
  4120. with `dynamic-call' to actually call this function. Right now,
  4121. these Scheme objects are formed by casting the address of the
  4122. function to `long' and converting this number to its Scheme
  4123. representation.
  4124. (dynamic-call FUNCTION DYNOBJ)
  4125. Call the C function indicated by FUNCTION and DYNOBJ. The
  4126. function is passed no arguments and its return value is ignored.
  4127. When FUNCTION is something returned by `dynamic-func', call that
  4128. function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
  4129. etc.), look it up in DYNOBJ; this is equivalent to
  4130. (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
  4131. Interrupts are deferred while the C function is executing (with
  4132. SCM_DEFER_INTS/SCM_ALLOW_INTS).
  4133. (dynamic-args-call FUNCTION DYNOBJ ARGS)
  4134. Call the C function indicated by FUNCTION and DYNOBJ, but pass it
  4135. some arguments and return its return value. The C function is
  4136. expected to take two arguments and return an `int', just like
  4137. `main':
  4138. int c_func (int argc, char **argv);
  4139. ARGS must be a list of strings and is converted into an array of
  4140. `char *'. The array is passed in ARGV and its size in ARGC. The
  4141. return value is converted to a Scheme number and returned from the
  4142. call to `dynamic-args-call'.
  4143. When dynamic linking is disabled or not supported on your system,
  4144. the above functions throw errors, but they are still available.
  4145. Here is a small example that works on GNU/Linux:
  4146. (define libc-obj (dynamic-link "libc.so"))
  4147. (dynamic-args-call 'rand libc-obj '())
  4148. See the file `libguile/DYNAMIC-LINKING' for additional comments.
  4149. ** The #/ syntax for module names is depreciated, and will be removed
  4150. in a future version of Guile. Instead of
  4151. #/foo/bar/baz
  4152. instead write
  4153. (foo bar baz)
  4154. The latter syntax is more consistent with existing Lisp practice.
  4155. ** Guile now does fancier printing of structures. Structures are the
  4156. underlying implementation for records, which in turn are used to
  4157. implement modules, so all of these object now print differently and in
  4158. a more informative way.
  4159. The Scheme printer will examine the builtin variable *struct-printer*
  4160. whenever it needs to print a structure object. When this variable is
  4161. not `#f' it is deemed to be a procedure and will be applied to the
  4162. structure object and the output port. When *struct-printer* is `#f'
  4163. or the procedure return `#f' the structure object will be printed in
  4164. the boring #<struct 80458270> form.
  4165. This hook is used by some routines in ice-9/boot-9.scm to implement
  4166. type specific printing routines. Please read the comments there about
  4167. "printing structs".
  4168. One of the more specific uses of structs are records. The printing
  4169. procedure that could be passed to MAKE-RECORD-TYPE is now actually
  4170. called. It should behave like a *struct-printer* procedure (described
  4171. above).
  4172. ** Guile now supports a new R4RS-compliant syntax for keywords. A
  4173. token of the form #:NAME, where NAME has the same syntax as a Scheme
  4174. symbol, is the external representation of the keyword named NAME.
  4175. Keyword objects print using this syntax as well, so values containing
  4176. keyword objects can be read back into Guile. When used in an
  4177. expression, keywords are self-quoting objects.
  4178. Guile suports this read syntax, and uses this print syntax, regardless
  4179. of the current setting of the `keyword' read option. The `keyword'
  4180. read option only controls whether Guile recognizes the `:NAME' syntax,
  4181. which is incompatible with R4RS. (R4RS says such token represent
  4182. symbols.)
  4183. ** Guile has regular expression support again. Guile 1.0 included
  4184. functions for matching regular expressions, based on the Rx library.
  4185. In Guile 1.1, the Guile/Rx interface was removed to simplify the
  4186. distribution, and thus Guile had no regular expression support. Guile
  4187. 1.2 again supports the most commonly used functions, and supports all
  4188. of SCSH's regular expression functions.
  4189. If your system does not include a POSIX regular expression library,
  4190. and you have not linked Guile with a third-party regexp library such as
  4191. Rx, these functions will not be available. You can tell whether your
  4192. Guile installation includes regular expression support by checking
  4193. whether the `*features*' list includes the `regex' symbol.
  4194. *** regexp functions
  4195. By default, Guile supports POSIX extended regular expressions. That
  4196. means that the characters `(', `)', `+' and `?' are special, and must
  4197. be escaped if you wish to match the literal characters.
  4198. This regular expression interface was modeled after that implemented
  4199. by SCSH, the Scheme Shell. It is intended to be upwardly compatible
  4200. with SCSH regular expressions.
  4201. **** Function: string-match PATTERN STR [START]
  4202. Compile the string PATTERN into a regular expression and compare
  4203. it with STR. The optional numeric argument START specifies the
  4204. position of STR at which to begin matching.
  4205. `string-match' returns a "match structure" which describes what,
  4206. if anything, was matched by the regular expression. *Note Match
  4207. Structures::. If STR does not match PATTERN at all,
  4208. `string-match' returns `#f'.
  4209. Each time `string-match' is called, it must compile its PATTERN
  4210. argument into a regular expression structure. This operation is
  4211. expensive, which makes `string-match' inefficient if the same regular
  4212. expression is used several times (for example, in a loop). For better
  4213. performance, you can compile a regular expression in advance and then
  4214. match strings against the compiled regexp.
  4215. **** Function: make-regexp STR [FLAGS]
  4216. Compile the regular expression described by STR, and return the
  4217. compiled regexp structure. If STR does not describe a legal
  4218. regular expression, `make-regexp' throws a
  4219. `regular-expression-syntax' error.
  4220. FLAGS may be the bitwise-or of one or more of the following:
  4221. **** Constant: regexp/extended
  4222. Use POSIX Extended Regular Expression syntax when interpreting
  4223. STR. If not set, POSIX Basic Regular Expression syntax is used.
  4224. If the FLAGS argument is omitted, we assume regexp/extended.
  4225. **** Constant: regexp/icase
  4226. Do not differentiate case. Subsequent searches using the
  4227. returned regular expression will be case insensitive.
  4228. **** Constant: regexp/newline
  4229. Match-any-character operators don't match a newline.
  4230. A non-matching list ([^...]) not containing a newline matches a
  4231. newline.
  4232. Match-beginning-of-line operator (^) matches the empty string
  4233. immediately after a newline, regardless of whether the FLAGS
  4234. passed to regexp-exec contain regexp/notbol.
  4235. Match-end-of-line operator ($) matches the empty string
  4236. immediately before a newline, regardless of whether the FLAGS
  4237. passed to regexp-exec contain regexp/noteol.
  4238. **** Function: regexp-exec REGEXP STR [START [FLAGS]]
  4239. Match the compiled regular expression REGEXP against `str'. If
  4240. the optional integer START argument is provided, begin matching
  4241. from that position in the string. Return a match structure
  4242. describing the results of the match, or `#f' if no match could be
  4243. found.
  4244. FLAGS may be the bitwise-or of one or more of the following:
  4245. **** Constant: regexp/notbol
  4246. The match-beginning-of-line operator always fails to match (but
  4247. see the compilation flag regexp/newline above) This flag may be
  4248. used when different portions of a string are passed to
  4249. regexp-exec and the beginning of the string should not be
  4250. interpreted as the beginning of the line.
  4251. **** Constant: regexp/noteol
  4252. The match-end-of-line operator always fails to match (but see the
  4253. compilation flag regexp/newline above)
  4254. **** Function: regexp? OBJ
  4255. Return `#t' if OBJ is a compiled regular expression, or `#f'
  4256. otherwise.
  4257. Regular expressions are commonly used to find patterns in one string
  4258. and replace them with the contents of another string.
  4259. **** Function: regexp-substitute PORT MATCH [ITEM...]
  4260. Write to the output port PORT selected contents of the match
  4261. structure MATCH. Each ITEM specifies what should be written, and
  4262. may be one of the following arguments:
  4263. * A string. String arguments are written out verbatim.
  4264. * An integer. The submatch with that number is written.
  4265. * The symbol `pre'. The portion of the matched string preceding
  4266. the regexp match is written.
  4267. * The symbol `post'. The portion of the matched string
  4268. following the regexp match is written.
  4269. PORT may be `#f', in which case nothing is written; instead,
  4270. `regexp-substitute' constructs a string from the specified ITEMs
  4271. and returns that.
  4272. **** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
  4273. Similar to `regexp-substitute', but can be used to perform global
  4274. substitutions on STR. Instead of taking a match structure as an
  4275. argument, `regexp-substitute/global' takes two string arguments: a
  4276. REGEXP string describing a regular expression, and a TARGET string
  4277. which should be matched against this regular expression.
  4278. Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
  4279. exceptions:
  4280. * A function may be supplied. When this function is called, it
  4281. will be passed one argument: a match structure for a given
  4282. regular expression match. It should return a string to be
  4283. written out to PORT.
  4284. * The `post' symbol causes `regexp-substitute/global' to recurse
  4285. on the unmatched portion of STR. This *must* be supplied in
  4286. order to perform global search-and-replace on STR; if it is
  4287. not present among the ITEMs, then `regexp-substitute/global'
  4288. will return after processing a single match.
  4289. *** Match Structures
  4290. A "match structure" is the object returned by `string-match' and
  4291. `regexp-exec'. It describes which portion of a string, if any, matched
  4292. the given regular expression. Match structures include: a reference to
  4293. the string that was checked for matches; the starting and ending
  4294. positions of the regexp match; and, if the regexp included any
  4295. parenthesized subexpressions, the starting and ending positions of each
  4296. submatch.
  4297. In each of the regexp match functions described below, the `match'
  4298. argument must be a match structure returned by a previous call to
  4299. `string-match' or `regexp-exec'. Most of these functions return some
  4300. information about the original target string that was matched against a
  4301. regular expression; we will call that string TARGET for easy reference.
  4302. **** Function: regexp-match? OBJ
  4303. Return `#t' if OBJ is a match structure returned by a previous
  4304. call to `regexp-exec', or `#f' otherwise.
  4305. **** Function: match:substring MATCH [N]
  4306. Return the portion of TARGET matched by subexpression number N.
  4307. Submatch 0 (the default) represents the entire regexp match. If
  4308. the regular expression as a whole matched, but the subexpression
  4309. number N did not match, return `#f'.
  4310. **** Function: match:start MATCH [N]
  4311. Return the starting position of submatch number N.
  4312. **** Function: match:end MATCH [N]
  4313. Return the ending position of submatch number N.
  4314. **** Function: match:prefix MATCH
  4315. Return the unmatched portion of TARGET preceding the regexp match.
  4316. **** Function: match:suffix MATCH
  4317. Return the unmatched portion of TARGET following the regexp match.
  4318. **** Function: match:count MATCH
  4319. Return the number of parenthesized subexpressions from MATCH.
  4320. Note that the entire regular expression match itself counts as a
  4321. subexpression, and failed submatches are included in the count.
  4322. **** Function: match:string MATCH
  4323. Return the original TARGET string.
  4324. *** Backslash Escapes
  4325. Sometimes you will want a regexp to match characters like `*' or `$'
  4326. exactly. For example, to check whether a particular string represents
  4327. a menu entry from an Info node, it would be useful to match it against
  4328. a regexp like `^* [^:]*::'. However, this won't work; because the
  4329. asterisk is a metacharacter, it won't match the `*' at the beginning of
  4330. the string. In this case, we want to make the first asterisk un-magic.
  4331. You can do this by preceding the metacharacter with a backslash
  4332. character `\'. (This is also called "quoting" the metacharacter, and
  4333. is known as a "backslash escape".) When Guile sees a backslash in a
  4334. regular expression, it considers the following glyph to be an ordinary
  4335. character, no matter what special meaning it would ordinarily have.
  4336. Therefore, we can make the above example work by changing the regexp to
  4337. `^\* [^:]*::'. The `\*' sequence tells the regular expression engine
  4338. to match only a single asterisk in the target string.
  4339. Since the backslash is itself a metacharacter, you may force a
  4340. regexp to match a backslash in the target string by preceding the
  4341. backslash with itself. For example, to find variable references in a
  4342. TeX program, you might want to find occurrences of the string `\let\'
  4343. followed by any number of alphabetic characters. The regular expression
  4344. `\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
  4345. each match a single backslash in the target string.
  4346. **** Function: regexp-quote STR
  4347. Quote each special character found in STR with a backslash, and
  4348. return the resulting string.
  4349. *Very important:* Using backslash escapes in Guile source code (as
  4350. in Emacs Lisp or C) can be tricky, because the backslash character has
  4351. special meaning for the Guile reader. For example, if Guile encounters
  4352. the character sequence `\n' in the middle of a string while processing
  4353. Scheme code, it replaces those characters with a newline character.
  4354. Similarly, the character sequence `\t' is replaced by a horizontal tab.
  4355. Several of these "escape sequences" are processed by the Guile reader
  4356. before your code is executed. Unrecognized escape sequences are
  4357. ignored: if the characters `\*' appear in a string, they will be
  4358. translated to the single character `*'.
  4359. This translation is obviously undesirable for regular expressions,
  4360. since we want to be able to include backslashes in a string in order to
  4361. escape regexp metacharacters. Therefore, to make sure that a backslash
  4362. is preserved in a string in your Guile program, you must use *two*
  4363. consecutive backslashes:
  4364. (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
  4365. The string in this example is preprocessed by the Guile reader before
  4366. any code is executed. The resulting argument to `make-regexp' is the
  4367. string `^\* [^:]*', which is what we really want.
  4368. This also means that in order to write a regular expression that
  4369. matches a single backslash character, the regular expression string in
  4370. the source code must include *four* backslashes. Each consecutive pair
  4371. of backslashes gets translated by the Guile reader to a single
  4372. backslash, and the resulting double-backslash is interpreted by the
  4373. regexp engine as matching a single backslash character. Hence:
  4374. (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
  4375. The reason for the unwieldiness of this syntax is historical. Both
  4376. regular expression pattern matchers and Unix string processing systems
  4377. have traditionally used backslashes with the special meanings described
  4378. above. The POSIX regular expression specification and ANSI C standard
  4379. both require these semantics. Attempting to abandon either convention
  4380. would cause other kinds of compatibility problems, possibly more severe
  4381. ones. Therefore, without extending the Scheme reader to support
  4382. strings with different quoting conventions (an ungainly and confusing
  4383. extension when implemented in other languages), we must adhere to this
  4384. cumbersome escape syntax.
  4385. * Changes to the gh_ interface
  4386. * Changes to the scm_ interface
  4387. * Changes to system call interfaces:
  4388. ** The value returned by `raise' is now unspecified. It throws an exception
  4389. if an error occurs.
  4390. *** A new procedure `sigaction' can be used to install signal handlers
  4391. (sigaction signum [action] [flags])
  4392. signum is the signal number, which can be specified using the value
  4393. of SIGINT etc.
  4394. If action is omitted, sigaction returns a pair: the CAR is the current
  4395. signal hander, which will be either an integer with the value SIG_DFL
  4396. (default action) or SIG_IGN (ignore), or the Scheme procedure which
  4397. handles the signal, or #f if a non-Scheme procedure handles the
  4398. signal. The CDR contains the current sigaction flags for the handler.
  4399. If action is provided, it is installed as the new handler for signum.
  4400. action can be a Scheme procedure taking one argument, or the value of
  4401. SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
  4402. whatever signal handler was installed before sigaction was first used.
  4403. Flags can optionally be specified for the new handler (SA_RESTART is
  4404. always used if the system provides it, so need not be specified.) The
  4405. return value is a pair with information about the old handler as
  4406. described above.
  4407. This interface does not provide access to the "signal blocking"
  4408. facility. Maybe this is not needed, since the thread support may
  4409. provide solutions to the problem of consistent access to data
  4410. structures.
  4411. *** A new procedure `flush-all-ports' is equivalent to running
  4412. `force-output' on every port open for output.
  4413. ** Guile now provides information on how it was built, via the new
  4414. global variable, %guile-build-info. This variable records the values
  4415. of the standard GNU makefile directory variables as an assocation
  4416. list, mapping variable names (symbols) onto directory paths (strings).
  4417. For example, to find out where the Guile link libraries were
  4418. installed, you can say:
  4419. guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
  4420. * Changes to the scm_ interface
  4421. ** The new function scm_handle_by_message_noexit is just like the
  4422. existing scm_handle_by_message function, except that it doesn't call
  4423. exit to terminate the process. Instead, it prints a message and just
  4424. returns #f. This might be a more appropriate catch-all handler for
  4425. new dynamic roots and threads.
  4426. Changes in Guile 1.1 (released Friday, May 16 1997):
  4427. * Changes to the distribution.
  4428. The Guile 1.0 distribution has been split up into several smaller
  4429. pieces:
  4430. guile-core --- the Guile interpreter itself.
  4431. guile-tcltk --- the interface between the Guile interpreter and
  4432. Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
  4433. is a toolkit for building graphical user interfaces.
  4434. guile-rgx-ctax --- the interface between Guile and the Rx regular
  4435. expression matcher, and the translator for the Ctax
  4436. programming language. These are packaged together because the
  4437. Ctax translator uses Rx to parse Ctax source code.
  4438. This NEWS file describes the changes made to guile-core since the 1.0
  4439. release.
  4440. We no longer distribute the documentation, since it was either out of
  4441. date, or incomplete. As soon as we have current documentation, we
  4442. will distribute it.
  4443. * Changes to the stand-alone interpreter
  4444. ** guile now accepts command-line arguments compatible with SCSH, Olin
  4445. Shivers' Scheme Shell.
  4446. In general, arguments are evaluated from left to right, but there are
  4447. exceptions. The following switches stop argument processing, and
  4448. stash all remaining command-line arguments as the value returned by
  4449. the (command-line) function.
  4450. -s SCRIPT load Scheme source code from FILE, and exit
  4451. -c EXPR evalute Scheme expression EXPR, and exit
  4452. -- stop scanning arguments; run interactively
  4453. The switches below are processed as they are encountered.
  4454. -l FILE load Scheme source code from FILE
  4455. -e FUNCTION after reading script, apply FUNCTION to
  4456. command line arguments
  4457. -ds do -s script at this point
  4458. --emacs enable Emacs protocol (experimental)
  4459. -h, --help display this help and exit
  4460. -v, --version display version information and exit
  4461. \ read arguments from following script lines
  4462. So, for example, here is a Guile script named `ekko' (thanks, Olin)
  4463. which re-implements the traditional "echo" command:
  4464. #!/usr/local/bin/guile -s
  4465. !#
  4466. (define (main args)
  4467. (map (lambda (arg) (display arg) (display " "))
  4468. (cdr args))
  4469. (newline))
  4470. (main (command-line))
  4471. Suppose we invoke this script as follows:
  4472. ekko a speckled gecko
  4473. Through the magic of Unix script processing (triggered by the `#!'
  4474. token at the top of the file), /usr/local/bin/guile receives the
  4475. following list of command-line arguments:
  4476. ("-s" "./ekko" "a" "speckled" "gecko")
  4477. Unix inserts the name of the script after the argument specified on
  4478. the first line of the file (in this case, "-s"), and then follows that
  4479. with the arguments given to the script. Guile loads the script, which
  4480. defines the `main' function, and then applies it to the list of
  4481. remaining command-line arguments, ("a" "speckled" "gecko").
  4482. In Unix, the first line of a script file must take the following form:
  4483. #!INTERPRETER ARGUMENT
  4484. where INTERPRETER is the absolute filename of the interpreter
  4485. executable, and ARGUMENT is a single command-line argument to pass to
  4486. the interpreter.
  4487. You may only pass one argument to the interpreter, and its length is
  4488. limited. These restrictions can be annoying to work around, so Guile
  4489. provides a general mechanism (borrowed from, and compatible with,
  4490. SCSH) for circumventing them.
  4491. If the ARGUMENT in a Guile script is a single backslash character,
  4492. `\', Guile will open the script file, parse arguments from its second
  4493. and subsequent lines, and replace the `\' with them. So, for example,
  4494. here is another implementation of the `ekko' script:
  4495. #!/usr/local/bin/guile \
  4496. -e main -s
  4497. !#
  4498. (define (main args)
  4499. (for-each (lambda (arg) (display arg) (display " "))
  4500. (cdr args))
  4501. (newline))
  4502. If the user invokes this script as follows:
  4503. ekko a speckled gecko
  4504. Unix expands this into
  4505. /usr/local/bin/guile \ ekko a speckled gecko
  4506. When Guile sees the `\' argument, it replaces it with the arguments
  4507. read from the second line of the script, producing:
  4508. /usr/local/bin/guile -e main -s ekko a speckled gecko
  4509. This tells Guile to load the `ekko' script, and apply the function
  4510. `main' to the argument list ("a" "speckled" "gecko").
  4511. Here is how Guile parses the command-line arguments:
  4512. - Each space character terminates an argument. This means that two
  4513. spaces in a row introduce an empty-string argument.
  4514. - The tab character is not permitted (unless you quote it with the
  4515. backslash character, as described below), to avoid confusion.
  4516. - The newline character terminates the sequence of arguments, and will
  4517. also terminate a final non-empty argument. (However, a newline
  4518. following a space will not introduce a final empty-string argument;
  4519. it only terminates the argument list.)
  4520. - The backslash character is the escape character. It escapes
  4521. backslash, space, tab, and newline. The ANSI C escape sequences
  4522. like \n and \t are also supported. These produce argument
  4523. constituents; the two-character combination \n doesn't act like a
  4524. terminating newline. The escape sequence \NNN for exactly three
  4525. octal digits reads as the character whose ASCII code is NNN. As
  4526. above, characters produced this way are argument constituents.
  4527. Backslash followed by other characters is not allowed.
  4528. * Changes to the procedure for linking libguile with your programs
  4529. ** Guile now builds and installs a shared guile library, if your
  4530. system support shared libraries. (It still builds a static library on
  4531. all systems.) Guile automatically detects whether your system
  4532. supports shared libraries. To prevent Guile from buildisg shared
  4533. libraries, pass the `--disable-shared' flag to the configure script.
  4534. Guile takes longer to compile when it builds shared libraries, because
  4535. it must compile every file twice --- once to produce position-
  4536. independent object code, and once to produce normal object code.
  4537. ** The libthreads library has been merged into libguile.
  4538. To link a program against Guile, you now need only link against
  4539. -lguile and -lqt; -lthreads is no longer needed. If you are using
  4540. autoconf to generate configuration scripts for your application, the
  4541. following lines should suffice to add the appropriate libraries to
  4542. your link command:
  4543. ### Find quickthreads and libguile.
  4544. AC_CHECK_LIB(qt, main)
  4545. AC_CHECK_LIB(guile, scm_shell)
  4546. * Changes to Scheme functions
  4547. ** Guile Scheme's special syntax for keyword objects is now optional,
  4548. and disabled by default.
  4549. The syntax variation from R4RS made it difficult to port some
  4550. interesting packages to Guile. The routines which accepted keyword
  4551. arguments (mostly in the module system) have been modified to also
  4552. accept symbols whose names begin with `:'.
  4553. To change the keyword syntax, you must first import the (ice-9 debug)
  4554. module:
  4555. (use-modules (ice-9 debug))
  4556. Then you can enable the keyword syntax as follows:
  4557. (read-set! keywords 'prefix)
  4558. To disable keyword syntax, do this:
  4559. (read-set! keywords #f)
  4560. ** Many more primitive functions accept shared substrings as
  4561. arguments. In the past, these functions required normal, mutable
  4562. strings as arguments, although they never made use of this
  4563. restriction.
  4564. ** The uniform array functions now operate on byte vectors. These
  4565. functions are `array-fill!', `serial-array-copy!', `array-copy!',
  4566. `serial-array-map', `array-map', `array-for-each', and
  4567. `array-index-map!'.
  4568. ** The new functions `trace' and `untrace' implement simple debugging
  4569. support for Scheme functions.
  4570. The `trace' function accepts any number of procedures as arguments,
  4571. and tells the Guile interpreter to display each procedure's name and
  4572. arguments each time the procedure is invoked. When invoked with no
  4573. arguments, `trace' returns the list of procedures currently being
  4574. traced.
  4575. The `untrace' function accepts any number of procedures as arguments,
  4576. and tells the Guile interpreter not to trace them any more. When
  4577. invoked with no arguments, `untrace' untraces all curretly traced
  4578. procedures.
  4579. The tracing in Guile has an advantage over most other systems: we
  4580. don't create new procedure objects, but mark the procedure objects
  4581. themselves. This means that anonymous and internal procedures can be
  4582. traced.
  4583. ** The function `assert-repl-prompt' has been renamed to
  4584. `set-repl-prompt!'. It takes one argument, PROMPT.
  4585. - If PROMPT is #f, the Guile read-eval-print loop will not prompt.
  4586. - If PROMPT is a string, we use it as a prompt.
  4587. - If PROMPT is a procedure accepting no arguments, we call it, and
  4588. display the result as a prompt.
  4589. - Otherwise, we display "> ".
  4590. ** The new function `eval-string' reads Scheme expressions from a
  4591. string and evaluates them, returning the value of the last expression
  4592. in the string. If the string contains no expressions, it returns an
  4593. unspecified value.
  4594. ** The new function `thunk?' returns true iff its argument is a
  4595. procedure of zero arguments.
  4596. ** `defined?' is now a builtin function, instead of syntax. This
  4597. means that its argument should be quoted. It returns #t iff its
  4598. argument is bound in the current module.
  4599. ** The new syntax `use-modules' allows you to add new modules to your
  4600. environment without re-typing a complete `define-module' form. It
  4601. accepts any number of module names as arguments, and imports their
  4602. public bindings into the current module.
  4603. ** The new function (module-defined? NAME MODULE) returns true iff
  4604. NAME, a symbol, is defined in MODULE, a module object.
  4605. ** The new function `builtin-bindings' creates and returns a hash
  4606. table containing copies of all the root module's bindings.
  4607. ** The new function `builtin-weak-bindings' does the same as
  4608. `builtin-bindings', but creates a doubly-weak hash table.
  4609. ** The `equal?' function now considers variable objects to be
  4610. equivalent if they have the same name and the same value.
  4611. ** The new function `command-line' returns the command-line arguments
  4612. given to Guile, as a list of strings.
  4613. When using guile as a script interpreter, `command-line' returns the
  4614. script's arguments; those processed by the interpreter (like `-s' or
  4615. `-c') are omitted. (In other words, you get the normal, expected
  4616. behavior.) Any application that uses scm_shell to process its
  4617. command-line arguments gets this behavior as well.
  4618. ** The new function `load-user-init' looks for a file called `.guile'
  4619. in the user's home directory, and loads it if it exists. This is
  4620. mostly for use by the code generated by scm_compile_shell_switches,
  4621. but we thought it might also be useful in other circumstances.
  4622. ** The new function `log10' returns the base-10 logarithm of its
  4623. argument.
  4624. ** Changes to I/O functions
  4625. *** The functions `read', `primitive-load', `read-and-eval!', and
  4626. `primitive-load-path' no longer take optional arguments controlling
  4627. case insensitivity and a `#' parser.
  4628. Case sensitivity is now controlled by a read option called
  4629. `case-insensitive'. The user can add new `#' syntaxes with the
  4630. `read-hash-extend' function (see below).
  4631. *** The new function `read-hash-extend' allows the user to change the
  4632. syntax of Guile Scheme in a somewhat controlled way.
  4633. (read-hash-extend CHAR PROC)
  4634. When parsing S-expressions, if we read a `#' character followed by
  4635. the character CHAR, use PROC to parse an object from the stream.
  4636. If PROC is #f, remove any parsing procedure registered for CHAR.
  4637. The reader applies PROC to two arguments: CHAR and an input port.
  4638. *** The new functions read-delimited and read-delimited! provide a
  4639. general mechanism for doing delimited input on streams.
  4640. (read-delimited DELIMS [PORT HANDLE-DELIM])
  4641. Read until we encounter one of the characters in DELIMS (a string),
  4642. or end-of-file. PORT is the input port to read from; it defaults to
  4643. the current input port. The HANDLE-DELIM parameter determines how
  4644. the terminating character is handled; it should be one of the
  4645. following symbols:
  4646. 'trim omit delimiter from result
  4647. 'peek leave delimiter character in input stream
  4648. 'concat append delimiter character to returned value
  4649. 'split return a pair: (RESULT . TERMINATOR)
  4650. HANDLE-DELIM defaults to 'peek.
  4651. (read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
  4652. A side-effecting variant of `read-delimited'.
  4653. The data is written into the string BUF at the indices in the
  4654. half-open interval [START, END); the default interval is the whole
  4655. string: START = 0 and END = (string-length BUF). The values of
  4656. START and END must specify a well-defined interval in BUF, i.e.
  4657. 0 <= START <= END <= (string-length BUF).
  4658. It returns NBYTES, the number of bytes read. If the buffer filled
  4659. up without a delimiter character being found, it returns #f. If the
  4660. port is at EOF when the read starts, it returns the EOF object.
  4661. If an integer is returned (i.e., the read is successfully terminated
  4662. by reading a delimiter character), then the HANDLE-DELIM parameter
  4663. determines how to handle the terminating character. It is described
  4664. above, and defaults to 'peek.
  4665. (The descriptions of these functions were borrowed from the SCSH
  4666. manual, by Olin Shivers and Brian Carlstrom.)
  4667. *** The `%read-delimited!' function is the primitive used to implement
  4668. `read-delimited' and `read-delimited!'.
  4669. (%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
  4670. This returns a pair of values: (TERMINATOR . NUM-READ).
  4671. - TERMINATOR describes why the read was terminated. If it is a
  4672. character or the eof object, then that is the value that terminated
  4673. the read. If it is #f, the function filled the buffer without finding
  4674. a delimiting character.
  4675. - NUM-READ is the number of characters read into BUF.
  4676. If the read is successfully terminated by reading a delimiter
  4677. character, then the gobble? parameter determines what to do with the
  4678. terminating character. If true, the character is removed from the
  4679. input stream; if false, the character is left in the input stream
  4680. where a subsequent read operation will retrieve it. In either case,
  4681. the character is also the first value returned by the procedure call.
  4682. (The descriptions of this function was borrowed from the SCSH manual,
  4683. by Olin Shivers and Brian Carlstrom.)
  4684. *** The `read-line' and `read-line!' functions have changed; they now
  4685. trim the terminator by default; previously they appended it to the
  4686. returned string. For the old behavior, use (read-line PORT 'concat).
  4687. *** The functions `uniform-array-read!' and `uniform-array-write!' now
  4688. take new optional START and END arguments, specifying the region of
  4689. the array to read and write.
  4690. *** The `ungetc-char-ready?' function has been removed. We feel it's
  4691. inappropriate for an interface to expose implementation details this
  4692. way.
  4693. ** Changes to the Unix library and system call interface
  4694. *** The new fcntl function provides access to the Unix `fcntl' system
  4695. call.
  4696. (fcntl PORT COMMAND VALUE)
  4697. Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
  4698. Values for COMMAND are:
  4699. F_DUPFD duplicate a file descriptor
  4700. F_GETFD read the descriptor's close-on-exec flag
  4701. F_SETFD set the descriptor's close-on-exec flag to VALUE
  4702. F_GETFL read the descriptor's flags, as set on open
  4703. F_SETFL set the descriptor's flags, as set on open to VALUE
  4704. F_GETOWN return the process ID of a socket's owner, for SIGIO
  4705. F_SETOWN set the process that owns a socket to VALUE, for SIGIO
  4706. FD_CLOEXEC not sure what this is
  4707. For details, see the documentation for the fcntl system call.
  4708. *** The arguments to `select' have changed, for compatibility with
  4709. SCSH. The TIMEOUT parameter may now be non-integral, yielding the
  4710. expected behavior. The MILLISECONDS parameter has been changed to
  4711. MICROSECONDS, to more closely resemble the underlying system call.
  4712. The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
  4713. corresponding return set will be the same.
  4714. *** The arguments to the `mknod' system call have changed. They are
  4715. now:
  4716. (mknod PATH TYPE PERMS DEV)
  4717. Create a new file (`node') in the file system. PATH is the name of
  4718. the file to create. TYPE is the kind of file to create; it should
  4719. be 'fifo, 'block-special, or 'char-special. PERMS specifies the
  4720. permission bits to give the newly created file. If TYPE is
  4721. 'block-special or 'char-special, DEV specifies which device the
  4722. special file refers to; its interpretation depends on the kind of
  4723. special file being created.
  4724. *** The `fork' function has been renamed to `primitive-fork', to avoid
  4725. clashing with various SCSH forks.
  4726. *** The `recv' and `recvfrom' functions have been renamed to `recv!'
  4727. and `recvfrom!'. They no longer accept a size for a second argument;
  4728. you must pass a string to hold the received value. They no longer
  4729. return the buffer. Instead, `recv' returns the length of the message
  4730. received, and `recvfrom' returns a pair containing the packet's length
  4731. and originating address.
  4732. *** The file descriptor datatype has been removed, as have the
  4733. `read-fd', `write-fd', `close', `lseek', and `dup' functions.
  4734. We plan to replace these functions with a SCSH-compatible interface.
  4735. *** The `create' function has been removed; it's just a special case
  4736. of `open'.
  4737. *** There are new functions to break down process termination status
  4738. values. In the descriptions below, STATUS is a value returned by
  4739. `waitpid'.
  4740. (status:exit-val STATUS)
  4741. If the child process exited normally, this function returns the exit
  4742. code for the child process (i.e., the value passed to exit, or
  4743. returned from main). If the child process did not exit normally,
  4744. this function returns #f.
  4745. (status:stop-sig STATUS)
  4746. If the child process was suspended by a signal, this function
  4747. returns the signal that suspended the child. Otherwise, it returns
  4748. #f.
  4749. (status:term-sig STATUS)
  4750. If the child process terminated abnormally, this function returns
  4751. the signal that terminated the child. Otherwise, this function
  4752. returns false.
  4753. POSIX promises that exactly one of these functions will return true on
  4754. a valid STATUS value.
  4755. These functions are compatible with SCSH.
  4756. *** There are new accessors and setters for the broken-out time vectors
  4757. returned by `localtime', `gmtime', and that ilk. They are:
  4758. Component Accessor Setter
  4759. ========================= ============ ============
  4760. seconds tm:sec set-tm:sec
  4761. minutes tm:min set-tm:min
  4762. hours tm:hour set-tm:hour
  4763. day of the month tm:mday set-tm:mday
  4764. month tm:mon set-tm:mon
  4765. year tm:year set-tm:year
  4766. day of the week tm:wday set-tm:wday
  4767. day in the year tm:yday set-tm:yday
  4768. daylight saving time tm:isdst set-tm:isdst
  4769. GMT offset, seconds tm:gmtoff set-tm:gmtoff
  4770. name of time zone tm:zone set-tm:zone
  4771. *** There are new accessors for the vectors returned by `uname',
  4772. describing the host system:
  4773. Component Accessor
  4774. ============================================== ================
  4775. name of the operating system implementation utsname:sysname
  4776. network name of this machine utsname:nodename
  4777. release level of the operating system utsname:release
  4778. version level of the operating system utsname:version
  4779. machine hardware platform utsname:machine
  4780. *** There are new accessors for the vectors returned by `getpw',
  4781. `getpwnam', `getpwuid', and `getpwent', describing entries from the
  4782. system's user database:
  4783. Component Accessor
  4784. ====================== =================
  4785. user name passwd:name
  4786. user password passwd:passwd
  4787. user id passwd:uid
  4788. group id passwd:gid
  4789. real name passwd:gecos
  4790. home directory passwd:dir
  4791. shell program passwd:shell
  4792. *** There are new accessors for the vectors returned by `getgr',
  4793. `getgrnam', `getgrgid', and `getgrent', describing entries from the
  4794. system's group database:
  4795. Component Accessor
  4796. ======================= ============
  4797. group name group:name
  4798. group password group:passwd
  4799. group id group:gid
  4800. group members group:mem
  4801. *** There are new accessors for the vectors returned by `gethost',
  4802. `gethostbyaddr', `gethostbyname', and `gethostent', describing
  4803. internet hosts:
  4804. Component Accessor
  4805. ========================= ===============
  4806. official name of host hostent:name
  4807. alias list hostent:aliases
  4808. host address type hostent:addrtype
  4809. length of address hostent:length
  4810. list of addresses hostent:addr-list
  4811. *** There are new accessors for the vectors returned by `getnet',
  4812. `getnetbyaddr', `getnetbyname', and `getnetent', describing internet
  4813. networks:
  4814. Component Accessor
  4815. ========================= ===============
  4816. official name of net netent:name
  4817. alias list netent:aliases
  4818. net number type netent:addrtype
  4819. net number netent:net
  4820. *** There are new accessors for the vectors returned by `getproto',
  4821. `getprotobyname', `getprotobynumber', and `getprotoent', describing
  4822. internet protocols:
  4823. Component Accessor
  4824. ========================= ===============
  4825. official protocol name protoent:name
  4826. alias list protoent:aliases
  4827. protocol number protoent:proto
  4828. *** There are new accessors for the vectors returned by `getserv',
  4829. `getservbyname', `getservbyport', and `getservent', describing
  4830. internet protocols:
  4831. Component Accessor
  4832. ========================= ===============
  4833. official service name servent:name
  4834. alias list servent:aliases
  4835. port number servent:port
  4836. protocol to use servent:proto
  4837. *** There are new accessors for the sockaddr structures returned by
  4838. `accept', `getsockname', `getpeername', `recvfrom!':
  4839. Component Accessor
  4840. ======================================== ===============
  4841. address format (`family') sockaddr:fam
  4842. path, for file domain addresses sockaddr:path
  4843. address, for internet domain addresses sockaddr:addr
  4844. TCP or UDP port, for internet sockaddr:port
  4845. *** The `getpwent', `getgrent', `gethostent', `getnetent',
  4846. `getprotoent', and `getservent' functions now return #f at the end of
  4847. the user database. (They used to throw an exception.)
  4848. Note that calling MUMBLEent function is equivalent to calling the
  4849. corresponding MUMBLE function with no arguments.
  4850. *** The `setpwent', `setgrent', `sethostent', `setnetent',
  4851. `setprotoent', and `setservent' routines now take no arguments.
  4852. *** The `gethost', `getproto', `getnet', and `getserv' functions now
  4853. provide more useful information when they throw an exception.
  4854. *** The `lnaof' function has been renamed to `inet-lnaof'.
  4855. *** Guile now claims to have the `current-time' feature.
  4856. *** The `mktime' function now takes an optional second argument ZONE,
  4857. giving the time zone to use for the conversion. ZONE should be a
  4858. string, in the same format as expected for the "TZ" environment variable.
  4859. *** The `strptime' function now returns a pair (TIME . COUNT), where
  4860. TIME is the parsed time as a vector, and COUNT is the number of
  4861. characters from the string left unparsed. This function used to
  4862. return the remaining characters as a string.
  4863. *** The `gettimeofday' function has replaced the old `time+ticks' function.
  4864. The return value is now (SECONDS . MICROSECONDS); the fractional
  4865. component is no longer expressed in "ticks".
  4866. *** The `ticks/sec' constant has been removed, in light of the above change.
  4867. * Changes to the gh_ interface
  4868. ** gh_eval_str() now returns an SCM object which is the result of the
  4869. evaluation
  4870. ** gh_scm2str() now copies the Scheme data to a caller-provided C
  4871. array
  4872. ** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
  4873. and returns the array
  4874. ** gh_scm2str0() is gone: there is no need to distinguish
  4875. null-terminated from non-null-terminated, since gh_scm2newstr() allows
  4876. the user to interpret the data both ways.
  4877. * Changes to the scm_ interface
  4878. ** The new function scm_symbol_value0 provides an easy way to get a
  4879. symbol's value from C code:
  4880. SCM scm_symbol_value0 (char *NAME)
  4881. Return the value of the symbol named by the null-terminated string
  4882. NAME in the current module. If the symbol named NAME is unbound in
  4883. the current module, return SCM_UNDEFINED.
  4884. ** The new function scm_sysintern0 creates new top-level variables,
  4885. without assigning them a value.
  4886. SCM scm_sysintern0 (char *NAME)
  4887. Create a new Scheme top-level variable named NAME. NAME is a
  4888. null-terminated string. Return the variable's value cell.
  4889. ** The function scm_internal_catch is the guts of catch. It handles
  4890. all the mechanics of setting up a catch target, invoking the catch
  4891. body, and perhaps invoking the handler if the body does a throw.
  4892. The function is designed to be usable from C code, but is general
  4893. enough to implement all the semantics Guile Scheme expects from throw.
  4894. TAG is the catch tag. Typically, this is a symbol, but this function
  4895. doesn't actually care about that.
  4896. BODY is a pointer to a C function which runs the body of the catch;
  4897. this is the code you can throw from. We call it like this:
  4898. BODY (BODY_DATA, JMPBUF)
  4899. where:
  4900. BODY_DATA is just the BODY_DATA argument we received; we pass it
  4901. through to BODY as its first argument. The caller can make
  4902. BODY_DATA point to anything useful that BODY might need.
  4903. JMPBUF is the Scheme jmpbuf object corresponding to this catch,
  4904. which we have just created and initialized.
  4905. HANDLER is a pointer to a C function to deal with a throw to TAG,
  4906. should one occur. We call it like this:
  4907. HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
  4908. where
  4909. HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
  4910. same idea as BODY_DATA above.
  4911. THROWN_TAG is the tag that the user threw to; usually this is
  4912. TAG, but it could be something else if TAG was #t (i.e., a
  4913. catch-all), or the user threw to a jmpbuf.
  4914. THROW_ARGS is the list of arguments the user passed to the THROW
  4915. function.
  4916. BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
  4917. is just a pointer we pass through to HANDLER. We don't actually
  4918. use either of those pointers otherwise ourselves. The idea is
  4919. that, if our caller wants to communicate something to BODY or
  4920. HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
  4921. HANDLER can then use. Think of it as a way to make BODY and
  4922. HANDLER closures, not just functions; MUMBLE_DATA points to the
  4923. enclosed variables.
  4924. Of course, it's up to the caller to make sure that any data a
  4925. MUMBLE_DATA needs is protected from GC. A common way to do this is
  4926. to make MUMBLE_DATA a pointer to data stored in an automatic
  4927. structure variable; since the collector must scan the stack for
  4928. references anyway, this assures that any references in MUMBLE_DATA
  4929. will be found.
  4930. ** The new function scm_internal_lazy_catch is exactly like
  4931. scm_internal_catch, except:
  4932. - It does not unwind the stack (this is the major difference).
  4933. - If handler returns, its value is returned from the throw.
  4934. - BODY always receives #f as its JMPBUF argument (since there's no
  4935. jmpbuf associated with a lazy catch, because we don't unwind the
  4936. stack.)
  4937. ** scm_body_thunk is a new body function you can pass to
  4938. scm_internal_catch if you want the body to be like Scheme's `catch'
  4939. --- a thunk, or a function of one argument if the tag is #f.
  4940. BODY_DATA is a pointer to a scm_body_thunk_data structure, which
  4941. contains the Scheme procedure to invoke as the body, and the tag
  4942. we're catching. If the tag is #f, then we pass JMPBUF (created by
  4943. scm_internal_catch) to the body procedure; otherwise, the body gets
  4944. no arguments.
  4945. ** scm_handle_by_proc is a new handler function you can pass to
  4946. scm_internal_catch if you want the handler to act like Scheme's catch
  4947. --- call a procedure with the tag and the throw arguments.
  4948. If the user does a throw to this catch, this function runs a handler
  4949. procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
  4950. variable holding the Scheme procedure object to invoke. It ought to
  4951. be a pointer to an automatic variable (i.e., one living on the stack),
  4952. or the procedure object should be otherwise protected from GC.
  4953. ** scm_handle_by_message is a new handler function to use with
  4954. `scm_internal_catch' if you want Guile to print a message and die.
  4955. It's useful for dealing with throws to uncaught keys at the top level.
  4956. HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
  4957. message header to print; if zero, we use "guile" instead. That
  4958. text is followed by a colon, then the message described by ARGS.
  4959. ** The return type of scm_boot_guile is now void; the function does
  4960. not return a value, and indeed, never returns at all.
  4961. ** The new function scm_shell makes it easy for user applications to
  4962. process command-line arguments in a way that is compatible with the
  4963. stand-alone guile interpreter (which is in turn compatible with SCSH,
  4964. the Scheme shell).
  4965. To use the scm_shell function, first initialize any guile modules
  4966. linked into your application, and then call scm_shell with the values
  4967. of ARGC and ARGV your `main' function received. scm_shell will add
  4968. any SCSH-style meta-arguments from the top of the script file to the
  4969. argument vector, and then process the command-line arguments. This
  4970. generally means loading a script file or starting up an interactive
  4971. command interpreter. For details, see "Changes to the stand-alone
  4972. interpreter" above.
  4973. ** The new functions scm_get_meta_args and scm_count_argv help you
  4974. implement the SCSH-style meta-argument, `\'.
  4975. char **scm_get_meta_args (int ARGC, char **ARGV)
  4976. If the second element of ARGV is a string consisting of a single
  4977. backslash character (i.e. "\\" in Scheme notation), open the file
  4978. named by the following argument, parse arguments from it, and return
  4979. the spliced command line. The returned array is terminated by a
  4980. null pointer.
  4981. For details of argument parsing, see above, under "guile now accepts
  4982. command-line arguments compatible with SCSH..."
  4983. int scm_count_argv (char **ARGV)
  4984. Count the arguments in ARGV, assuming it is terminated by a null
  4985. pointer.
  4986. For an example of how these functions might be used, see the source
  4987. code for the function scm_shell in libguile/script.c.
  4988. You will usually want to use scm_shell instead of calling this
  4989. function yourself.
  4990. ** The new function scm_compile_shell_switches turns an array of
  4991. command-line arguments into Scheme code to carry out the actions they
  4992. describe. Given ARGC and ARGV, it returns a Scheme expression to
  4993. evaluate, and calls scm_set_program_arguments to make any remaining
  4994. command-line arguments available to the Scheme code. For example,
  4995. given the following arguments:
  4996. -e main -s ekko a speckled gecko
  4997. scm_set_program_arguments will return the following expression:
  4998. (begin (load "ekko") (main (command-line)) (quit))
  4999. You will usually want to use scm_shell instead of calling this
  5000. function yourself.
  5001. ** The function scm_shell_usage prints a usage message appropriate for
  5002. an interpreter that uses scm_compile_shell_switches to handle its
  5003. command-line arguments.
  5004. void scm_shell_usage (int FATAL, char *MESSAGE)
  5005. Print a usage message to the standard error output. If MESSAGE is
  5006. non-zero, write it before the usage message, followed by a newline.
  5007. If FATAL is non-zero, exit the process, using FATAL as the
  5008. termination status. (If you want to be compatible with Guile,
  5009. always use 1 as the exit status when terminating due to command-line
  5010. usage problems.)
  5011. You will usually want to use scm_shell instead of calling this
  5012. function yourself.
  5013. ** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
  5014. expressions. It used to return SCM_EOL. Earth-shattering.
  5015. ** The macros for declaring scheme objects in C code have been
  5016. rearranged slightly. They are now:
  5017. SCM_SYMBOL (C_NAME, SCHEME_NAME)
  5018. Declare a static SCM variable named C_NAME, and initialize it to
  5019. point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
  5020. be a C identifier, and SCHEME_NAME should be a C string.
  5021. SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
  5022. Just like SCM_SYMBOL, but make C_NAME globally visible.
  5023. SCM_VCELL (C_NAME, SCHEME_NAME)
  5024. Create a global variable at the Scheme level named SCHEME_NAME.
  5025. Declare a static SCM variable named C_NAME, and initialize it to
  5026. point to the Scheme variable's value cell.
  5027. SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
  5028. Just like SCM_VCELL, but make C_NAME globally visible.
  5029. The `guile-snarf' script writes initialization code for these macros
  5030. to its standard output, given C source code as input.
  5031. The SCM_GLOBAL macro is gone.
  5032. ** The scm_read_line and scm_read_line_x functions have been replaced
  5033. by Scheme code based on the %read-delimited! procedure (known to C
  5034. code as scm_read_delimited_x). See its description above for more
  5035. information.
  5036. ** The function scm_sys_open has been renamed to scm_open. It now
  5037. returns a port instead of an FD object.
  5038. * The dynamic linking support has changed. For more information, see
  5039. libguile/DYNAMIC-LINKING.
  5040. Guile 1.0b3
  5041. User-visible changes from Thursday, September 5, 1996 until Guile 1.0
  5042. (Sun 5 Jan 1997):
  5043. * Changes to the 'guile' program:
  5044. ** Guile now loads some new files when it starts up. Guile first
  5045. searches the load path for init.scm, and loads it if found. Then, if
  5046. Guile is not being used to execute a script, and the user's home
  5047. directory contains a file named `.guile', Guile loads that.
  5048. ** You can now use Guile as a shell script interpreter.
  5049. To paraphrase the SCSH manual:
  5050. When Unix tries to execute an executable file whose first two
  5051. characters are the `#!', it treats the file not as machine code to
  5052. be directly executed by the native processor, but as source code
  5053. to be executed by some interpreter. The interpreter to use is
  5054. specified immediately after the #! sequence on the first line of
  5055. the source file. The kernel reads in the name of the interpreter,
  5056. and executes that instead. It passes the interpreter the source
  5057. filename as its first argument, with the original arguments
  5058. following. Consult the Unix man page for the `exec' system call
  5059. for more information.
  5060. Now you can use Guile as an interpreter, using a mechanism which is a
  5061. compatible subset of that provided by SCSH.
  5062. Guile now recognizes a '-s' command line switch, whose argument is the
  5063. name of a file of Scheme code to load. It also treats the two
  5064. characters `#!' as the start of a comment, terminated by `!#'. Thus,
  5065. to make a file of Scheme code directly executable by Unix, insert the
  5066. following two lines at the top of the file:
  5067. #!/usr/local/bin/guile -s
  5068. !#
  5069. Guile treats the argument of the `-s' command-line switch as the name
  5070. of a file of Scheme code to load, and treats the sequence `#!' as the
  5071. start of a block comment, terminated by `!#'.
  5072. For example, here's a version of 'echo' written in Scheme:
  5073. #!/usr/local/bin/guile -s
  5074. !#
  5075. (let loop ((args (cdr (program-arguments))))
  5076. (if (pair? args)
  5077. (begin
  5078. (display (car args))
  5079. (if (pair? (cdr args))
  5080. (display " "))
  5081. (loop (cdr args)))))
  5082. (newline)
  5083. Why does `#!' start a block comment terminated by `!#', instead of the
  5084. end of the line? That is the notation SCSH uses, and although we
  5085. don't yet support the other SCSH features that motivate that choice,
  5086. we would like to be backward-compatible with any existing Guile
  5087. scripts once we do. Furthermore, if the path to Guile on your system
  5088. is too long for your kernel, you can start the script with this
  5089. horrible hack:
  5090. #!/bin/sh
  5091. exec /really/long/path/to/guile -s "$0" ${1+"$@"}
  5092. !#
  5093. Note that some very old Unix systems don't support the `#!' syntax.
  5094. ** You can now run Guile without installing it.
  5095. Previous versions of the interactive Guile interpreter (`guile')
  5096. couldn't start up unless Guile's Scheme library had been installed;
  5097. they used the value of the environment variable `SCHEME_LOAD_PATH'
  5098. later on in the startup process, but not to find the startup code
  5099. itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
  5100. code.
  5101. To run Guile without installing it, build it in the normal way, and
  5102. then set the environment variable `SCHEME_LOAD_PATH' to a
  5103. colon-separated list of directories, including the top-level directory
  5104. of the Guile sources. For example, if you unpacked Guile so that the
  5105. full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
  5106. you might say
  5107. export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
  5108. ** Guile's read-eval-print loop no longer prints #<unspecified>
  5109. results. If the user wants to see this, she can evaluate the
  5110. expression (assert-repl-print-unspecified #t), perhaps in her startup
  5111. file.
  5112. ** Guile no longer shows backtraces by default when an error occurs;
  5113. however, it does display a message saying how to get one, and how to
  5114. request that they be displayed by default. After an error, evaluate
  5115. (backtrace)
  5116. to see a backtrace, and
  5117. (debug-enable 'backtrace)
  5118. to see them by default.
  5119. * Changes to Guile Scheme:
  5120. ** Guile now distinguishes between #f and the empty list.
  5121. This is for compatibility with the IEEE standard, the (possibly)
  5122. upcoming Revised^5 Report on Scheme, and many extant Scheme
  5123. implementations.
  5124. Guile used to have #f and '() denote the same object, to make Scheme's
  5125. type system more compatible with Emacs Lisp's. However, the change
  5126. caused too much trouble for Scheme programmers, and we found another
  5127. way to reconcile Emacs Lisp with Scheme that didn't require this.
  5128. ** Guile's delq, delv, delete functions, and their destructive
  5129. counterparts, delq!, delv!, and delete!, now remove all matching
  5130. elements from the list, not just the first. This matches the behavior
  5131. of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
  5132. functions which inspired them.
  5133. I recognize that this change may break code in subtle ways, but it
  5134. seems best to make the change before the FSF's first Guile release,
  5135. rather than after.
  5136. ** The compiled-library-path function has been deleted from libguile.
  5137. ** The facilities for loading Scheme source files have changed.
  5138. *** The variable %load-path now tells Guile which directories to search
  5139. for Scheme code. Its value is a list of strings, each of which names
  5140. a directory.
  5141. *** The variable %load-extensions now tells Guile which extensions to
  5142. try appending to a filename when searching the load path. Its value
  5143. is a list of strings. Its default value is ("" ".scm").
  5144. *** (%search-load-path FILENAME) searches the directories listed in the
  5145. value of the %load-path variable for a Scheme file named FILENAME,
  5146. with all the extensions listed in %load-extensions. If it finds a
  5147. match, then it returns its full filename. If FILENAME is absolute, it
  5148. returns it unchanged. Otherwise, it returns #f.
  5149. %search-load-path will not return matches that refer to directories.
  5150. *** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
  5151. uses %seach-load-path to find a file named FILENAME, and loads it if
  5152. it finds it. If it can't read FILENAME for any reason, it throws an
  5153. error.
  5154. The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
  5155. `read' function.
  5156. *** load uses the same searching semantics as primitive-load.
  5157. *** The functions %try-load, try-load-with-path, %load, load-with-path,
  5158. basic-try-load-with-path, basic-load-with-path, try-load-module-with-
  5159. path, and load-module-with-path have been deleted. The functions
  5160. above should serve their purposes.
  5161. *** If the value of the variable %load-hook is a procedure,
  5162. `primitive-load' applies its value to the name of the file being
  5163. loaded (without the load path directory name prepended). If its value
  5164. is #f, it is ignored. Otherwise, an error occurs.
  5165. This is mostly useful for printing load notification messages.
  5166. ** The function `eval!' is no longer accessible from the scheme level.
  5167. We can't allow operations which introduce glocs into the scheme level,
  5168. because Guile's type system can't handle these as data. Use `eval' or
  5169. `read-and-eval!' (see below) as replacement.
  5170. ** The new function read-and-eval! reads an expression from PORT,
  5171. evaluates it, and returns the result. This is more efficient than
  5172. simply calling `read' and `eval', since it is not necessary to make a
  5173. copy of the expression for the evaluator to munge.
  5174. Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
  5175. for the `read' function.
  5176. ** The function `int?' has been removed; its definition was identical
  5177. to that of `integer?'.
  5178. ** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
  5179. use the R4RS names for these functions.
  5180. ** The function object-properties no longer returns the hash handle;
  5181. it simply returns the object's property list.
  5182. ** Many functions have been changed to throw errors, instead of
  5183. returning #f on failure. The point of providing exception handling in
  5184. the language is to simplify the logic of user code, but this is less
  5185. useful if Guile's primitives don't throw exceptions.
  5186. ** The function `fileno' has been renamed from `%fileno'.
  5187. ** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
  5188. * Changes to Guile's C interface:
  5189. ** The library's initialization procedure has been simplified.
  5190. scm_boot_guile now has the prototype:
  5191. void scm_boot_guile (int ARGC,
  5192. char **ARGV,
  5193. void (*main_func) (),
  5194. void *closure);
  5195. scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
  5196. MAIN_FUNC should do all the work of the program (initializing other
  5197. packages, reading user input, etc.) before returning. When MAIN_FUNC
  5198. returns, call exit (0); this function never returns. If you want some
  5199. other exit value, MAIN_FUNC may call exit itself.
  5200. scm_boot_guile arranges for program-arguments to return the strings
  5201. given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
  5202. scm_set_program_arguments with the final list, so Scheme code will
  5203. know which arguments have been processed.
  5204. scm_boot_guile establishes a catch-all catch handler which prints an
  5205. error message and exits the process. This means that Guile exits in a
  5206. coherent way when system errors occur and the user isn't prepared to
  5207. handle it. If the user doesn't like this behavior, they can establish
  5208. their own universal catcher in MAIN_FUNC to shadow this one.
  5209. Why must the caller do all the real work from MAIN_FUNC? The garbage
  5210. collector assumes that all local variables of type SCM will be above
  5211. scm_boot_guile's stack frame on the stack. If you try to manipulate
  5212. SCM values after this function returns, it's the luck of the draw
  5213. whether the GC will be able to find the objects you allocate. So,
  5214. scm_boot_guile function exits, rather than returning, to discourage
  5215. people from making that mistake.
  5216. The IN, OUT, and ERR arguments were removed; there are other
  5217. convenient ways to override these when desired.
  5218. The RESULT argument was deleted; this function should never return.
  5219. The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
  5220. general.
  5221. ** Guile's header files should no longer conflict with your system's
  5222. header files.
  5223. In order to compile code which #included <libguile.h>, previous
  5224. versions of Guile required you to add a directory containing all the
  5225. Guile header files to your #include path. This was a problem, since
  5226. Guile's header files have names which conflict with many systems'
  5227. header files.
  5228. Now only <libguile.h> need appear in your #include path; you must
  5229. refer to all Guile's other header files as <libguile/mumble.h>.
  5230. Guile's installation procedure puts libguile.h in $(includedir), and
  5231. the rest in $(includedir)/libguile.
  5232. ** Two new C functions, scm_protect_object and scm_unprotect_object,
  5233. have been added to the Guile library.
  5234. scm_protect_object (OBJ) protects OBJ from the garbage collector.
  5235. OBJ will not be freed, even if all other references are dropped,
  5236. until someone does scm_unprotect_object (OBJ). Both functions
  5237. return OBJ.
  5238. Note that calls to scm_protect_object do not nest. You can call
  5239. scm_protect_object any number of times on a given object, and the
  5240. next call to scm_unprotect_object will unprotect it completely.
  5241. Basically, scm_protect_object and scm_unprotect_object just
  5242. maintain a list of references to things. Since the GC knows about
  5243. this list, all objects it mentions stay alive. scm_protect_object
  5244. adds its argument to the list; scm_unprotect_object remove its
  5245. argument from the list.
  5246. ** scm_eval_0str now returns the value of the last expression
  5247. evaluated.
  5248. ** The new function scm_read_0str reads an s-expression from a
  5249. null-terminated string, and returns it.
  5250. ** The new function `scm_stdio_to_port' converts a STDIO file pointer
  5251. to a Scheme port object.
  5252. ** The new function `scm_set_program_arguments' allows C code to set
  5253. the value returned by the Scheme `program-arguments' function.
  5254. Older changes:
  5255. * Guile no longer includes sophisticated Tcl/Tk support.
  5256. The old Tcl/Tk support was unsatisfying to us, because it required the
  5257. user to link against the Tcl library, as well as Tk and Guile. The
  5258. interface was also un-lispy, in that it preserved Tcl/Tk's practice of
  5259. referring to widgets by names, rather than exporting widgets to Scheme
  5260. code as a special datatype.
  5261. In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
  5262. maintainers described some very interesting changes in progress to the
  5263. Tcl/Tk internals, which would facilitate clean interfaces between lone
  5264. Tk and other interpreters --- even for garbage-collected languages
  5265. like Scheme. They expected the new Tk to be publicly available in the
  5266. fall of 1996.
  5267. Since it seems that Guile might soon have a new, cleaner interface to
  5268. lone Tk, and that the old Guile/Tk glue code would probably need to be
  5269. completely rewritten, we (Jim Blandy and Richard Stallman) have
  5270. decided not to support the old code. We'll spend the time instead on
  5271. a good interface to the newer Tk, as soon as it is available.
  5272. Until then, gtcltk-lib provides trivial, low-maintenance functionality.
  5273. Copyright information:
  5274. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
  5275. Permission is granted to anyone to make or distribute verbatim copies
  5276. of this document as received, in any medium, provided that the
  5277. copyright notice and this permission notice are preserved,
  5278. thus giving the recipient permission to redistribute in turn.
  5279. Permission is granted to distribute modified versions
  5280. of this document, or of portions of it,
  5281. under the above conditions, provided also that they
  5282. carry prominent notices stating who last changed them.
  5283. Local variables:
  5284. mode: outline
  5285. paragraph-separate: "[ ]*$"
  5286. end: