NEWS 434 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701
  1. Guile NEWS --- history of user-visible changes.
  2. Copyright (C) 1996-2015 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 2.1.1 (changes since the 2.0.x series):
  6. * Notable changes
  7. ** Speed
  8. The biggest change in Guile 2.2 is a complete rewrite of its virtual
  9. machine and compiler internals. The result is faster startup time,
  10. better memory usage, and faster execution of user code. See the
  11. "Performance improvements" section below for more details.
  12. ** Better thread-safety
  13. This new release series takes the ABI-break opportunity to fix some
  14. interfaces that were difficult to use correctly from multiple threads.
  15. Notably, weak hash tables are now transparently thread-safe. Ports are
  16. also thread-safe; see "New interfaces" below for details on the changes
  17. to the C interface.
  18. ** Better space-safety
  19. It used to be the case that, when calling a Scheme procedure, the
  20. procedure and arguments were always preserved against garbage
  21. collection. This is no longer the case; Guile is free to collect the
  22. procedure and arguments if they become unreachable, or to re-use their
  23. slots for other local variables. Guile still offers good-quality
  24. backtraces by determining the procedure being called from the
  25. instruction pointer instead of from the value in slot 0 of an
  26. application frame, and by using a live variable map that allows the
  27. debugger to know which locals are live at all points in a frame.
  28. ** Off-main-thread finalization
  29. Following Guile 2.0.6's change to invoke finalizers via asyncs, Guile
  30. 2.2 takes the additional step of invoking finalizers from a dedicated
  31. finalizer thread, if threads are enabled. This avoids concurrency
  32. issues between finalizers and application code, and also speeds up
  33. finalization. If your application's finalizers are not robust to the
  34. presence of threads, see "Foreign Objects" in the manual for information
  35. on how to disable automatic finalization and instead run finalizers
  36. manually.
  37. ** Better locale support in Guile scripts
  38. When Guile is invoked directly, either from the command line or via a
  39. hash-bang line (e.g. "#!/usr/bin/guile"), it now installs the current
  40. locale via a call to `(setlocale LC_ALL "")'. For users with a unicode
  41. locale, this makes all ports unicode-capable by default, without the
  42. need to call `setlocale' in your program. This behavior may be
  43. controlled via the GUILE_INSTALL_LOCALE environment variable; see the
  44. manual for more.
  45. ** Complete Emacs-compatible Elisp implementation
  46. Thanks to the work of BT Templeton, Guile's Elisp implementation is now
  47. fully Emacs-compatible, implementing all of Elisp's features and quirks
  48. in the same way as the editor we know and love.
  49. ** Dynamically expandable stacks
  50. Instead of allocating fixed stack sizes for running Scheme code, Guile
  51. now starts off each thread with only one page of stack, and expands and
  52. shrinks it dynamically as needed. Guile will throw an exception for
  53. stack overflows if growing the stack fails. It is also possible to
  54. impose a stack limit during the extent of a function call. See "Stack
  55. Overflow" in the manual, for more.
  56. This change allows users to write programs that use the stack as a data
  57. structure for pending computations, as it was meant to be, without
  58. reifying that data out to the heap. Where you would previously make a
  59. loop that collect its results in reverse order only to re-reverse them
  60. at the end, now you can just recurse without worrying about stack
  61. overflows.
  62. Using the stack also allows more code to be continuation-safe. For
  63. example, returning multiple times from a `map' procedure in Guile 2.0
  64. would change the value of previously returned result lists, because
  65. `map' built its result list in reverse order then used `reverse!' to
  66. return the proper result. Now in Guile 2.2, `map' is implemented using
  67. straightforward recursion, which eliminates this bug while maintaining
  68. good performance as well as good space complexity.
  69. ** Out-of-memory improvements
  70. Instead of aborting, failures to allocate memory will now raise an
  71. unwind-only `out-of-memory' exception, and cause the corresponding
  72. `catch' expression to run garbage collection in order to free up memory.
  73. ** GOOPS core reimplemented in Scheme
  74. Guile's object orientation system, GOOPS, has been mostly reimplemented
  75. in Scheme. This decreases its maintenance burden on the rest of Guile,
  76. while also makes it possible to implement new features in the future,
  77. such as method combinations or `eqv?' specializers.
  78. * Performance improvements
  79. ** Faster programs via new virtual machine
  80. Guile now compiles programs to instructions for a new virtual machine.
  81. The new virtual machine's instructions can address their source and
  82. destination operands by "name" (slot). This makes access to named
  83. temporary values much faster than in Guile 2.0, and removes a lot of
  84. value-shuffling that the old virtual machine had to do. The end result
  85. is that loop-heavy code can be two or three times as fast with Guile 2.2
  86. as in 2.0. Your mileage may vary, of course; see "A Virtual Machine for
  87. Guile" in the manual for the nitties and the gritties.
  88. ** Better startup time, memory usage with ELF object file format
  89. Guile now uses the standard ELF format for its compiled code. (Guile
  90. has its own loader and linker, so this does not imply a dependency on
  91. any particular platform's ELF toolchain.) The benefit is that Guile is
  92. now able to statically allocate more data in the object files. ELF also
  93. enables more sharing of data between processes, and decreases startup
  94. time (about 40% faster than the already fast startup of the Guile 2.0
  95. series). Guile also uses DWARF for some of its debugging information.
  96. Much of the debugging information can be stripped from the object files
  97. as well. See "Object File Format" in the manual, for full details.
  98. ** Better optimizations via compiler rewrite
  99. Guile's compiler now uses a Continuation-Passing Style (CPS)
  100. intermediate language, allowing it to reason easily about temporary
  101. values and control flow. Examples of optimizations that this permits
  102. are optimal contification, optimal common subexpression elimination,
  103. dead code elimination, loop-invariant code motion, loop peeling, loop
  104. inversion, parallel moves with at most one temporary, allocation of
  105. stack slots using precise liveness information, and closure
  106. optimization. For more, see "Continuation-Passing Style" in the manual.
  107. ** Faster interpreter
  108. Combined with a number of optimizations to the interpreter itself,
  109. simply compiling `eval.scm' with the new compiler yields an interpreter
  110. that is consistently two or three times faster than the one in Guile
  111. 2.0.
  112. ** Allocation-free dynamic stack
  113. Guile now implements the dynamic stack with an actual stack instead of a
  114. list of heap objects, avoiding most allocation. This speeds up prompts,
  115. the `scm_dynwind_*' family of functions, fluids, and `dynamic-wind'.
  116. ** Optimized UTF-8 and Latin-1 ports, symbols, and strings
  117. Guile 2.2 is faster at reading and writing UTF-8 and Latin-1 strings
  118. from ports, and at converting symbols and strings to and from these
  119. encodings.
  120. ** Optimized hash functions
  121. Guile 2.2 now uses Bob Jenkins' `hashword2' (from his `lookup3.c') for
  122. its string hash, and Thomas Wang's integer hash function for `hashq' and
  123. `hashv'. These functions produce much better hash values across all
  124. available fixnum bits.
  125. ** Optimized generic array facility
  126. Thanks to work by Daniel Llorens, the generic array facility is much
  127. faster now, as it is internally better able to dispatch on the type of
  128. the underlying backing store.
  129. * New interfaces
  130. ** New `cond-expand' feature: `guile-2.2'
  131. Use this feature if you need to check for Guile 2.2 from Scheme code.
  132. ** New predicate: `nil?'
  133. See "Nil" in the manual.
  134. ** New compiler modules
  135. Since the compiler was rewritten, there are new modules for the back-end
  136. of the compiler and the low-level loader and introspection interfaces.
  137. See the "Guile Implementation" chapter in the manual for all details.
  138. ** New functions: `scm_to_intptr_t', `scm_from_intptr_t'
  139. ** New functions: `scm_to_uintptr_t', `scm_from_uintptr_t'
  140. See "Integers" in the manual, for more.
  141. ** New thread-safe port API
  142. For details on `scm_c_make_port', `scm_c_make_port_with_encoding',
  143. `scm_c_lock_port', `scm_c_try_lock_port', `scm_c_unlock_port',
  144. `scm_c_port_type_ref', `scm_c_port_type_add_x', `SCM_PORT_DESCRIPTOR',
  145. and `scm_dynwind_lock_port', see XXX.
  146. There is now a routine to atomically adjust port "revealed counts". See
  147. XXX for more on `scm_adjust_port_revealed_x' and
  148. `adjust-port-revealed!',
  149. All other port API now takes the lock on the port if needed. There are
  150. some C interfaces if you know that you don't need to take a lock; see
  151. XXX for details on `scm_get_byte_or_eof_unlocked',
  152. `scm_peek_byte_or_eof_unlocked' `scm_c_read_unlocked',
  153. `scm_getc_unlocked' `scm_unget_byte_unlocked', `scm_ungetc_unlocked',
  154. `scm_ungets_unlocked', `scm_fill_input_unlocked' `scm_putc_unlocked',
  155. `scm_puts_unlocked', and `scm_lfwrite_unlocked'.
  156. ** New inline functions: `scm_new_smob', `scm_new_double_smob'
  157. These can replace many uses of SCM_NEWSMOB, SCM_RETURN_NEWSMOB2, and the
  158. like. See XXX in the manual, for more.
  159. ** New low-level type accessors
  160. For more on `SCM_HAS_TYP7', `SCM_HAS_TYP7S', `SCM_HAS_TYP16', see XXX.
  161. `SCM_HEAP_OBJECT_P' is now an alias for the inscrutable `SCM_NIMP'.
  162. `SCM_UNPACK_POINTER' and `SCM_PACK_POINTER' are better-named versions of
  163. the old `SCM2PTR' and `PTR2SCM'. Also, `SCM_UNPACK_POINTER' yields a
  164. void*.
  165. ** <standard-vtable>, standard-vtable-fields
  166. See "Structures" in the manual for more on these
  167. ** Convenience utilities for ports and strings.
  168. See XXX for more on `scm_from_port_string', `scm_from_port_stringn',
  169. `scm_to_port_string', and `scm_to_port_stringn'.
  170. ** New expressive PEG parser
  171. See "PEG Parsing" in the manual for more. Thanks to Michael Lucy for
  172. originally writing these, and to Noah Lavine for integration work.
  173. ** `make-stack' now also works on delimited continuations
  174. ** Better URI-reference support
  175. The `(web uri)' module now has interfaces for handling URI references,
  176. which might not have a scheme. The Location header of a web request or
  177. response is now a URI reference instead of a URI. Also,
  178. `request-absolute-uri' now has an optional default scheme argument. See
  179. "Web" in the manual for full details.
  180. ** formal-name->char, char->formal-name
  181. See "Characters", in the manual.
  182. * Incompatible changes
  183. ** ASCII is not ISO-8859-1
  184. In Guile 2.0, if a user set "ASCII" or "ANSI_X3.4-1968" as the encoding
  185. of a port, Guile would treat it as ISO-8859-1. While these encodings
  186. are the same for codepoints 0 to 127, ASCII does not extend past that
  187. range, whereas ISO-8859-1 goes up to 255. Guile 2.2 no longer treats
  188. ASCII as ISO-8859-1. This is likely to be a problem only if the user's
  189. locale is set to ASCII, and the user or a program writes non-ASCII
  190. codepoints to a port.
  191. ** String ports default to UTF-8
  192. Guile 2.0 would use the `%default-port-encoding' when creating string
  193. ports. This resulted in ports that could only accept a subset of valid
  194. characters, which was surprising to users. Now string ports default to
  195. the UTF-8 encoding. Sneaky users can still play encoding conversion
  196. games with string ports by explicitly setting the encoding of a port
  197. after it is open. See "Ports" in the manual for more.
  198. ** `scm_from_stringn' and `scm_to_stringn' encoding arguments are never NULL
  199. These functions now require a valid `encoding' argument, and will abort
  200. if given `NULL'.
  201. ** All r6rs ports are both textual and binary
  202. Because R6RS ports are a thin layer on top of Guile's ports, and Guile's
  203. ports are both textual and binary, Guile's R6RS ports are also both
  204. textual and binary, and thus both kinds have port transcoders. This is
  205. an incompatibility with respect to R6RS.
  206. ** Vtable hierarchy changes
  207. In an attempt to make Guile's structure and record types integrate
  208. better with GOOPS by unifying the vtable hierarchy, `make-vtable-vtable'
  209. is now deprecated. Instead, users should just use `make-vtable' with
  210. appropriate arguments. See "Structures" in the manual for all of the
  211. details. As such, `record-type-vtable' and `%condition-type-vtable' now
  212. have a parent vtable and are no longer roots of the vtable hierarchy.
  213. ** Syntax parameters are a distinct type
  214. Guile 2.0's transitional implementation of `syntax-parameterize' was
  215. based on the `fluid-let-syntax' interface inherited from the psyntax
  216. expander. This interface allowed any binding to be dynamically rebound
  217. -- even bindings like `lambda'. This is no longer the case in Guile
  218. 2.2. Syntax parameters must be defined via `define-syntax-parameter',
  219. and only such bindings may be parameterized. See "Syntax Parameters" in
  220. the manual for more.
  221. ** Defined identifiers scoped in the current module
  222. Sometimes Guile's expander would attach incorrect module scoping
  223. information for top-level bindings made by an expansion. For example,
  224. given the following R6RS library:
  225. (library (defconst)
  226. (export defconst)
  227. (import (guile))
  228. (define-syntax-rule (defconst name val)
  229. (begin
  230. (define t val)
  231. (define-syntax-rule (name) t))))
  232. Attempting to use it would produce an error:
  233. (import (defconst))
  234. (defconst foo 42)
  235. (foo)
  236. =| Unbound variable: t
  237. It wasn't clear that we could fix this in Guile 2.0 without breaking
  238. someone's delicate macros, so the fix is only coming out now.
  239. ** Pseudo-hygienically rename macro-introduced bindings
  240. Bindings introduced by macros, like `t' in the `defconst' example above,
  241. are now given pseudo-fresh names. This allows
  242. (defconst foo 42)
  243. (defconst bar 37)
  244. to introduce different bindings for `t'. These pseudo-fresh names are
  245. made in such a way that if the macro is expanded again, for example as
  246. part of a simple recompilation, the introduced identifiers get the same
  247. pseudo-fresh names. See "Hygiene and the Top-Level" in the manual, for
  248. details.
  249. ** Fix literal matching for module-bound literals
  250. `syntax-rules' and `syntax-case' macros can take a set of "literals":
  251. bound or unbound keywords that the syntax matcher treats specially.
  252. Before, literals were always matched symbolically (by name). Now they
  253. are matched by binding. This allows literals to be reliably bound to
  254. values, renamed by imports or exports, et cetera. See "Syntax-rules
  255. Macros" in the manual for more on literals.
  256. ** `dynamic-wind' doesn't check that guards are thunks
  257. Checking that the dynamic-wind out-guard procedure was actually a thunk
  258. before doing the wind was slow, unreliable, and not strictly needed.
  259. ** All deprecated code removed
  260. All code deprecated in Guile 2.0 has been removed. See older NEWS, and
  261. check that your programs can compile without linker warnings and run
  262. without runtime warnings. See "Deprecation" in the manual.
  263. ** Remove miscellaneous unused interfaces
  264. We have removed accidentally public, undocumented interfaces that we
  265. think are not used, and not useful. This includes `scm_markstream',
  266. `SCM_FLUSH_REGISTER_WINDOWS', `SCM_THREAD_SWITCHING_CODE', `SCM_FENCE',
  267. `scm_call_generic_0', `scm_call_generic_1', `scm_call_generic_2'
  268. `scm_call_generic_3', `scm_apply_generic', and `scm_program_source'.
  269. `scm_async_click' was renamed to `scm_async_tick', and `SCM_ASYNC_TICK'
  270. was made private (use `SCM_TICK' instead).
  271. ** Many internal compiler / VM changes
  272. As the compiler and virtual machine were re-written, there are many
  273. changes in the back-end of Guile to interfaces that were introduced in
  274. Guile 2.0. These changes are only only of interest if you wrote a
  275. language on Guile 2.0 or a tool using Guile 2.0 internals. If this is
  276. the case, drop by the IRC channel to discuss the changes.
  277. ** Defining a SMOB or port type no longer mucks exports of `(oop goops)'
  278. It used to be that defining a SMOB or port type added an export to
  279. GOOPS, for the wrapper class of the smob type. This violated
  280. modularity, though, so we have removed this behavior.
  281. ** Bytecode replaces objcode as a target language
  282. One way in which people may have used details of Guile's runtime in
  283. Guile 2.0 is in compiling code to thunks for later invocation. Instead
  284. of compiling to objcode and then calling `make-program', now the way to
  285. do it is to compile to `bytecode' and then call `load-thunk-from-memory'
  286. from `(system vm loader)'.
  287. ** Weak pairs removed
  288. Weak pairs were not safe to access with `car' and `cdr', and so were
  289. removed.
  290. ** Weak alist vectors removed
  291. Use weak hash tables instead.
  292. ** Weak vectors may no longer be accessed via `vector-ref' et al
  293. Weak vectors may no longer be accessed with the vector interface. This
  294. was a source of bugs in the 2.0 Guile implementation, and a limitation
  295. on using vectors as building blocks for other abstractions. Vectors in
  296. Guile are now a concrete type; for an abstract interface, use the
  297. generic array facility (`array-ref' et al).
  298. ** scm_t_array_implementation removed
  299. This interface was introduced in 2.0 but never documented. It was a
  300. failed attempt to layer the array implementation that actually
  301. introduced too many layers, as it prevented the "vref" and "vset"
  302. members of scm_t_array_handle (called "ref" and "set" in 1.8, not
  303. present in 2.0) from specializing on array backing stores.
  304. Notably, the definition of scm_t_array_handle has now changed, to not
  305. include the (undocumented) "impl" member. We are sorry for any
  306. inconvenience this may cause.
  307. ** `scm_make' is now equivalent to Scheme `make'
  308. It used to be that `scm_make' only implemented a hard-wired object
  309. allocation and initialization protocol. This was because `scm_make' was
  310. used while GOOPS booted its own, more complete `make' implementation in
  311. Scheme. Now that we've re-implemented everything in Scheme, the C
  312. `scm_make' now dispatches directly to Scheme `make', which implements
  313. the full protocol. This change is incompatible in some ways, but on the
  314. whole is good news for GOOPS users.
  315. ** GOOPS slot definitions are now objects
  316. Slot definitions are now instances of a <slot> class, instead of being
  317. specially formatted lists. To most user code, this is transparent, as
  318. the slot definition accessors like `slot-definition-name' continue to
  319. work. However, code that for example uses `car' to get the name of a
  320. slot definition will need to be updated to use the accessors.
  321. ** Class slot changes
  322. Class objects no longer have a `default-slot-definition-class' slot,
  323. which was never used. They also no longer have slots for hashsets
  324. (`h0', `h1', and so on up to `h7'), which have been unused since Guile
  325. 2.0 and were not a great idea.
  326. There is a new class option, `#:static-slot-allocation?'. See the
  327. manual for details.
  328. ** Removal of internal, unintentionally exposed GOOPS C interfaces
  329. These include: `scm_sys_fast_slot_ref', `scm_sys_fast_slot_set_x'
  330. `scm_basic_basic_make_class', `scm_sys_compute_slots',
  331. `scm_sys_prep_layout_x' `scm_t_method', `SCM_METHOD',
  332. `scm_s_slot_set_x', `SCM_CLASS_CLASS_LAYOUT', `scm_si_slotdef_class',
  333. `scm_si_generic_function', `scm_si_specializers', `scm_si_procedure',
  334. `scm_si_formals', `scm_si_body', `scm_si_make_procedure',
  335. `SCM_CLASS_CLASS_LAYOUT', `SCM_INSTANCE_HASH', `SCM_SET_HASHSET', `union
  336. scm_t_debug_info', `scm_pure_generic_p', `SCM_PUREGENERICP',
  337. `SCM_VALIDATE_PUREGENERIC', `SCM_VTABLE_FLAG_GOOPS_PURE_GENERIC',
  338. `SCM_CLASSF_PURE_GENERIC', `scm_c_extend_primitive_generic',
  339. `scm_sys_initialize_object', `SCM_CLASS_CLASS_LAYOUT',
  340. `scm_si_redefined', `scm_si_direct_supers', `scm_si_direct_slots',
  341. `scm_si_direct_subclasses', `scm_si_direct_methods', `scm_si_cpl'
  342. `scm_si_slots', `scm_si_getters_n_setters', `SCM_N_CLASS_SLOTS',
  343. `SCM_OBJ_CLASS_REDEF', `SCM_INST', `SCM_ACCESSORS_OF',
  344. `scm_sys_allocate_instance', and `scm_sys_invalidate_class_x'.
  345. * New deprecations
  346. ** SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1, SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_N
  347. ** SCM_GASSERT0, SCM_GASSERT1, SCM_GASSERT2, SCM_GASSERTn
  348. ** SCM_WTA_DISPATCH_1_SUBR
  349. These macros were used in dispatching primitive generics. They can be
  350. replaced by using C functions (the same name but in lower case), if
  351. needed, but this is a hairy part of Guile that perhaps you shouldn't be
  352. using.
  353. ** scm_compute_applicable_methods and scm_find_method
  354. Use `compute-applicable-methods' from Scheme instead.
  355. ** scm_no_applicable_method
  356. Fetch no-applicable-method from the GOOPS exports if you need it.
  357. ** scm_class_boolean, scm_class_char, scm_class_pair
  358. ** scm_class_procedure, scm_class_string, scm_class_symbol
  359. ** scm_class_primitive_generic, scm_class_vector, scm_class_null
  360. ** scm_class_real, scm_class_complex, scm_class_integer
  361. ** scm_class_fraction, scm_class_unknown, scm_class_top
  362. ** scm_class_object, scm_class_class, scm_class_applicable
  363. ** scm_class_applicable_struct, scm_class_applicable_struct_with_setter
  364. ** scm_class_generic, scm_class_generic_with_setter, scm_class_accessor
  365. ** scm_class_extended_generic, scm_class_extended_generic_with_setter
  366. ** scm_class_extended_accessor, scm_class_method
  367. ** scm_class_accessor_method, scm_class_procedure_class
  368. ** scm_class_applicable_struct_class, scm_class_number, scm_class_list
  369. ** scm_class_keyword, scm_class_port, scm_class_input_output_port
  370. ** scm_class_input_port, scm_class_output_port, scm_class_foreign_slot
  371. ** scm_class_self, scm_class_protected, scm_class_hidden
  372. ** scm_class_opaque, scm_class_read_only, scm_class_protected_hidden
  373. ** scm_class_protected_opaque, scm_class_protected_read_only
  374. ** scm_class_scm, scm_class_int, scm_class_float, scm_class_double
  375. ** scm_port_class, scm_smob_class
  376. These class exports are now deprecated. Instead, look up the ones you
  377. need from the GOOPS module, or use `scm_class_of' on particular values.
  378. ** scm_get_keyword
  379. Instead from Scheme use kw-arg-ref or real keyword arguments, and from C
  380. use `scm_c_bind_keyword_arguments'.
  381. ** scm_slot_ref_using_class, scm_slot_set_using_class_x
  382. ** scm_slot_bound_using_class_p, scm_slot_exists_using_class_p
  383. Instead use the normal `scm_slot_ref' and similar procedures.
  384. * Changes to the distribution
  385. ** New minor version
  386. The "effective version" of Guile is now 2.2, which allows parallel
  387. installation with other effective versions (for example, the older Guile
  388. 2.0). See "Parallel Installations" in the manual for full details.
  389. Notably, the `pkg-config' file is now `guile-2.2'.
  390. ** Bump required libgc version to 7.2, released March 2012.
  391. ** The readline extension is now installed in the extensionsdir
  392. The shared library that implements Guile's readline extension is no
  393. longer installed to the libdir. This change should be transparent to
  394. users, but packagers may be interested.
  395. Changes in 2.0.11 (since 2.0.10):
  396. This release fixes an embarrassing regression introduced in the C
  397. interface to SRFI-4 vectors. See
  398. <https://lists.gnu.org/archive/html/guile-devel/2014-03/msg00047.html>
  399. for details.
  400. Changes in 2.0.10 (since 2.0.9):
  401. * Notable changes
  402. ** New GDB extension to support Guile
  403. Guile now comes with an extension for GDB 7.8 or later (unreleased at
  404. the time of writing) that simplifies debugging of C code that uses
  405. Guile. See "GDB Support" in the manual.
  406. ** Improved integration between R6RS and native Guile exceptions
  407. R6RS exception handlers, established using 'with-exception-handler' or
  408. 'guard', are now able to catch native Guile exceptions, which are
  409. automatically converted into appropriate R6RS condition objects.
  410. ** Support for HTTP proxies
  411. Guile's built-in web client now honors the 'http_proxy' environment
  412. variable, as well as the new 'current-http-proxy' parameter. See
  413. "Web Client" in the manual for details.
  414. ** Lexical syntax improvements
  415. *** Support |...| symbol notation.
  416. Guile's core reader and printer now support the R7RS |...| notation
  417. for writing symbols with arbitrary characters, as a more portable and
  418. attractive alternative to Guile's native #{...}# notation. To enable
  419. this notation by default, put one or both of the following in your
  420. ~/.guile:
  421. (read-enable 'r7rs-symbols)
  422. (print-enable 'r7rs-symbols)
  423. *** Support '#true' and '#false' notation for booleans.
  424. The booleans '#t' and '#f' may now be written as '#true' and '#false'
  425. for improved readability, per R7RS.
  426. *** Recognize '#\escape' character name.
  427. The escape character '#\esc' may now be written as '#\escape', per R7RS.
  428. *** Accept "\|" in string literals.
  429. The pipe character may now be preceded by a backslash, per R7RS.
  430. ** Custom binary input ports now support 'setvbuf'.
  431. Until now, ports returned by 'make-custom-binary-input-port' were always
  432. full-buffered. Now, their buffering mode can be changed using 'setvbuf'.
  433. ** SRFI-4 predicates and length accessors no longer accept arrays.
  434. Given that the SRFI-4 accessors don't work for arrays, the fact that the
  435. predicates and length accessors returned true for arrays was a bug.
  436. ** GUILE_PROGS now supports specifying a minimum required version.
  437. The 'GUILE_PROGS' autoconf macro in guile.m4 now allows an optional
  438. argument to specify a minimum required Guile version. By default, it
  439. requires Guile >= 2.0. A micro version can also be specified, e.g.:
  440. GUILE_PROGS([2.0.10])
  441. ** Error reporting improvements
  442. *** Improved run-time error reporting in (ice-9 match).
  443. If no pattern matches in a 'match' form, the datum that failed to match
  444. is printed along with the location of the failed 'match' invocation.
  445. *** Print the faulty object upon invalid-keyword errors.
  446. *** Improved error reporting of procedures defined by define-inlinable.
  447. *** Improved error reporting for misplaced ellipses in macro definitions.
  448. *** Improved error checking in 'define-public' and 'module-add!'.
  449. *** Improved error when 'include' form with relative path is not in a file.
  450. ** Speed improvements
  451. *** 'scm_c_read' on ISO-8859-1 (e.g. binary) unbuffered ports is faster.
  452. *** New inline asm for VM fixnum multiply, for faster overflow checking.
  453. *** New inline asm for VM fixnum operations on ARM and 32-bit x86.
  454. *** 'positive?' and 'negative?' are now compiled to VM primitives.
  455. *** Numerical comparisons with more than 2 arguments are compiled to VM code.
  456. *** Several R6RS bitwise operators have been optimized.
  457. ** Miscellaneous
  458. *** Web: 'content-disposition' headers are now supported.
  459. *** Web: 'uri-encode' hexadecimal percent-encoding is now uppercase.
  460. *** Size argument to 'make-doubly-weak-hash-table' is now optional.
  461. *** Timeout for 'unlock-mutex' and SRFI-18 'mutex-unlock!' may now be #f.
  462. ** Gnulib update
  463. Guile's copy of Gnulib was updated to v0.1-92-g546ff82. The following
  464. modules were imported from Gnulib: copysign, fsync, isfinite, link,
  465. lstat, mkdir, mkstemp, readlink, rename, rmdir, and unistd.
  466. * New interfaces
  467. ** Cooperative REPL servers
  468. This new facility supports REPLs that run at specified times within an
  469. existing thread, for example in programs utilizing an event loop or in
  470. single-threaded programs. This allows for safe access and mutation of
  471. a program's data structures from the REPL without concern for thread
  472. synchronization. See "Cooperative REPL Servers" in the manual for
  473. details.
  474. ** SRFI-43 (Vector Library)
  475. Guile now includes SRFI-43, a comprehensive library of vector operations
  476. analogous to the SRFI-1 list library. See "SRFI-43" in the manual for
  477. details.
  478. ** SRFI-64 (A Scheme API for test suites)
  479. Guile now includes SRFI-64, a flexible framework for creating test
  480. suites. The reference implementation of SRFI-64 has also been updated
  481. to fully support earlier versions of Guile.
  482. ** SRFI-111 (Boxes)
  483. See "SRFI-111" in the manual.
  484. ** 'define-values'
  485. See "Binding multiple return values" in the manual.
  486. ** Custom ellipsis identifiers using 'with-ellipsis' or SRFI-46.
  487. Guile now allows macro definitions to use identifiers other than '...'
  488. as the ellipsis. This is convenient when writing macros that generate
  489. macro definitions. The desired ellipsis identifier can be given as the
  490. first operand to 'syntax-rules', as specified in SRFI-46 and R7RS, or by
  491. using the new 'with-ellipsis' special form in procedural macros. With
  492. this addition, Guile now fully supports SRFI-46.
  493. See "Specifying a Custom Ellipsis Identifier" and "Custom Ellipsis
  494. Identifiers for syntax-case Macros" in the manual for details.
  495. ** R7RS 'syntax-error'
  496. Guile now supports 'syntax-error', as specified by R7RS, allowing for
  497. improved compile-time error reporting from 'syntax-rules' macros. See
  498. "Reporting Syntax Errors in Macros" in the manual for details.
  499. ** New procedures to convert association lists into hash tables
  500. Guile now includes the convenience procedures 'alist->hash-table',
  501. 'alist->hashq-table', 'alist->hashv-table', and 'alist->hashx-table'.
  502. See "Hash Table Reference" in the manual.
  503. ** New predicates: 'exact-integer?' and 'scm_is_exact_integer'
  504. See "Integers" in the manual.
  505. ** 'weak-vector-length', 'weak-vector-ref', and 'weak-vector-set!'
  506. These should now be used to access weak vectors, instead of
  507. 'vector-length', 'vector-ref', and 'vector-set!'.
  508. * Manual updates
  509. ** Improve docs for 'eval-when'.
  510. Each 'eval-when' condition is now explained in detail, including
  511. 'expand' which was previously undocumented. (expand load eval) is now
  512. the recommended set of conditions, instead of (compile load eval).
  513. See "Eval When" in the manual, for details.
  514. ** Update the section on SMOBs and memory management.
  515. See "Defining New Types (Smobs)" in the manual.
  516. ** Fixes
  517. *** GOOPS: #:dsupers is the init keyword for the dsupers slot.
  518. *** 'unfold-right' takes a tail, not a tail generator.
  519. *** Clarify that 'append!' and 'reverse!' might not mutate.
  520. *** Fix doc that incorrectly claimed (integer? +inf.0) => #t.
  521. (http://bugs.gnu.org/16356)
  522. *** Document that we support SRFI-62 (S-expression comments).
  523. *** Document that we support SRFI-87 (=> in case clauses).
  524. *** Document 'equal?' in the list of R6RS incompatibilities.
  525. *** Remove outdated documentation of LTDL_LIBRARY_PATH.
  526. *** Fix 'weak-vector?' doc: Weak hash tables are not weak vectors.
  527. *** Fix 'my-or' examples to use let-bound variable.
  528. (http://bugs.gnu.org/14203)
  529. * New deprecations
  530. ** General 'uniform-vector' interface
  531. This interface lacked both generality and specificity. The general
  532. replacements are 'array-length', 'array-ref', and friends on the scheme
  533. side, and the array handle interface on the C side. On the specific
  534. side of things, there are the specific bytevector, SRFI-4, and bitvector
  535. interfaces.
  536. ** Use of the vector interface on arrays
  537. ** 'vector-length', 'vector-ref', and 'vector-set!' on weak vectors
  538. ** 'vector-length', 'vector-ref', and 'vector-set!' as primitive-generics
  539. Making the vector interface operate only on a single representation will
  540. allow future versions of Guile to compile loops involving vectors to
  541. more efficient native code.
  542. ** 'htons', 'htonl', 'ntohs', 'ntohl'
  543. These procedures, like their C counterpart, were used to convert numbers
  544. to/from network byte order, typically in conjunction with the
  545. now-deprecated uniform vector API.
  546. This functionality is now covered by the bytevector and binary I/O APIs.
  547. See "Interpreting Bytevector Contents as Integers" in the manual.
  548. ** 'gc-live-object-stats'
  549. It hasn't worked in the whole 2.0 series. There is no replacement,
  550. unfortunately.
  551. ** 'scm_c_program_source'
  552. This internal VM function was not meant to be public. Use
  553. 'scm_procedure_source' instead.
  554. * Build fixes
  555. ** Fix build with Clang 3.4.
  556. ** MinGW build fixes
  557. *** Do not add $(EXEEXT) to guild or guile-tools.
  558. *** tests: Use double quotes around shell arguments, for Windows.
  559. *** tests: Don't rely on $TMPDIR and /tmp on Windows.
  560. *** tests: Skip FFI tests that use `qsort' when it's not accessible.
  561. *** tests: Remove symlink only when it exists.
  562. *** tests: Don't rely on `scm_call_2' being visible.
  563. ** Fix computation of LIBLOBJS so dependencies work properly.
  564. (http://bugs.gnu.org/14193)
  565. * Bug fixes
  566. ** Web: Fix web client with methods other than GET.
  567. (http://bugs.gnu.org/15908)
  568. ** Web: Add Content-Length header for empty bodies.
  569. ** Web: Accept "UTC" as the zone offset in date headers.
  570. (http://bugs.gnu.org/14128)
  571. ** Web: Don't throw if a response is longer than its Content-Length says.
  572. ** Web: Write out HTTP Basic auth headers correctly.
  573. (http://bugs.gnu.org/14370)
  574. ** Web: Always print a path component in 'write-request-line'.
  575. ** Fix 'define-public' from (ice-9 curried-definitions).
  576. ** psyntax: toplevel variable definitions discard previous syntactic binding.
  577. (http://bugs.gnu.org/11988)
  578. ** Fix thread-unsafe lazy initializations.
  579. ** Make (ice-9 popen) thread-safe.
  580. (http://bugs.gnu.org/15683)
  581. ** Make guardians thread-safe.
  582. ** Make regexp_exec thread-safe.
  583. (http://bugs.gnu.org/14404)
  584. ** vm: Gracefully handle stack overflows.
  585. (http://bugs.gnu.org/15065)
  586. ** Fix 'rationalize'.
  587. (http://bugs.gnu.org/14905)
  588. ** Fix inline asm for VM fixnum operations on x32.
  589. ** Fix 'SCM_SYSCALL' to really swallow EINTR.
  590. ** Hide EINTR returns from 'accept'.
  591. ** SRFI-19: Update the table of leap seconds.
  592. ** Add missing files to the test-suite Makefile.
  593. ** Make sure 'ftw' allows directory traversal when running as root.
  594. ** Fix 'hash-for-each' for weak hash tables.
  595. ** SRFI-18: Export 'current-thread'.
  596. (http://bugs.gnu.org/16890)
  597. ** Fix inlining of tail list to apply.
  598. (http://bugs.gnu.org/15533)
  599. ** Fix bug in remqueue in threads.c when removing last element.
  600. ** Fix build when '>>' on negative integers is not arithmetic.
  601. ** Fix 'bitwise-bit-count' for negative arguments.
  602. (http://bugs.gnu.org/14864)
  603. ** Fix VM 'ash' for right shifts by large amounts.
  604. (http://bugs.gnu.org/14864)
  605. ** Fix rounding in scm_i_divide2double for negative arguments.
  606. ** Avoid lossy conversion from inum to double in numerical comparisons.
  607. ** Fix numerical comparison of fractions to infinities.
  608. ** Allow fl+ and fl* to accept zero arguments.
  609. (http://bugs.gnu.org/14869)
  610. ** flonum? returns false for complex number objects.
  611. (http://bugs.gnu.org/14866)
  612. ** flfinite? applied to a NaN returns false.
  613. (http://bugs.gnu.org/14868)
  614. ** Flonum operations always return flonums.
  615. (http://bugs.gnu.org/14871)
  616. ** min and max: NaNs beat infinities, per R6RS errata.
  617. (http://bugs.gnu.org/14865)
  618. ** Fix 'fxbit-count' for negative arguments.
  619. ** 'gcd' and 'lcm' support inexact integer arguments.
  620. (http://bugs.gnu.org/14870)
  621. ** Fix R6RS 'fixnum-width'.
  622. (http://bugs.gnu.org/14879)
  623. ** tests: Use shell constructs that /bin/sh on Solaris 10 can understand.
  624. (http://bugs.gnu.org/14042)
  625. ** Fix display of symbols containing backslashes.
  626. (http://bugs.gnu.org/15033)
  627. ** Fix truncated-print for uniform vectors.
  628. ** Define `AF_UNIX' only when Unix-domain sockets are supported.
  629. ** Decompiler: fix handling of empty 'case-lambda' expressions.
  630. ** Fix handling of signed zeroes and infinities in 'numerator' and 'denominator'.
  631. ** dereference-pointer: check for null pointer.
  632. ** Optimizer: Numerical comparisons are not negatable, for correct NaN handling.
  633. ** Compiler: Evaluate '-' and '/' in left-to-right order.
  634. (for more robust floating-point arithmetic)
  635. ** snarf.h: Declare static const function name vars as SCM_UNUSED.
  636. ** chars.c: Remove duplicate 'const' specifiers.
  637. ** Modify SCM_UNPACK type check to avoid warnings in clang.
  638. ** Arrange so that 'file-encoding' does not truncate the encoding name.
  639. (http://bugs.gnu.org/16463)
  640. ** Improve error checking in bytevector->uint-list and bytevector->sint-list.
  641. (http://bugs.gnu.org/15100)
  642. ** Fix (ash -1 SCM_I_FIXNUM_BIT-1) to return a fixnum instead of a bignum.
  643. ** i18n: Fix null pointer dereference when locale info is missing.
  644. ** Fix 'string-copy!' to work properly with overlapping src/dest.
  645. ** Fix hashing of vectors to run in bounded time.
  646. ** 'port-position' works on CBIPs that do not support 'set-port-position!'.
  647. ** Custom binary input ports sanity-check the return value of 'read!'.
  648. ** bdw-gc.h: Check SCM_USE_PTHREAD_THREADS using #if not #ifdef.
  649. ** REPL Server: Don't establish a SIGINT handler.
  650. ** REPL Server: Redirect warnings to client socket.
  651. ** REPL Server: Improve robustness of 'stop-server-and-clients!'.
  652. ** Add srfi-16, srfi-30, srfi-46, srfi-62, srfi-87 to %cond-expand-features.
  653. ** Fix trap handlers to handle applicable structs.
  654. (http://bugs.gnu.org/15691)
  655. ** Fix optional end argument in `uniform-vector-read!'.
  656. (http://bugs.gnu.org/15370)
  657. ** Fix brainfuck->scheme compiler.
  658. ** texinfo: Fix newline preservation in @example with lines beginning with @
  659. ** C standards conformance improvements
  660. Improvements and bug fixes were made to the C part of Guile's run-time
  661. support (libguile).
  662. *** Don't use the identifier 'noreturn'.
  663. (http://bugs.gnu.org/15798)
  664. *** Rewrite SCM_I_INUM to avoid unspecified behavior when not using GNU C.
  665. *** Improve fallback implemention of SCM_SRS to avoid unspecified behavior.
  666. *** SRFI-60: Reimplement 'rotate-bit-field' on inums to be more portable.
  667. *** Improve compliance with C standards regarding signed integer shifts.
  668. *** Avoid signed overflow in random.c.
  669. *** VM: Avoid signed overflows in 'add1' and 'sub1'.
  670. *** VM: Avoid overflow in ASM_ADD when the result is most-positive-fixnum.
  671. *** read: Avoid signed integer overflow in 'read_decimal_integer'.
  672. Changes in 2.0.9 (since 2.0.7):
  673. Note: 2.0.8 was a brown paper bag release that was never announced, but
  674. some mirrors may have picked it up. Please do not use it.
  675. * Notable changes
  676. ** New keyword arguments for procedures that open files
  677. The following procedures that open files now support keyword arguments
  678. to request binary I/O or to specify the character encoding for text
  679. files: `open-file', `open-input-file', `open-output-file',
  680. `call-with-input-file', `call-with-output-file', `with-input-from-file',
  681. `with-output-to-file', and `with-error-to-file'.
  682. It is also now possible to specify whether Guile should scan files for
  683. Emacs-style coding declarations. This scan was done by default in
  684. versions 2.0.0 through 2.0.7, but now must be explicitly requested.
  685. See "File Ports" in the manual for details.
  686. ** Rewritten guile.m4
  687. The `guile.m4' autoconf macros have been rewritten to use `guild' and
  688. `pkg-config' instead of the deprecated `guile-config' (which itself
  689. calls pkg-config).
  690. There is also a new macro, `GUILE_PKG', which allows packages to select
  691. the version of Guile that they want to compile against. See "Autoconf
  692. Macros" in the manual, for more information.
  693. ** Better Windows support
  694. Guile now correctly identifies absolute paths on Windows (MinGW), and
  695. creates files on that platform according to its path conventions. See
  696. "File System" in the manual, for all details.
  697. In addition, the new Gnulib imports provide `select' and `poll' on
  698. Windows builds.
  699. As an incompatible change, systems that are missing <sys/select.h> were
  700. previously provided a public `scm_std_select' C function that defined a
  701. version of `select', but unhappily it also provided its own incompatible
  702. definitions for FD_SET, FD_ZERO, and other system interfaces. Guile
  703. should not be setting these macros in public API, so this interface was
  704. removed on those plaforms (basically only MinGW).
  705. ** Numerics improvements
  706. `number->string' now reliably outputs enough digits to produce the same
  707. number when read back in. Previously, it mishandled subnormal numbers
  708. (printing them as "#.#"), and failed to distinguish between some
  709. distinct inexact numbers, e.g. 1.0 and (+ 1.0 (expt 2.0 -52)). These
  710. problems had far-reaching implications, since the compiler uses
  711. `number->string' to serialize numeric constants into .go files.
  712. `sqrt' now produces exact rational results when possible, and handles
  713. very large or very small numbers more robustly.
  714. A number (ahem) of operations involving exact rationals have been
  715. optimized, most notably `integer-expt' and `expt'.
  716. `exact->inexact' now performs correct IEEE rounding.
  717. ** New optimizations
  718. There were a number of improvements to the partial evaluator, allowing
  719. complete reduction of forms such as:
  720. ((let ((_ 10)) (lambda () _)))
  721. ((lambda _ _))
  722. (apply (lambda _ _) 1 2 3 '(4))
  723. (call-with-values (lambda () (values 1 2)) (lambda _ _))
  724. `string-join' now handles huge lists efficiently.
  725. `get-bytevector-some' now uses buffered input, which is much faster.
  726. Finally, `array-ref', `array-set!' on arrays of rank 1 or 2 is now
  727. faster, because it avoids building a rest list. Similarly, the
  728. one-argument case of `array-for-each' and `array-map!' has been
  729. optimized, and `array-copy!' and `array-fill!' are faster.
  730. ** `peek-char' no longer consumes EOF
  731. As required by the R5RS, if `peek-char' returns EOF, then the next read
  732. will also return EOF. Previously `peek-char' would consume the EOF.
  733. This makes a difference for terminal devices where it is possible to
  734. read past an EOF.
  735. ** Gnulib update
  736. Guile's copy of Gnulib was updated to v0.0-7865-ga828bb2. The following
  737. modules were imported from Gnulib: select, times, pipe-posix, fstat,
  738. getlogin, poll, and c-strcase.
  739. ** `include' resolves relative file names relative to including file
  740. Given a relative file name, `include' will look for it relative to the
  741. directory of the including file. This harmonizes the behavior of
  742. `include' with that of `load'.
  743. ** SLIB compatibility restored
  744. Guile 2.0.8 is now compatible with SLIB. You will have to use a
  745. development version of SLIB, however, until a new version of SLIB is
  746. released.
  747. ** Better ,trace REPL command
  748. Sometimes the ,trace output for nested function calls could overflow the
  749. terminal width, which wasn't useful. Now there is a limit to the amount
  750. of space the prefix will take. See the documentation for ",trace" for
  751. more information.
  752. ** Better docstring syntax supported for `case-lambda'
  753. Docstrings can now be placed immediately after the `case-lambda' or
  754. `case-lambda*' keyword. See "Case-lambda" in the manual.
  755. ** Improved handling of Unicode byte order marks
  756. See "BOM Handling" in the manual for details.
  757. ** Update predefined character sets to Unicode 6.2
  758. ** GMP 4.2 or later required
  759. Guile used to require GMP at least version 4.1 (released in May 2002),
  760. and now requires at least version 4.2 (released in March 2006).
  761. * Manual updates
  762. ** Better SXML documentation
  763. The documentation for SXML modules was much improved, though there is
  764. still far to go. See "SXML" in manual.
  765. ** Style updates
  766. Use of "iff" was replaced with standard English. Keyword arguments are
  767. now documented consistently, along with their default values.
  768. ** An end to the generated-documentation experiment
  769. When Guile 2.0 imported some modules from Guile-Lib, they came with a
  770. system that generated documentation from docstrings and module
  771. commentaries. This produced terrible documentation. We finally bit the
  772. bullet and incorporated these modules into the main text, and will be
  773. improving them manually over time, as is the case with SXML. Help is
  774. appreciated.
  775. ** New documentation
  776. There is now documentation for `scm_array_type', and `scm_array_ref', as
  777. well as for the new `array-length' / 'scm_c_array_length' /
  778. `scm_array_length' functions. `array-in-bounds?' has better
  779. documentation as well. The `program-arguments-alist' and
  780. `program-lambda-list' functions are now documented, as well as `and=>',
  781. `exit', and `quit'. The (system repl server) module is now documented
  782. (see REPL Servers). Finally, the GOOPS class hierarchy diagram has been
  783. regenerated for the web and print output formats.
  784. * New deprecations
  785. ** Deprecate generalized vector interface
  786. The generalized vector interface, introduced in 1.8.0, is simply a
  787. redundant, verbose interface to arrays of rank 1. `array-ref' and
  788. similar functions are entirely sufficient. Thus,
  789. `scm_generalized_vector_p', `scm_generalized_vector_length',
  790. `scm_generalized_vector_ref', `scm_generalized_vector_set_x', and
  791. `scm_generalized_vector_to_list' are now deprecated.
  792. ** Deprecate SCM_CHAR_CODE_LIMIT and char-code-limit
  793. These constants were defined to 256, which is not the highest codepoint
  794. supported by Guile. Given that they were useless and incorrect, they
  795. have been deprecated.
  796. ** Deprecate `http-get*'
  797. The new `#:streaming?' argument to `http-get' subsumes the functionality
  798. of `http-get*' (introduced in 2.0.7). Also, the `#:extra-headers'
  799. argument is deprecated in favor of `#:headers'.
  800. ** Deprecate (ice-9 mapping)
  801. This module, present in Guile since 1996 but never used or documented,
  802. has never worked in Guile 2.0. It has now been deprecated and will be
  803. removed in Guile 2.2.
  804. ** Deprecate undocumented array-related C functions
  805. These are `scm_array_fill_int', `scm_ra_eqp', `scm_ra_lessp',
  806. `scm_ra_leqp', `scm_ra_grp', `scm_ra_greqp', `scm_ra_sum',
  807. `scm_ra_product', `scm_ra_difference', `scm_ra_divide', and
  808. `scm_array_identity'.
  809. * New interfaces
  810. ** SRFI-41 Streams
  811. See "SRFI-41" in the manual.
  812. ** SRFI-45 exports `promise?'
  813. SRFI-45 now exports a `promise?' procedure that works with its promises.
  814. Also, its promises now print more nicely.
  815. ** New HTTP client procedures
  816. See "Web Client" for documentation on the new `http-head', `http-post',
  817. `http-put', `http-delete', `http-trace', and `http-options' procedures,
  818. and also for more options to `http-get'.
  819. ** Much more capable `xml->sxml'
  820. See "Reading and Writing XML" for information on how the `xml->sxml'
  821. parser deals with namespaces, processed entities, doctypes, and literal
  822. strings. Incidentally, `current-ssax-error-port' is now a parameter
  823. object.
  824. ** New procedures for converting strings to and from bytevectors
  825. See "Representing Strings as Bytes" for documention on the new `(ice-9
  826. iconv)' module and its `bytevector->string' and `string->bytevector'
  827. procedures.
  828. ** Escape continuations with `call/ec' and `let/ec'
  829. See "Prompt Primitives".
  830. ** New procedures to read all characters from a port
  831. See "Line/Delimited" in the manual for documentation on `read-string'
  832. and `read-string!'.
  833. ** New procedure `sendfile'
  834. See "File System".
  835. ** New procedure `unget-bytevector'
  836. See "R6RS Binary Input".
  837. ** New C helper: `scm_c_bind_keyword_arguments'
  838. See "Keyword Procedures".
  839. ** New command-line arguments: `--language' and `-C'
  840. See "Command-line Options" in the manual.
  841. ** New environment variables: `GUILE_STACK_SIZE', `GUILE_INSTALL_LOCALE'
  842. See "Environment Variables".
  843. ** New procedures for dealing with file names
  844. See "File System" for documentation on `system-file-name-convention',
  845. `file-name-separator?', `absolute-file-name?', and
  846. `file-name-separator-string'.
  847. ** `array-length', an array's first dimension
  848. See "Array Procedures".
  849. ** `hash-count', for hash tables
  850. See "Hash Tables".
  851. ** `round-ash', a bit-shifting operator that rounds on right-shift
  852. See "Bitwise Operations".
  853. ** New foreign types: `ssize_t', `ptrdiff_t'
  854. See "Foreign Types".
  855. ** New C helpers: `scm_from_ptrdiff_t', `scm_to_ptrdiff_t'
  856. See "Integers".
  857. ** Socket option `SO_REUSEPORT' now available from Scheme
  858. If supported on the platform, `SO_REUSEPORT' is now available from
  859. Scheme as well. See "Network Sockets and Communication".
  860. ** `current-language' in default environment
  861. Previously defined only in `(system base language)', `current-language'
  862. is now defined in the default environment, and is used to determine the
  863. language for the REPL, and for `compile-and-load'.
  864. ** New procedure: `fluid->parameter'
  865. See "Parameters", for information on how to convert a fluid to a
  866. parameter.
  867. ** New `print' REPL option
  868. See "REPL Commands" in the manual for information on the new
  869. user-customizable REPL printer.
  870. ** New variable: %site-ccache-dir
  871. The "Installing Site Packages" and "Build Config" manual sections now
  872. refer to this variable to describe where users should install their
  873. `.go' files.
  874. * Build fixes
  875. ** Fix compilation against libgc 7.3.
  876. ** Fix cross-compilation of `c-tokenize.o'.
  877. ** Fix warning when compiling against glibc 2.17.
  878. ** Fix documentation build against Texinfo 5.0.
  879. ** Fix building Guile from a directory with non-ASCII characters.
  880. ** Fix native MinGW build.
  881. ** Fix --disable-posix build.
  882. ** Fix MinGW builds with networking, POSIX, and thread support.
  883. * Bug fixes
  884. ** Fix inexact number printer.
  885. (http://bugs.gnu.org/13757)
  886. ** Fix infinite loop when parsing optional-argument short options (SRFI-37).
  887. (http://bugs.gnu.org/13176)
  888. ** web: Support non-GMT date headers in the HTTP client.
  889. (http://bugs.gnu.org/13544)
  890. ** web: support IP-literal (IPv6 address) in Host header.
  891. ** Avoid stack overflows with `par-map' and nested futures in general.
  892. (http://bugs.gnu.org/13188)
  893. ** Peek-char no longer consumes EOF.
  894. (http://bugs.gnu.org/12216)
  895. ** Avoid swallowing multiple EOFs in R6RS binary-input procedures.
  896. ** A fork when multiple threads are running will now print a warning.
  897. ** Allow for spurious wakeups from pthread_cond_wait.
  898. (http://bugs.gnu.org/10641)
  899. ** Warn and ignore module autoload failures.
  900. (http://bugs.gnu.org/12202)
  901. ** Use chmod portably in (system base compile).
  902. (http://bugs.gnu.org/10474)
  903. ** Fix response-body-port for HTTP responses without content-length.
  904. (http://bugs.gnu.org/13857)
  905. ** Allow case-lambda expressions with no clauses.
  906. (http://bugs.gnu.org/9776)
  907. ** Improve standards conformance of string->number.
  908. (http://bugs.gnu.org/11887)
  909. ** Support calls and tail-calls with more than 255 formals.
  910. ** ,option evaluates its right-hand-side.
  911. (http://bugs.gnu.org/13076)
  912. ** Structs with tail arrays are not simple.
  913. (http://bugs.gnu.org/12808)
  914. ** Make `SCM_LONG_BIT' usable in preprocessor conditionals.
  915. (http://bugs.gnu.org/13848)
  916. ** Fix thread-unsafe lazy initializations.
  917. ** Allow SMOB mark procedures to be called from parallel markers.
  918. (http://bugs.gnu.org/13611)
  919. ** Fix later-bindings-win logic in with-fluids.
  920. (http://bugs.gnu.org/13843)
  921. ** Fix duplicate removal of with-fluids.
  922. (http://bugs.gnu.org/13838)
  923. ** Support calling foreign functions of 10 arguments or more.
  924. (http://bugs.gnu.org/13809)
  925. ** Let reverse! accept arbitrary types as second argument.
  926. (http://bugs.gnu.org/13835)
  927. ** Recognize the `x86_64.*-gnux32' triplet.
  928. ** Check whether a triplet's OS part specifies an ABI.
  929. ** Recognize mips64* as having 32-bit pointers by default.
  930. ** Use portable sed constructs.
  931. (http://bugs.gnu.org/14042)
  932. ** Remove language/glil/decompile-assembly.scm.
  933. (http://bugs.gnu.org/10622)
  934. ** Use O_BINARY in `copy-file', `load-objcode', `mkstemp'.
  935. ** Use byte-oriented functions in `get-bytevector*'.
  936. ** Fix abort when iconv swallows BOM from UTF-16 or UTF-32 stream.
  937. ** Fix compilation of functions with more than 255 local variables.
  938. ** Fix `getgroups' for when zero supplementary group IDs exist.
  939. ** Allow (define-macro name (lambda ...)).
  940. ** Various fixes to the (texinfo) modules.
  941. ** guild: Gracefully handle failures to install the locale.
  942. ** Fix format string warnings for ~!, ~|, ~/, ~q, ~Q, and ~^.
  943. (http://bugs.gnu.org/13485)
  944. ** Fix source annotation bug in psyntax 'expand-body'.
  945. ** Ecmascript: Fix conversion to boolean for non-numbers.
  946. ** Use case-insensitive comparisons for encoding names.
  947. ** Add missing cond-expand feature identifiers.
  948. ** A failure to find a module's file does not prevent future loading.
  949. ** Many (oop goops save) fixes.
  950. ** `http-get': don't shutdown write end of socket.
  951. (http://bugs.gnu.org/13095)
  952. ** Avoid signed integer overflow in scm_product.
  953. ** http: read-response-body always returns bytevector or #f, never EOF.
  954. ** web: Correctly detect "No route to host" conditions.
  955. ** `system*': failure to execvp no longer leaks dangling processes.
  956. (http://bugs.gnu.org/13166)
  957. ** More sensible case-lambda* dispatch.
  958. (http://bugs.gnu.org/12929)
  959. ** Do not defer expansion of internal define-syntax forms.
  960. (http://bugs.gnu.org/13509)
  961. Changes in 2.0.7 (since 2.0.6):
  962. * Notable changes
  963. ** SRFI-105 curly infix expressions are supported
  964. Curly infix expressions as described at
  965. http://srfi.schemers.org/srfi-105/srfi-105.html are now supported by
  966. Guile's reader. This allows users to write things like {a * {b + c}}
  967. instead of (* a (+ b c)). SRFI-105 support is enabled by using the
  968. `#!curly-infix' directive in source code, or the `curly-infix' reader
  969. option. See the manual for details.
  970. ** Reader options may now be per-port
  971. Historically, `read-options' and related procedures would manipulate
  972. global options, affecting the `read' procedure for all threads, and all
  973. current uses of `read'.
  974. Guile can now associate `read' options with specific ports, allowing
  975. different ports to use different options. For instance, the
  976. `#!fold-case' and `#!no-fold-case' reader directives have been
  977. implemented, and their effect is to modify the current read options of
  978. the current port only; similarly for `#!curly-infix'. Thus, it is
  979. possible, for instance, to have one port reading case-sensitive code,
  980. while another port reads case-insensitive code.
  981. ** Futures may now be nested
  982. Futures may now be nested: a future can itself spawn and then `touch'
  983. other futures. In addition, any thread that touches a future that has
  984. not completed now processes other futures while waiting for the touched
  985. future to completed. This allows all threads to be kept busy, and was
  986. made possible by the use of delimited continuations (see the manual for
  987. details.)
  988. Consequently, `par-map' and `par-for-each' have been rewritten and can
  989. now use all cores.
  990. ** `GUILE_LOAD_PATH' et al can now add directories to the end of the path
  991. `GUILE_LOAD_PATH' and `GUILE_LOAD_COMPILED_PATH' can now be used to add
  992. directories to both ends of the load path. If the special path
  993. component `...' (ellipsis) is present in these environment variables,
  994. then the default path is put in place of the ellipsis, otherwise the
  995. default path is placed at the end. See "Environment Variables" in the
  996. manual for details.
  997. ** `load-in-vicinity' search for `.go' files in `%load-compiled-path'
  998. Previously, `load-in-vicinity' would look for compiled files in the
  999. auto-compilation cache, but not in `%load-compiled-path'. This is now
  1000. fixed. This affects `load', and the `-l' command-line flag. See
  1001. <http://bugs.gnu.org/12519> for details.
  1002. ** Extension search order fixed, and LD_LIBRARY_PATH preserved
  1003. Up to 2.0.6, Guile would modify the `LD_LIBRARY_PATH' environment
  1004. variable (or whichever is relevant for the host OS) to insert its own
  1005. default extension directories in the search path (using GNU libltdl
  1006. facilities was not possible here.) This approach was problematic in two
  1007. ways.
  1008. First, the `LD_LIBRARY_PATH' modification would be visible to
  1009. sub-processes, and would also affect future calls to `dlopen', which
  1010. could lead to subtle bugs in the application or sub-processes. Second,
  1011. when the installation prefix is /usr, the `LD_LIBRARY_PATH' modification
  1012. would typically end up inserting /usr/lib before /usr/local/lib in the
  1013. search path, which is often the opposite of system-wide settings such as
  1014. `ld.so.conf'.
  1015. Both issues have now been fixed.
  1016. ** `make-vtable-vtable' is now deprecated
  1017. Programs should instead use `make-vtable' and `<standard-vtable>'.
  1018. ** The `-Wduplicate-case-datum' and `-Wbad-case-datum' are enabled
  1019. These recently introduced warnings have been documented and are now
  1020. enabled by default when auto-compiling.
  1021. ** Optimize calls to `equal?' or `eqv?' with a constant argument
  1022. The compiler simplifies calls to `equal?' or `eqv?' with a constant
  1023. argument to use `eq?' instead, when applicable.
  1024. * Manual updates
  1025. ** SRFI-9 records now documented under "Compound Data Types"
  1026. The documentation of SRFI-9 record types has been moved in the "Compound
  1027. Data Types", next to Guile's other record APIs. A new section
  1028. introduces the various record APIs, and describes the trade-offs they
  1029. make. These changes were made in an attempt to better guide users
  1030. through the maze of records API, and to recommend SRFI-9 as the main
  1031. API.
  1032. The documentation of Guile's raw `struct' API has also been improved.
  1033. ** (ice-9 and-let-star) and (ice-9 curried-definitions) now documented
  1034. These modules were missing from the manual.
  1035. * New interfaces
  1036. ** New "functional record setters" as a GNU extension of SRFI-9
  1037. The (srfi srfi-9 gnu) module now provides three new macros to deal with
  1038. "updates" of immutable records: `define-immutable-record-type',
  1039. `set-field', and `set-fields'.
  1040. The first one allows record type "functional setters" to be defined;
  1041. such setters keep the record unchanged, and instead return a new record
  1042. with only one different field. The remaining macros provide the same
  1043. functionality, and also optimize updates of multiple or nested fields.
  1044. See the manual for details.
  1045. ** web: New `http-get*', `response-body-port', and `text-content-type?'
  1046. procedures
  1047. These procedures return a port from which to read the response's body.
  1048. Unlike `http-get' and `read-response-body', they allow the body to be
  1049. processed incrementally instead of being stored entirely in memory.
  1050. The `text-content-type?' predicate allows users to determine whether the
  1051. content type of a response is textual.
  1052. See the manual for details.
  1053. ** `string-split' accepts character sets and predicates
  1054. The `string-split' procedure can now be given a SRFI-14 character set or
  1055. a predicate, instead of just a character.
  1056. ** R6RS SRFI support
  1057. Previously, in R6RS modules, Guile incorrectly ignored components of
  1058. SRFI module names after the SRFI number, making it impossible to specify
  1059. sub-libraries. This release corrects this, bringing us into accordance
  1060. with SRFI 97.
  1061. ** `define-public' is no a longer curried definition by default
  1062. The (ice-9 curried-definitions) should be used for such uses. See the
  1063. manual for details.
  1064. * Build fixes
  1065. ** Remove reference to `scm_init_popen' when `fork' is unavailable
  1066. This fixes a MinGW build issue (http://bugs.gnu.org/12477).
  1067. ** Fix race between installing `guild' and the `guile-tools' symlink
  1068. * Bug fixes
  1069. ** Procedures returned by `eval' now have docstrings
  1070. (http://bugs.gnu.org/12173)
  1071. ** web client: correctly handle uri-query, etc. in relative URI headers
  1072. (http://bugs.gnu.org/12827)
  1073. ** Fix docs for R6RS `hashtable-copy'
  1074. ** R6RS `string-for-each' now accepts multiple string arguments
  1075. ** Fix out-of-range error in the compiler's CSE pass
  1076. (http://bugs.gnu.org/12883)
  1077. ** Add missing R6RS `open-file-input/output-port' procedure
  1078. ** Futures: Avoid creating the worker pool more than once
  1079. ** Fix invalid assertion about mutex ownership in threads.c
  1080. (http://bugs.gnu.org/12719)
  1081. ** Have `SCM_NUM2FLOAT' and `SCM_NUM2DOUBLE' use `scm_to_double'
  1082. ** The `scandir' procedure now uses `lstat' instead of `stat'
  1083. ** Fix `generalized-vector->list' indexing bug with shared arrays
  1084. (http://bugs.gnu.org/12465)
  1085. ** web: Change `http-get' to try all the addresses for the given URI
  1086. ** Implement `hash' for structs
  1087. (http://lists.gnu.org/archive/html/guile-devel/2012-10/msg00031.html)
  1088. ** `read' now adds source properties for data types beyond pairs
  1089. ** Improve error reporting in `append!'
  1090. ** In fold-matches, set regexp/notbol unless matching string start
  1091. ** Don't stat(2) and access(2) the .go location before using it
  1092. ** SRFI-19: use zero padding for hours in ISO 8601 format, not blanks
  1093. ** web: Fix uri-encoding for strings with no unreserved chars, and octets 0-15
  1094. ** More robust texinfo alias handling
  1095. ** Optimize `format' and `simple-format'
  1096. (http://bugs.gnu.org/12033)
  1097. ** Angle of -0.0 is pi, not zero
  1098. Changes in 2.0.6 (since 2.0.5):
  1099. * Notable changes
  1100. ** New optimization pass: common subexpression elimination (CSE)
  1101. Guile's optimizer will now run a CSE pass after partial evaluation.
  1102. This pass propagates static information about branches taken, bound
  1103. lexicals, and effects from an expression's dominators. It can replace
  1104. common subexpressions with their boolean values (potentially enabling
  1105. dead code elimination), equivalent bound lexicals, or it can elide them
  1106. entirely, depending on the context in which they are executed. This
  1107. pass is especially useful in removing duplicate type checks, such as
  1108. those produced by SRFI-9 record accessors.
  1109. ** Improvements to the partial evaluator
  1110. Peval can now hoist tests that are common to both branches of a
  1111. conditional into the test. This can help with long chains of
  1112. conditionals, such as those generated by the `match' macro. Peval can
  1113. now do simple beta-reductions of procedures with rest arguments. It
  1114. also avoids residualizing degenerate lexical aliases, even when full
  1115. inlining is not possible. Finally, peval now uses the effects analysis
  1116. introduced for the CSE pass. More precise effects analysis allows peval
  1117. to move more code.
  1118. ** Run finalizers asynchronously in asyncs
  1119. Finalizers are now run asynchronously, via an async. See Asyncs in the
  1120. manual. This allows Guile and user code to safely allocate memory while
  1121. holding a mutex.
  1122. ** Update SRFI-14 character sets to Unicode 6.1
  1123. Note that this update causes the Latin-1 characters `§' and `¶' to be
  1124. reclassified as punctuation. They were previously considered to be part
  1125. of `char-set:symbol'.
  1126. ** Better source information for datums
  1127. When the `positions' reader option is on, as it is by default, Guile's
  1128. reader will record source information for more kinds of datums.
  1129. ** Improved error and warning messages
  1130. `syntax-violation' errors now prefer `subform' for source info, with
  1131. `form' as fallback. Syntactic errors in `cond' and `case' now produce
  1132. better errors. `case' can now warn on duplicate datums, or datums that
  1133. cannot be usefully compared with `eqv?'. `-Warity-mismatch' now handles
  1134. applicable structs. `-Wformat' is more robust in the presence of
  1135. `gettext'. Finally, various exceptions thrown by the Web modules now
  1136. define appropriate exception printers.
  1137. ** A few important bug fixes in the HTTP modules.
  1138. Guile's web server framework now checks if an application returns a body
  1139. where it is not permitted, for example in response to a HEAD request,
  1140. and warn or truncate the response as appropriate. Bad requests now
  1141. cause a 400 Bad Request response to be printed before closing the port.
  1142. Finally, some date-printing and URL-parsing bugs were fixed.
  1143. ** Pretty-print improvements
  1144. When Guile needs to pretty-print Tree-IL, it will try to reconstruct
  1145. `cond', `or`, and other derived syntax forms from the primitive tree-IL
  1146. forms. It also uses the original names instead of the fresh unique
  1147. names, when it is unambiguous to do so. This can be seen in the output
  1148. of REPL commands like `,optimize'.
  1149. Also, the `pretty-print' procedure has a new keyword argument,
  1150. `#:max-expr-width'.
  1151. ** Fix memory leak involving applicable SMOBs
  1152. At some point in the 1.9.x series, Guile began leaking any applicable
  1153. SMOB that was actually applied. (There was a weak-key map from SMOB to
  1154. trampoline functions, where the value had a strong reference on the
  1155. key.) This has been fixed. There was much rejoicing!
  1156. ** Support for HTTP/1.1 chunked transfer coding
  1157. See "Transfer Codings" in the manual, for more.
  1158. ** Micro-optimizations
  1159. A pile of micro-optimizations: the `string-trim' function when called
  1160. with `char-set:whitespace'; the `(web http)' parsers; SMOB application;
  1161. conversion of raw UTF-8 and UTF-32 data to and from SCM strings; vlists
  1162. and vhashes; `read' when processing string literals.
  1163. ** Incompatible change to `scandir'
  1164. As was the original intention, `scandir' now runs the `select?'
  1165. procedure on all items, including subdirectories and the `.' and `..'
  1166. entries. It receives the basename of the file in question instead of
  1167. the full name. We apologize for this incompatible change to this
  1168. function introduced in the 2.0.4 release.
  1169. * Manual updates
  1170. The manual has been made much more consistent in its naming conventions
  1171. with regards to formal parameters of functions. Thanks to Bake Timmons.
  1172. * New interfaces
  1173. ** New C function: `scm_to_pointer'
  1174. ** New C inline functions: `scm_new_smob', `scm_new_double_smob'
  1175. ** (ice-9 format): Add ~h specifier for localized number output.
  1176. ** (web response): New procedure: `response-must-not-include-body?'
  1177. ** New predicate: 'supports-source-properties?'
  1178. ** New C helpers: `scm_c_values', `scm_c_nvalues'
  1179. ** Newly public inline C function: `scm_unget_byte'
  1180. ** (language tree-il): New functions: `tree-il=?', `tree-il-hash'
  1181. ** New fluid: `%default-port-conversion-strategy'
  1182. ** New syntax: `=>' within `case'
  1183. ** (web http): `make-chunked-input-port', `make-chunked-output-port'
  1184. ** (web http): `declare-opaque-header!'
  1185. Search the manual for these identifiers, for more information.
  1186. * New deprecations
  1187. ** `close-io-port' deprecated
  1188. Use `close-port'.
  1189. ** `scm_sym2var' deprecated
  1190. In most cases, replace with `scm_lookup' or `scm_module_variable'. Use
  1191. `scm_define' or `scm_module_ensure_local_variable' if the second
  1192. argument is nonzero. See "Accessing Modules from C" in the manual, for
  1193. full details.
  1194. ** Lookup closures deprecated
  1195. These were never documented. See "Module System Reflection" in the
  1196. manual for replacements.
  1197. * Build fixes
  1198. ** Fix compilation against uninstalled Guile on non-GNU platforms.
  1199. ** Fix `SCM_I_ERROR' definition for MinGW without networking.
  1200. ** Fix compilation with the Sun C compiler.
  1201. ** Fix check for `clock_gettime' on OpenBSD and some other systems.
  1202. ** Fix build with --enable-debug-malloc.
  1203. ** Honor $(program_transform_name) for the `guile-tools' symlink.
  1204. ** Fix cross-compilation of GOOPS-using code.
  1205. * Bug fixes
  1206. ** Fix use of unitialized stat buffer in search-path of absolute paths.
  1207. ** Avoid calling `freelocale' with a NULL argument.
  1208. ** Work around erroneous tr_TR locale in Darwin 8 in tests.
  1209. ** Fix `getaddrinfo' test for Darwin 8.
  1210. ** Use Gnulib's `regex' module for better regex portability.
  1211. ** `source-properties' and friends work on any object
  1212. ** Rewrite open-process in C, for robustness related to threads and fork
  1213. ** Fix <TAG>vector-length when applied to other uniform vector types
  1214. ** Fix escape-only prompt optimization (was disabled previously)
  1215. ** Fix a segfault when /dev/urandom is not accessible
  1216. ** Fix flush on soft ports, so that it actually runs.
  1217. ** Better compatibility of SRFI-9 records with core records
  1218. ** Fix and clarify documentation of `sorted?'.
  1219. ** Fix IEEE-754 endianness conversion in bytevectors.
  1220. ** Correct thunk check in the `wind' instruction.
  1221. ** Add @acronym support to texinfo modules
  1222. ** Fix docbook->texi for <ulink> without URL
  1223. ** Fix `setvbuf' to leave the line/column number unchanged.
  1224. ** Add missing public declaration for `scm_take_from_input_buffers'.
  1225. ** Fix relative file name canonicalization with empty %LOAD-PATH entries.
  1226. ** Import newer (ice-9 match) from Chibi-Scheme.
  1227. ** Fix unbound variables and unbound values in ECMAScript runtime.
  1228. ** Make SRFI-6 string ports Unicode-capable.
  1229. Changes in 2.0.5 (since 2.0.4):
  1230. This release fixes the binary interface information (SONAME) of
  1231. libguile, which was incorrect in 2.0.4. It does not contain other
  1232. changes.
  1233. Changes in 2.0.4 (since 2.0.3):
  1234. * Notable changes
  1235. ** Better debuggability for interpreted procedures.
  1236. Guile 2.0 came with a great debugging experience for compiled
  1237. procedures, but the story for interpreted procedures was terrible. Now,
  1238. at least, interpreted procedures have names, and the `arity' procedure
  1239. property is always correct (or, as correct as it can be, in the presence
  1240. of `case-lambda').
  1241. ** Support for cross-compilation.
  1242. One can now use a native Guile to cross-compile `.go' files for a
  1243. different architecture. See the documentation for `--target' in the
  1244. "Compilation" section of the manual, for information on how to use the
  1245. cross-compiler. See the "Cross building Guile" section of the README,
  1246. for more on how to cross-compile Guile itself.
  1247. ** The return of `local-eval'.
  1248. Back by popular demand, `the-environment' and `local-eval' allow the
  1249. user to capture a lexical environment, and then evaluate arbitrary
  1250. expressions in that context. There is also a new `local-compile'
  1251. command. See "Local Evaluation" in the manual, for more. Special
  1252. thanks to Mark Weaver for an initial implementation of this feature.
  1253. ** Fluids can now have default values.
  1254. Fluids are used for dynamic and thread-local binding. They have always
  1255. inherited their values from the context or thread that created them.
  1256. However, there was a case in which a new thread would enter Guile, and
  1257. the default values of all the fluids would be `#f' for that thread.
  1258. This has now been fixed so that `make-fluid' has an optional default
  1259. value for fluids in unrelated dynamic roots, which defaults to `#f'.
  1260. ** Garbage collector tuning.
  1261. The garbage collector has now been tuned to run more often under some
  1262. circumstances.
  1263. *** Unmanaged allocation
  1264. The new `scm_gc_register_allocation' function will notify the collector
  1265. of unmanaged allocation. This will cause the collector to run sooner.
  1266. Guile's `scm_malloc', `scm_calloc', and `scm_realloc' unmanaged
  1267. allocators eventually call this function. This leads to better
  1268. performance under steady-state unmanaged allocation.
  1269. *** Transient allocation
  1270. When the collector runs, it will try to record the total memory
  1271. footprint of a process, if the platform supports this information. If
  1272. the memory footprint is growing, the collector will run more frequently.
  1273. This reduces the increase of the resident size of a process in response
  1274. to a transient increase in allocation.
  1275. *** Management of threads, bignums
  1276. Creating a thread will allocate a fair amount of memory. Guile now does
  1277. some GC work (using `GC_collect_a_little') when allocating a thread.
  1278. This leads to a better memory footprint when creating many short-lived
  1279. threads.
  1280. Similarly, bignums can occupy a lot of memory. Guile now offers hooks
  1281. to enable custom GMP allocators that end up calling
  1282. `scm_gc_register_allocation'. These allocators are enabled by default
  1283. when running Guile from the command-line. To enable them in libraries,
  1284. set the `scm_install_gmp_memory_functions' variable to a nonzero value
  1285. before loading Guile.
  1286. ** SRFI-39 parameters are available by default.
  1287. Guile now includes support for parameters, as defined by SRFI-39, in the
  1288. default environment. See "Parameters" in the manual, for more
  1289. information. `current-input-port', `current-output-port', and
  1290. `current-error-port' are now parameters.
  1291. ** Add `current-warning-port'.
  1292. Guile now outputs warnings on a separate port, `current-warning-port',
  1293. initialized to the value that `current-error-port' has on startup.
  1294. ** Syntax parameters.
  1295. Following Racket's lead, Guile now supports syntax parameters. See
  1296. "Syntax parameters" in the manual, for more.
  1297. Also see Barzilay, Culpepper, and Flatt's 2011 SFP workshop paper,
  1298. "Keeping it Clean with syntax-parameterize".
  1299. ** Parse command-line arguments from the locale encoding.
  1300. Guile now attempts to parse command-line arguments using the user's
  1301. locale. However for backwards compatibility with other 2.0.x releases,
  1302. it does so without actually calling `setlocale'. Please report any bugs
  1303. in this facility to bug-guile@gnu.org.
  1304. ** One-armed conditionals: `when' and `unless'
  1305. Guile finally has `when' and `unless' in the default environment. Use
  1306. them whenever you would use an `if' with only one branch. See
  1307. "Conditionals" in the manual, for more.
  1308. ** `current-filename', `add-to-load-path'
  1309. There is a new form, `(current-filename)', which expands out to the
  1310. source file in which it occurs. Combined with the new
  1311. `add-to-load-path', this allows simple scripts to easily add nearby
  1312. directories to the load path. See "Load Paths" in the manual, for more.
  1313. ** `random-state-from-platform'
  1314. This procedure initializes a random seed using good random sources
  1315. available on your platform, such as /dev/urandom. See "Random Number
  1316. Generation" in the manual, for more.
  1317. ** Warn about unsupported `simple-format' options.
  1318. The `-Wformat' compilation option now reports unsupported format options
  1319. passed to `simple-format'.
  1320. ** Manual updates
  1321. Besides the sections already mentioned, the following manual sections
  1322. are new in this release: "Modules and the File System", "Module System
  1323. Reflection", "Syntax Transformer Helpers", and "Local Inclusion".
  1324. * New interfaces
  1325. ** (ice-9 session): `apropos-hook'
  1326. ** New print option: `escape-newlines', defaults to #t.
  1327. ** (ice-9 ftw): `file-system-fold', `file-system-tree', `scandir'
  1328. ** `scm_c_value_ref': access to multiple returned values from C
  1329. ** scm_call (a varargs version), scm_call_7, scm_call_8, scm_call_9
  1330. ** Some new syntax helpers in (system syntax)
  1331. Search the manual for these identifiers and modules, for more.
  1332. * Build fixes
  1333. ** FreeBSD build fixes.
  1334. ** OpenBSD compilation fixes.
  1335. ** Solaris 2.10 test suite fixes.
  1336. ** IA64 compilation fix.
  1337. ** MinGW build fixes.
  1338. ** Work around instruction reordering on SPARC and HPPA in the VM.
  1339. ** Gnulib updates: added `dirfd', `setenv' modules.
  1340. * Bug fixes
  1341. ** Add a deprecated alias for $expt.
  1342. ** Add an exception printer for `getaddrinfo-error'.
  1343. ** Add deprecated shim for `scm_display_error' with stack as first argument.
  1344. ** Add warnings for unsupported `simple-format' options.
  1345. ** Allow overlapping regions to be passed to `bytevector-copy!'.
  1346. ** Better function prologue disassembly
  1347. ** Compiler: fix miscompilation of (values foo ...) in some contexts.
  1348. ** Compiler: fix serialization of #nil-terminated lists.
  1349. ** Compiler: allow values bound in non-tail let expressions to be collected.
  1350. ** Deprecate SCM_ASRTGO.
  1351. ** Document invalidity of (begin) as expression; add back-compat shim.
  1352. ** Don't leak file descriptors when mmaping objcode.
  1353. ** Empty substrings no longer reference the original stringbuf.
  1354. ** FFI: Fix `set-pointer-finalizer!' to leave the type cell unchanged.
  1355. ** FFI: Hold a weak reference to the CIF made by `procedure->pointer'.
  1356. ** FFI: Hold a weak reference to the procedure passed to `procedure->pointer'.
  1357. ** FFI: Properly unpack small integer return values in closure call.
  1358. ** Fix R6RS `fold-left' so the accumulator is the first argument.
  1359. ** Fix bit-set*! bug from 2005.
  1360. ** Fix bug in `make-repl' when `lang' is actually a <language>.
  1361. ** Fix bugs related to mutation, the null string, and shared substrings.
  1362. ** Fix <dynwind> serialization.
  1363. ** Fix erroneous check in `set-procedure-properties!'.
  1364. ** Fix generalized-vector-{ref,set!} for slices.
  1365. ** Fix error messages involving definition forms.
  1366. ** Fix primitive-eval to return #<unspecified> for definitions.
  1367. ** HTTP: Extend handling of "Cache-Control" header.
  1368. ** HTTP: Fix qstring writing of cache-extension values
  1369. ** HTTP: Fix validators for various list-style headers.
  1370. ** HTTP: Permit non-date values for Expires header.
  1371. ** HTTP: `write-request-line' writes absolute paths, not absolute URIs.
  1372. ** Hack the port-column of current-output-port after printing a prompt.
  1373. ** Make sure `regexp-quote' tests use Unicode-capable string ports.
  1374. ** Peval: Fix bugs in the new optimizer.
  1375. ** Statistically unique marks and labels, for robust hygiene across sessions.
  1376. ** Web: Allow URIs with empty authorities, like "file:///etc/hosts".
  1377. ** `,language' at REPL sets the current-language fluid.
  1378. ** `primitive-load' returns the value(s) of the last expression.
  1379. ** `scm_from_stringn' always returns unique strings.
  1380. ** `scm_i_substring_copy' tries to narrow the substring.
  1381. ** i18n: Fix gc_malloc/free mismatch on non-GNU systems.
  1382. Changes in 2.0.3 (since 2.0.2):
  1383. * Speed improvements
  1384. ** Guile has a new optimizer, `peval'.
  1385. `Peval' is a partial evaluator that performs constant folding, dead code
  1386. elimination, copy propagation, and inlining. By default it runs on
  1387. every piece of code that Guile compiles, to fold computations that can
  1388. happen at compile-time, so they don't have to happen at runtime.
  1389. If we did our job right, the only impact you would see would be your
  1390. programs getting faster. But if you notice slowdowns or bloated code,
  1391. please send a mail to bug-guile@gnu.org with details.
  1392. Thanks to William R. Cook, Oscar Waddell, and Kent Dybvig for inspiring
  1393. peval and its implementation.
  1394. You can see what peval does on a given piece of code by running the new
  1395. `,optimize' REPL meta-command, and comparing it to the output of
  1396. `,expand'. See "Compile Commands" in the manual, for more.
  1397. ** Fewer calls to `stat'.
  1398. Guile now stats only the .go file and the .scm file when loading a fresh
  1399. compiled file.
  1400. * Notable changes
  1401. ** New module: `(web client)', a simple synchronous web client.
  1402. See "Web Client" in the manual, for more.
  1403. ** Users can now install compiled `.go' files.
  1404. See "Installing Site Packages" in the manual.
  1405. ** Remove Front-Cover and Back-Cover text from the manual.
  1406. The manual is still under the GNU Free Documentation License, but no
  1407. longer has any invariant sections.
  1408. ** More helpful `guild help'.
  1409. `guild' is Guile's multi-tool, for use in shell scripting. Now it has a
  1410. nicer interface for querying the set of existing commands, and getting
  1411. help on those commands. Try it out and see!
  1412. ** New macro: `define-syntax-rule'
  1413. `define-syntax-rule' is a shorthand to make a `syntax-rules' macro with
  1414. one clause. See "Syntax Rules" in the manual, for more.
  1415. ** The `,time' REPL meta-command now has more precision.
  1416. The output of this command now has microsecond precision, instead of
  1417. 10-millisecond precision.
  1418. ** `(ice-9 match)' can now match records.
  1419. See "Pattern Matching" in the manual, for more on matching records.
  1420. ** New module: `(language tree-il debug)'.
  1421. This module provides a tree-il verifier. This is useful for people that
  1422. generate tree-il, usually as part of a language compiler.
  1423. ** New functions: `scm_is_exact', `scm_is_inexact'.
  1424. These provide a nice C interface for Scheme's `exact?' and `inexact?',
  1425. respectively.
  1426. * Bugs fixed
  1427. See the git log (or the ChangeLog) for more details on these bugs.
  1428. ** Fix order of importing modules and resolving duplicates handlers.
  1429. ** Fix a number of bugs involving extended (merged) generics.
  1430. ** Fix invocation of merge-generics duplicate handler.
  1431. ** Fix write beyond array end in arrays.c.
  1432. ** Fix read beyond end of hashtable size array in hashtab.c.
  1433. ** (web http): Locale-independent parsing and serialization of dates.
  1434. ** Ensure presence of Host header in HTTP/1.1 requests.
  1435. ** Fix take-right and drop-right for improper lists.
  1436. ** Fix leak in get_current_locale().
  1437. ** Fix recursive define-inlinable expansions.
  1438. ** Check that srfi-1 procedure arguments are procedures.
  1439. ** Fix r6rs `map' for multiple returns.
  1440. ** Fix scm_tmpfile leak on POSIX platforms.
  1441. ** Fix a couple of leaks (objcode->bytecode, make-boot-program).
  1442. ** Fix guile-lib back-compatibility for module-stexi-documentation.
  1443. ** Fix --listen option to allow other ports.
  1444. ** Fix scm_to_latin1_stringn for substrings.
  1445. ** Fix compilation of untyped arrays of rank not 1.
  1446. ** Fix unparse-tree-il of <dynset>.
  1447. ** Fix reading of #||||#.
  1448. ** Fix segfault in GOOPS when class fields are redefined.
  1449. ** Prefer poll(2) over select(2) to allow file descriptors above FD_SETSIZE.
  1450. Changes in 2.0.2 (since 2.0.1):
  1451. * Notable changes
  1452. ** `guile-tools' renamed to `guild'
  1453. The new name is shorter. Its intended future use is for a CPAN-like
  1454. system for Guile wizards and journeyfolk to band together to share code;
  1455. hence the name. `guile-tools' is provided as a backward-compatible
  1456. symbolic link. See "Using Guile Tools" in the manual, for more.
  1457. ** New control operators: `shift' and `reset'
  1458. See "Shift and Reset" in the manual, for more information.
  1459. ** `while' as an expression
  1460. Previously the return value of `while' was unspecified. Now its
  1461. values are specified both in the case of normal termination, and via
  1462. termination by invoking `break', possibly with arguments. See "while
  1463. do" in the manual for more.
  1464. ** Disallow access to handles of weak hash tables
  1465. `hash-get-handle' and `hash-create-handle!' are no longer permitted to
  1466. be called on weak hash tables, because the fields in a weak handle could
  1467. be nulled out by the garbage collector at any time, but yet they are
  1468. otherwise indistinguishable from pairs. Use `hash-ref' and `hash-set!'
  1469. instead.
  1470. ** More precision for `get-internal-run-time', `get-internal-real-time'
  1471. On 64-bit systems which support POSIX clocks, Guile's internal timing
  1472. procedures offer nanosecond resolution instead of the 10-millisecond
  1473. resolution previously available. 32-bit systems now use 1-millisecond
  1474. timers.
  1475. ** Guile now measures time spent in GC
  1476. `gc-stats' now returns a meaningful value for `gc-time-taken'.
  1477. ** Add `gcprof'
  1478. The statprof profiler now exports a `gcprof' procedure, driven by the
  1479. `after-gc-hook', to see which parts of your program are causing GC. Let
  1480. us know if you find it useful.
  1481. ** `map', `for-each' and some others now implemented in Scheme
  1482. We would not mention this in NEWS, as it is not a user-visible change,
  1483. if it were not for one thing: `map' and `for-each' are no longer
  1484. primitive generics. Instead they are normal bindings, which can be
  1485. wrapped by normal generics. This fixes some modularity issues between
  1486. core `map', SRFI-1 `map', and GOOPS.
  1487. Also it's pretty cool that we can do this without a performance impact.
  1488. ** Add `scm_peek_byte_or_eof'.
  1489. This helper is like `scm_peek_char_or_eof', but for bytes instead of
  1490. full characters.
  1491. ** Implement #:stop-at-first-non-option option for getopt-long
  1492. See "getopt-long Reference" in the manual, for more information.
  1493. ** Improve R6RS conformance for conditions in the I/O libraries
  1494. The `(rnrs io simple)' module now raises the correct R6RS conditions in
  1495. error cases. `(rnrs io ports)' is also more correct now, though it is
  1496. still a work in progress.
  1497. ** All deprecated routines emit warnings
  1498. A few deprecated routines were lacking deprecation warnings. This has
  1499. been fixed now.
  1500. * Speed improvements
  1501. ** Constants in compiled code now share state better
  1502. Constants with shared state, like `("foo")' and `"foo"', now share state
  1503. as much as possible, in the entire compilation unit. This cuts compiled
  1504. `.go' file sizes in half, generally, and speeds startup.
  1505. ** VLists: optimize `vlist-fold-right', and add `vhash-fold-right'
  1506. These procedures are now twice as fast as they were.
  1507. ** UTF-8 ports to bypass `iconv' entirely
  1508. This reduces memory usage in a very common case.
  1509. ** Compiler speedups
  1510. The compiler is now about 40% faster. (Note that this is only the case
  1511. once the compiler is itself compiled, so the build still takes as long
  1512. as it did before.)
  1513. ** VM speed tuning
  1514. Some assertions that were mostly useful for sanity-checks on the
  1515. bytecode compiler are now off for both "regular" and "debug" engines.
  1516. This together with a fix to cache a TLS access and some other tweaks
  1517. improve the VM's performance by about 20%.
  1518. ** SRFI-1 list-set optimizations
  1519. lset-adjoin and lset-union now have fast paths for eq? sets.
  1520. ** `memq', `memv' optimizations
  1521. These procedures are now at least twice as fast than in 2.0.1.
  1522. * Deprecations
  1523. ** Deprecate scm_whash API
  1524. `scm_whash_get_handle', `SCM_WHASHFOUNDP', `SCM_WHASHREF',
  1525. `SCM_WHASHSET', `scm_whash_create_handle', `scm_whash_lookup', and
  1526. `scm_whash_insert' are now deprecated. Use the normal hash table API
  1527. instead.
  1528. ** Deprecate scm_struct_table
  1529. `SCM_STRUCT_TABLE_NAME', `SCM_SET_STRUCT_TABLE_NAME',
  1530. `SCM_STRUCT_TABLE_CLASS', `SCM_SET_STRUCT_TABLE_CLASS',
  1531. `scm_struct_table', and `scm_struct_create_handle' are now deprecated.
  1532. These routines formed part of the internals of the map between structs
  1533. and classes.
  1534. ** Deprecate scm_internal_dynamic_wind
  1535. The `scm_t_inner' type and `scm_internal_dynamic_wind' are deprecated,
  1536. as the `scm_dynwind' API is better, and this API encourages users to
  1537. stuff SCM values into pointers.
  1538. ** Deprecate scm_immutable_cell, scm_immutable_double_cell
  1539. These routines are deprecated, as the GC_STUBBORN API doesn't do
  1540. anything any more.
  1541. * Manual updates
  1542. Andreas Rottman kindly transcribed the missing parts of the `(rnrs io
  1543. ports)' documentation from the R6RS documentation. Thanks Andreas!
  1544. * Bugs fixed
  1545. ** Fix double-loading of script in -ds case
  1546. ** -x error message fix
  1547. ** iconveh-related cross-compilation fixes
  1548. ** Fix small integer return value packing on big endian machines.
  1549. ** Fix hash-set! in weak-value table from non-immediate to immediate
  1550. ** Fix call-with-input-file & relatives for multiple values
  1551. ** Fix `hash' for inf and nan
  1552. ** Fix libguile internal type errors caught by typing-strictness==2
  1553. ** Fix compile error in MinGW fstat socket detection
  1554. ** Fix generation of auto-compiled file names on MinGW
  1555. ** Fix multithreaded access to internal hash tables
  1556. ** Emit a 1-based line number in error messages
  1557. ** Fix define-module ordering
  1558. ** Fix several POSIX functions to use the locale encoding
  1559. ** Add type and range checks to the complex generalized vector accessors
  1560. ** Fix unaligned accesses for bytevectors of complex numbers
  1561. ** Fix '(a #{.} b)
  1562. ** Fix erroneous VM stack overflow for canceled threads
  1563. Changes in 2.0.1 (since 2.0.0):
  1564. * Notable changes
  1565. ** guile.m4 supports linking with rpath
  1566. The GUILE_FLAGS macro now sets GUILE_LIBS and GUILE_LTLIBS, which
  1567. include appropriate directives to the linker to include libguile-2.0.so
  1568. in the runtime library lookup path.
  1569. ** `begin' expands macros in its body before other expressions
  1570. This enables support for programs like the following:
  1571. (begin
  1572. (define even?
  1573. (lambda (x)
  1574. (or (= x 0) (odd? (- x 1)))))
  1575. (define-syntax odd?
  1576. (syntax-rules ()
  1577. ((odd? x) (not (even? x)))))
  1578. (even? 10))
  1579. ** REPL reader usability enhancements
  1580. The REPL now flushes input after a read error, which should prevent one
  1581. error from causing other errors. The REPL also now interprets comments
  1582. as whitespace.
  1583. ** REPL output has configurable width
  1584. The REPL now defaults to output with the current terminal's width, in
  1585. columns. See "Debug Commands" in the manual for more information on
  1586. the ,width command.
  1587. ** Better C access to the module system
  1588. Guile now has convenient C accessors to look up variables or values in
  1589. modules and their public interfaces. See `scm_c_public_ref' and friends
  1590. in "Accessing Modules from C" in the manual.
  1591. ** Added `scm_call_5', `scm_call_6'
  1592. See "Fly Evaluation" in the manual.
  1593. ** Added `scm_from_latin1_keyword', `scm_from_utf8_keyword'
  1594. See "Keyword Procedures" in the manual, for more. Note that
  1595. `scm_from_locale_keyword' should not be used when the name is a C string
  1596. constant.
  1597. ** R6RS unicode and string I/O work
  1598. Added efficient implementations of `get-string-n' and `get-string-n!'
  1599. for binary ports. Exported `current-input-port', `current-output-port'
  1600. and `current-error-port' from `(rnrs io ports)', and enhanced support
  1601. for transcoders.
  1602. ** Added `pointer->scm', `scm->pointer' to `(system foreign)'
  1603. These procedure are useful if one needs to pass and receive SCM values
  1604. to and from foreign functions. See "Foreign Variables" in the manual,
  1605. for more.
  1606. ** Added `heap-allocated-since-gc' to `(gc-stats)'
  1607. Also fixed the long-standing bug in the REPL `,stat' command.
  1608. ** Add `on-error' REPL option
  1609. This option controls what happens when an error occurs at the REPL, and
  1610. defaults to `debug', indicating that Guile should enter the debugger.
  1611. Other values include `report', which will simply print a backtrace
  1612. without entering the debugger. See "System Commands" in the manual.
  1613. ** Enforce immutability of string literals
  1614. Attempting to mutate a string literal now causes a runtime error.
  1615. ** Fix pthread redirection
  1616. Guile 2.0.0 shipped with headers that, if configured with pthread
  1617. support, would re-define `pthread_create', `pthread_join', and other API
  1618. to redirect to the BDW-GC wrappers, `GC_pthread_create', etc. This was
  1619. unintended, and not necessary: because threads must enter Guile with
  1620. `scm_with_guile', Guile can handle thread registration itself, without
  1621. needing to make the GC aware of all threads. This oversight has been
  1622. fixed.
  1623. ** `with-continuation-barrier' now unwinds on `quit'
  1624. A throw to `quit' in a continuation barrier will cause Guile to exit.
  1625. Before, it would do so before unwinding to the barrier, which would
  1626. prevent cleanup handlers from running. This has been fixed so that it
  1627. exits only after unwinding.
  1628. ** `string->pointer' and `pointer->string' have optional encoding arg
  1629. This allows users of the FFI to more easily deal in strings with
  1630. particular (non-locale) encodings, like "utf-8". See "Void Pointers and
  1631. Byte Access" in the manual, for more.
  1632. ** R6RS fixnum arithmetic optimizations
  1633. R6RS fixnum operations are are still slower than generic arithmetic,
  1634. however.
  1635. ** New procedure: `define-inlinable'
  1636. See "Inlinable Procedures" in the manual, for more.
  1637. ** New procedure: `exact-integer-sqrt'
  1638. See "Integer Operations" in the manual, for more.
  1639. ** "Extended read syntax" for symbols parses better
  1640. In #{foo}# symbols, backslashes are now treated as escapes, as the
  1641. symbol-printing code intended. Additionally, "\x" within #{foo}# is now
  1642. interpreted as starting an R6RS hex escape. This is backward compatible
  1643. because the symbol printer would never produce a "\x" before. The
  1644. printer also works better too.
  1645. ** Added `--fresh-auto-compile' option
  1646. This allows a user to invalidate the auto-compilation cache. It's
  1647. usually not needed. See "Compilation" in the manual, for a discussion.
  1648. * Manual updates
  1649. ** GOOPS documentation updates
  1650. ** New man page
  1651. Thanks to Mark Harig for improvements to guile.1.
  1652. ** SRFI-23 documented
  1653. The humble `error' SRFI now has an entry in the manual.
  1654. * New modules
  1655. ** `(ice-9 binary-ports)': "R6RS I/O Ports", in the manual
  1656. ** `(ice-9 eval-string)': "Fly Evaluation", in the manual
  1657. ** `(ice-9 command-line)', not documented yet
  1658. * Bugs fixed
  1659. ** Fixed `iconv_t' memory leak on close-port
  1660. ** Fixed some leaks with weak hash tables
  1661. ** Export `vhash-delq' and `vhash-delv' from `(ice-9 vlist)'
  1662. ** `after-gc-hook' works again
  1663. ** `define-record-type' now allowed in nested contexts
  1664. ** `exact-integer-sqrt' now handles large integers correctly
  1665. ** Fixed C extension examples in manual
  1666. ** `vhash-delete' honors HASH argument
  1667. ** Make `locale-digit-grouping' more robust
  1668. ** Default exception printer robustness fixes
  1669. ** Fix presence of non-I CPPFLAGS in `guile-2.0.pc'
  1670. ** `read' updates line/column numbers when reading SCSH block comments
  1671. ** Fix imports of multiple custom interfaces of same module
  1672. ** Fix encoding scanning for non-seekable ports
  1673. ** Fix `setter' when called with a non-setter generic
  1674. ** Fix f32 and f64 bytevectors to not accept rationals
  1675. ** Fix description of the R6RS `finite?' in manual
  1676. ** Quotient, remainder and modulo accept inexact integers again
  1677. ** Fix `continue' within `while' to take zero arguments
  1678. ** Fix alignment for structures in FFI
  1679. ** Fix port-filename of stdin, stdout, stderr to match the docs
  1680. ** Fix weak hash table-related bug in `define-wrapped-pointer-type'
  1681. ** Fix partial continuation application with pending procedure calls
  1682. ** scm_{to,from}_locale_string use current locale, not current ports
  1683. ** Fix thread cleanup, by using a pthread_key destructor
  1684. ** Fix `quit' at the REPL
  1685. ** Fix a failure to sync regs in vm bytevector ops
  1686. ** Fix (texinfo reflection) to handle nested structures like syntax patterns
  1687. ** Fix stexi->html double translation
  1688. ** Fix tree-il->scheme fix for <prompt>
  1689. ** Fix compilation of <prompt> in <fix> in single-value context
  1690. ** Fix race condition in ensure-writable-dir
  1691. ** Fix error message on ,disassemble "non-procedure"
  1692. ** Fix prompt and abort with the boot evaluator
  1693. ** Fix `procedure->pointer' for functions returning `void'
  1694. ** Fix error reporting in dynamic-pointer
  1695. ** Fix problems detecting coding: in block comments
  1696. ** Fix duplicate load-path and load-compiled-path in compilation environment
  1697. ** Add fallback read(2) suppport for .go files if mmap(2) unavailable
  1698. ** Fix c32vector-set!, c64vector-set!
  1699. ** Fix mistakenly deprecated read syntax for uniform complex vectors
  1700. ** Fix parsing of exact numbers with negative exponents
  1701. ** Ignore SIGPIPE in (system repl server)
  1702. ** Fix optional second arg to R6RS log function
  1703. ** Fix R6RS `assert' to return true value.
  1704. ** Fix fencepost error when seeking in bytevector input ports
  1705. ** Gracefully handle `setlocale' errors when starting the REPL
  1706. ** Improve support of the `--disable-posix' configure option
  1707. ** Make sure R6RS binary ports pass `binary-port?' regardless of the locale
  1708. ** Gracefully handle unterminated UTF-8 sequences instead of hitting an `assert'
  1709. Changes in 2.0.0 (changes since the 1.8.x series):
  1710. * New modules (see the manual for details)
  1711. ** `(srfi srfi-18)', more sophisticated multithreading support
  1712. ** `(srfi srfi-27)', sources of random bits
  1713. ** `(srfi srfi-38)', External Representation for Data With Shared Structure
  1714. ** `(srfi srfi-42)', eager comprehensions
  1715. ** `(srfi srfi-45)', primitives for expressing iterative lazy algorithms
  1716. ** `(srfi srfi-67)', compare procedures
  1717. ** `(ice-9 i18n)', internationalization support
  1718. ** `(ice-9 futures)', fine-grain parallelism
  1719. ** `(rnrs bytevectors)', the R6RS bytevector API
  1720. ** `(rnrs io ports)', a subset of the R6RS I/O port API
  1721. ** `(system xref)', a cross-referencing facility (FIXME undocumented)
  1722. ** `(ice-9 vlist)', lists with constant-time random access; hash lists
  1723. ** `(system foreign)', foreign function interface
  1724. ** `(sxml match)', a pattern matcher for SXML
  1725. ** `(srfi srfi-9 gnu)', extensions to the SRFI-9 record library
  1726. ** `(system vm coverage)', a line-by-line code coverage library
  1727. ** `(web uri)', URI data type, parser, and unparser
  1728. ** `(web http)', HTTP header parsers and unparsers
  1729. ** `(web request)', HTTP request data type, reader, and writer
  1730. ** `(web response)', HTTP response data type, reader, and writer
  1731. ** `(web server)', Generic HTTP server
  1732. ** `(ice-9 poll)', a poll wrapper
  1733. ** `(web server http)', HTTP-over-TCP web server implementation
  1734. ** Replaced `(ice-9 match)' with Alex Shinn's compatible, hygienic matcher.
  1735. Guile's copy of Andrew K. Wright's `match' library has been replaced by
  1736. a compatible hygienic implementation by Alex Shinn. It is now
  1737. documented, see "Pattern Matching" in the manual.
  1738. Compared to Andrew K. Wright's `match', the new `match' lacks
  1739. `match-define', `match:error-control', `match:set-error-control',
  1740. `match:error', `match:set-error', and all structure-related procedures.
  1741. ** Imported statprof, SSAX, and texinfo modules from Guile-Lib
  1742. The statprof statistical profiler, the SSAX XML toolkit, and the texinfo
  1743. toolkit from Guile-Lib have been imported into Guile proper. See
  1744. "Standard Library" in the manual for more details.
  1745. ** Integration of lalr-scm, a parser generator
  1746. Guile has included Dominique Boucher's fine `lalr-scm' parser generator
  1747. as `(system base lalr)'. See "LALR(1) Parsing" in the manual, for more
  1748. information.
  1749. * Changes to the stand-alone interpreter
  1750. ** Guile now can compile Scheme to bytecode for a custom virtual machine.
  1751. Compiled code loads much faster than Scheme source code, and runs around
  1752. 3 or 4 times as fast, generating much less garbage in the process.
  1753. ** Evaluating Scheme code does not use the C stack.
  1754. Besides when compiling Guile itself, Guile no longer uses a recursive C
  1755. function as an evaluator. This obviates the need to check the C stack
  1756. pointer for overflow. Continuations still capture the C stack, however.
  1757. ** New environment variables: GUILE_LOAD_COMPILED_PATH,
  1758. GUILE_SYSTEM_LOAD_COMPILED_PATH
  1759. GUILE_LOAD_COMPILED_PATH is for compiled files what GUILE_LOAD_PATH is
  1760. for source files. It is a different path, however, because compiled
  1761. files are architecture-specific. GUILE_SYSTEM_LOAD_COMPILED_PATH is like
  1762. GUILE_SYSTEM_PATH.
  1763. ** New read-eval-print loop (REPL) implementation
  1764. Running Guile with no arguments drops the user into the new REPL. See
  1765. "Using Guile Interactively" in the manual, for more information.
  1766. ** Remove old Emacs interface
  1767. Guile had an unused `--emacs' command line argument that was supposed to
  1768. help when running Guile inside Emacs. This option has been removed, and
  1769. the helper functions `named-module-use!' and `load-emacs-interface' have
  1770. been deprecated.
  1771. ** Add `(system repl server)' module and `--listen' command-line argument
  1772. The `(system repl server)' module exposes procedures to listen on
  1773. sockets for connections, and serve REPLs to those clients. The --listen
  1774. command-line argument allows any Guile program to thus be remotely
  1775. debuggable.
  1776. See "Invoking Guile" for more information on `--listen'.
  1777. ** Command line additions
  1778. The guile binary now supports a new switch "-x", which can be used to
  1779. extend the list of filename extensions tried when loading files
  1780. (%load-extensions).
  1781. ** New reader options: `square-brackets', `r6rs-hex-escapes',
  1782. `hungry-eol-escapes'
  1783. The reader supports a new option (changeable via `read-options'),
  1784. `square-brackets', which instructs it to interpret square brackets as
  1785. parentheses. This option is on by default.
  1786. When the new `r6rs-hex-escapes' reader option is enabled, the reader
  1787. will recognize string escape sequences as defined in R6RS. R6RS string
  1788. escape sequences are incompatible with Guile's existing escapes, though,
  1789. so this option is off by default.
  1790. Additionally, Guile follows the R6RS newline escaping rules when the
  1791. `hungry-eol-escapes' option is enabled.
  1792. See "String Syntax" in the manual, for more information.
  1793. ** Function profiling and tracing at the REPL
  1794. The `,profile FORM' REPL meta-command can now be used to statistically
  1795. profile execution of a form, to see which functions are taking the most
  1796. time. See `,help profile' for more information.
  1797. Similarly, `,trace FORM' traces all function applications that occur
  1798. during the execution of `FORM'. See `,help trace' for more information.
  1799. ** Recursive debugging REPL on error
  1800. When Guile sees an error at the REPL, instead of saving the stack, Guile
  1801. will directly enter a recursive REPL in the dynamic context of the
  1802. error. See "Error Handling" in the manual, for more information.
  1803. A recursive REPL is the same as any other REPL, except that it
  1804. has been augmented with debugging information, so that one can inspect
  1805. the context of the error. The debugger has been integrated with the REPL
  1806. via a set of debugging meta-commands.
  1807. For example, one may access a backtrace with `,backtrace' (or
  1808. `,bt'). See "Interactive Debugging" in the manual, for more
  1809. information.
  1810. ** New `guile-tools' commands: `compile', `disassemble'
  1811. Pass the `--help' command-line option to these commands for more
  1812. information.
  1813. ** Guile now adds its install prefix to the LTDL_LIBRARY_PATH
  1814. Users may now install Guile to nonstandard prefixes and just run
  1815. `/path/to/bin/guile', instead of also having to set LTDL_LIBRARY_PATH to
  1816. include `/path/to/lib'.
  1817. ** Guile's Emacs integration is now more keyboard-friendly
  1818. Backtraces may now be disclosed with the keyboard in addition to the
  1819. mouse.
  1820. ** Load path change: search in version-specific paths before site paths
  1821. When looking for a module, Guile now searches first in Guile's
  1822. version-specific path (the library path), *then* in the site dir. This
  1823. allows Guile's copy of SSAX to override any Guile-Lib copy the user has
  1824. installed. Also it should cut the number of `stat' system calls by half,
  1825. in the common case.
  1826. ** Value history in the REPL on by default
  1827. By default, the REPL will save computed values in variables like `$1',
  1828. `$2', and the like. There are programmatic and interactive interfaces to
  1829. control this. See "Value History" in the manual, for more information.
  1830. ** Readline tab completion for arguments
  1831. When readline is enabled, tab completion works for arguments too, not
  1832. just for the operator position.
  1833. ** Expression-oriented readline history
  1834. Guile's readline history now tries to operate on expressions instead of
  1835. input lines. Let us know what you think!
  1836. ** Interactive Guile follows GNU conventions
  1837. As recommended by the GPL, Guile now shows a brief copyright and
  1838. warranty disclaimer on startup, along with pointers to more information.
  1839. * Changes to Scheme functions and syntax
  1840. ** Support for R6RS libraries
  1841. The `library' and `import' forms from the latest Scheme report have been
  1842. added to Guile, in such a way that R6RS libraries share a namespace with
  1843. Guile modules. R6RS modules may import Guile modules, and are available
  1844. for Guile modules to import via use-modules and all the rest. See "R6RS
  1845. Libraries" in the manual for more information.
  1846. ** Implementations of R6RS libraries
  1847. Guile now has implementations for all of the libraries defined in the
  1848. R6RS. Thanks to Julian Graham for this excellent hack. See "R6RS
  1849. Standard Libraries" in the manual for a full list of libraries.
  1850. ** Partial R6RS compatibility
  1851. Guile now has enough support for R6RS to run a reasonably large subset
  1852. of R6RS programs.
  1853. Guile is not fully R6RS compatible. Many incompatibilities are simply
  1854. bugs, though some parts of Guile will remain R6RS-incompatible for the
  1855. foreseeable future. See "R6RS Incompatibilities" in the manual, for more
  1856. information.
  1857. Please contact bug-guile@gnu.org if you have found an issue not
  1858. mentioned in that compatibility list.
  1859. ** New implementation of `primitive-eval'
  1860. Guile's `primitive-eval' is now implemented in Scheme. Actually there is
  1861. still a C evaluator, used when building a fresh Guile to interpret the
  1862. compiler, so we can compile eval.scm. Thereafter all calls to
  1863. primitive-eval are implemented by VM-compiled code.
  1864. This allows all of Guile's procedures, be they interpreted or compiled,
  1865. to execute on the same stack, unifying multiple-value return semantics,
  1866. providing for proper tail recursion between interpreted and compiled
  1867. code, and simplifying debugging.
  1868. As part of this change, the evaluator no longer mutates the internal
  1869. representation of the code being evaluated in a thread-unsafe manner.
  1870. There are two negative aspects of this change, however. First, Guile
  1871. takes a lot longer to compile now. Also, there is less debugging
  1872. information available for debugging interpreted code. We hope to improve
  1873. both of these situations.
  1874. There are many changes to the internal C evalator interface, but all
  1875. public interfaces should be the same. See the ChangeLog for details. If
  1876. we have inadvertantly changed an interface that you were using, please
  1877. contact bug-guile@gnu.org.
  1878. ** Procedure removed: `the-environment'
  1879. This procedure was part of the interpreter's execution model, and does
  1880. not apply to the compiler.
  1881. ** No more `local-eval'
  1882. `local-eval' used to exist so that one could evaluate code in the
  1883. lexical context of a function. Since there is no way to get the lexical
  1884. environment any more, as that concept has no meaning for the compiler,
  1885. and a different meaning for the interpreter, we have removed the
  1886. function.
  1887. If you think you need `local-eval', you should probably implement your
  1888. own metacircular evaluator. It will probably be as fast as Guile's
  1889. anyway.
  1890. ** Scheme source files will now be compiled automatically.
  1891. If a compiled .go file corresponding to a .scm file is not found or is
  1892. not fresh, the .scm file will be compiled on the fly, and the resulting
  1893. .go file stored away. An advisory note will be printed on the console.
  1894. Note that this mechanism depends on the timestamp of the .go file being
  1895. newer than that of the .scm file; if the .scm or .go files are moved
  1896. after installation, care should be taken to preserve their original
  1897. timestamps.
  1898. Auto-compiled files will be stored in the $XDG_CACHE_HOME/guile/ccache
  1899. directory, where $XDG_CACHE_HOME defaults to ~/.cache. This directory
  1900. will be created if needed.
  1901. To inhibit automatic compilation, set the GUILE_AUTO_COMPILE environment
  1902. variable to 0, or pass --no-auto-compile on the Guile command line.
  1903. ** New POSIX procedures: `getrlimit' and `setrlimit'
  1904. Note however that the interface of these functions is likely to change
  1905. in the next prerelease.
  1906. ** New POSIX procedure: `getsid'
  1907. Scheme binding for the `getsid' C library call.
  1908. ** New POSIX procedure: `getaddrinfo'
  1909. Scheme binding for the `getaddrinfo' C library function.
  1910. ** Multicast socket options
  1911. Support was added for the IP_MULTICAST_TTL and IP_MULTICAST_IF socket
  1912. options. See "Network Sockets and Communication" in the manual, for
  1913. more information.
  1914. ** `recv!', `recvfrom!', `send', `sendto' now deal in bytevectors
  1915. These socket procedures now take bytevectors as arguments, instead of
  1916. strings. There is some deprecated string support, however.
  1917. ** New GNU procedures: `setaffinity' and `getaffinity'.
  1918. See "Processes" in the manual, for more information.
  1919. ** New procedures: `compose', `negate', and `const'
  1920. See "Higher-Order Functions" in the manual, for more information.
  1921. ** New procedure in `(oops goops)': `method-formals'
  1922. ** New procedures in (ice-9 session): `add-value-help-handler!',
  1923. `remove-value-help-handler!', `add-name-help-handler!'
  1924. `remove-name-help-handler!', `procedure-arguments'
  1925. The value and name help handlers provide some minimal extensibility to
  1926. the help interface. Guile-lib's `(texinfo reflection)' uses them, for
  1927. example, to make stexinfo help documentation available. See those
  1928. procedures' docstrings for more information.
  1929. `procedure-arguments' describes the arguments that a procedure can take,
  1930. combining arity and formals. For example:
  1931. (procedure-arguments resolve-interface)
  1932. => ((required . (name)) (rest . args))
  1933. Additionally, `module-commentary' is now publically exported from
  1934. `(ice-9 session).
  1935. ** Removed: `procedure->memoizing-macro', `procedure->syntax'
  1936. These procedures created primitive fexprs for the old evaluator, and are
  1937. no longer supported. If you feel that you need these functions, you
  1938. probably need to write your own metacircular evaluator (which will
  1939. probably be as fast as Guile's, anyway).
  1940. ** New language: ECMAScript
  1941. Guile now ships with one other high-level language supported,
  1942. ECMAScript. The goal is to support all of version 3.1 of the standard,
  1943. but not all of the libraries are there yet. This support is not yet
  1944. documented; ask on the mailing list if you are interested.
  1945. ** New language: Brainfuck
  1946. Brainfuck is a toy language that closely models Turing machines. Guile's
  1947. brainfuck compiler is meant to be an example of implementing other
  1948. languages. See the manual for details, or
  1949. http://en.wikipedia.org/wiki/Brainfuck for more information about the
  1950. Brainfuck language itself.
  1951. ** New language: Elisp
  1952. Guile now has an experimental Emacs Lisp compiler and runtime. You can
  1953. now switch to Elisp at the repl: `,language elisp'. All kudos to Daniel
  1954. Kraft and Brian Templeton, and all bugs to bug-guile@gnu.org.
  1955. ** Better documentation infrastructure for macros
  1956. It is now possible to introspect on the type of a macro, e.g.
  1957. syntax-rules, identifier-syntax, etc, and extract information about that
  1958. macro, such as the syntax-rules patterns or the defmacro arguments.
  1959. `(texinfo reflection)' takes advantage of this to give better macro
  1960. documentation.
  1961. ** Support for arbitrary procedure metadata
  1962. Building on its support for docstrings, Guile now supports multiple
  1963. docstrings, adding them to the tail of a compiled procedure's
  1964. properties. For example:
  1965. (define (foo)
  1966. "one"
  1967. "two"
  1968. 3)
  1969. (procedure-properties foo)
  1970. => ((name . foo) (documentation . "one") (documentation . "two"))
  1971. Also, vectors of pairs are now treated as additional metadata entries:
  1972. (define (bar)
  1973. #((quz . #f) (docstring . "xyzzy"))
  1974. 3)
  1975. (procedure-properties bar)
  1976. => ((name . bar) (quz . #f) (docstring . "xyzzy"))
  1977. This allows arbitrary literals to be embedded as metadata in a compiled
  1978. procedure.
  1979. ** The psyntax expander now knows how to interpret the @ and @@ special
  1980. forms.
  1981. ** The psyntax expander is now hygienic with respect to modules.
  1982. Free variables in a macro are scoped in the module that the macro was
  1983. defined in, not in the module the macro is used in. For example, code
  1984. like this works now:
  1985. (define-module (foo) #:export (bar))
  1986. (define (helper x) ...)
  1987. (define-syntax bar
  1988. (syntax-rules () ((_ x) (helper x))))
  1989. (define-module (baz) #:use-module (foo))
  1990. (bar qux)
  1991. It used to be you had to export `helper' from `(foo)' as well.
  1992. Thankfully, this has been fixed.
  1993. ** Support for version information in Guile's `module' form
  1994. Guile modules now have a `#:version' field. See "R6RS Version
  1995. References", "General Information about Modules", "Using Guile Modules",
  1996. and "Creating Guile Modules" in the manual for more information.
  1997. ** Support for renaming bindings on module export
  1998. Wherever Guile accepts a symbol as an argument to specify a binding to
  1999. export, it now also accepts a pair of symbols, indicating that a binding
  2000. should be renamed on export. See "Creating Guile Modules" in the manual
  2001. for more information.
  2002. ** New procedure: `module-export-all!'
  2003. This procedure exports all current and future bindings from a module.
  2004. Use as `(module-export-all! (current-module))'.
  2005. ** New procedure `reload-module', and `,reload' REPL command
  2006. See "Module System Reflection" and "Module Commands" in the manual, for
  2007. more information.
  2008. ** `eval-case' has been deprecated, and replaced by `eval-when'.
  2009. The semantics of `eval-when' are easier to understand. See "Eval When"
  2010. in the manual, for more information.
  2011. ** Guile is now more strict about prohibiting definitions in expression
  2012. contexts.
  2013. Although previous versions of Guile accepted it, the following
  2014. expression is not valid, in R5RS or R6RS:
  2015. (if test (define foo 'bar) (define foo 'baz))
  2016. In this specific case, it would be better to do:
  2017. (define foo (if test 'bar 'baz))
  2018. It is possible to circumvent this restriction with e.g.
  2019. `(module-define! (current-module) 'foo 'baz)'. Contact the list if you
  2020. have any questions.
  2021. ** Support for `letrec*'
  2022. Guile now supports `letrec*', a recursive lexical binding operator in
  2023. which the identifiers are bound in order. See "Local Bindings" in the
  2024. manual, for more details.
  2025. ** Internal definitions now expand to `letrec*'
  2026. Following the R6RS, internal definitions now expand to letrec* instead
  2027. of letrec. The following program is invalid for R5RS, but valid for
  2028. R6RS:
  2029. (define (foo)
  2030. (define bar 10)
  2031. (define baz (+ bar 20))
  2032. baz)
  2033. ;; R5RS and Guile <= 1.8:
  2034. (foo) => Unbound variable: bar
  2035. ;; R6RS and Guile >= 2.0:
  2036. (foo) => 30
  2037. This change should not affect correct R5RS programs, or programs written
  2038. in earlier Guile dialects.
  2039. ** Macro expansion produces structures instead of s-expressions
  2040. In the olden days, macroexpanding an s-expression would yield another
  2041. s-expression. Though the lexical variables were renamed, expansions of
  2042. core forms like `if' and `begin' were still non-hygienic, as they relied
  2043. on the toplevel definitions of `if' et al being the conventional ones.
  2044. The solution is to expand to structures instead of s-expressions. There
  2045. is an `if' structure, a `begin' structure, a `toplevel-ref' structure,
  2046. etc. The expander already did this for compilation, producing Tree-IL
  2047. directly; it has been changed now to do so when expanding for the
  2048. evaluator as well.
  2049. ** Defmacros must now produce valid Scheme expressions.
  2050. It used to be that defmacros could unquote in Scheme values, as a way of
  2051. supporting partial evaluation, and avoiding some hygiene issues. For
  2052. example:
  2053. (define (helper x) ...)
  2054. (define-macro (foo bar)
  2055. `(,helper ,bar))
  2056. Assuming this macro is in the `(baz)' module, the direct translation of
  2057. this code would be:
  2058. (define (helper x) ...)
  2059. (define-macro (foo bar)
  2060. `((@@ (baz) helper) ,bar))
  2061. Of course, one could just use a hygienic macro instead:
  2062. (define-syntax foo
  2063. (syntax-rules ()
  2064. ((_ bar) (helper bar))))
  2065. ** Guile's psyntax now supports docstrings and internal definitions.
  2066. The following Scheme is not strictly legal:
  2067. (define (foo)
  2068. "bar"
  2069. (define (baz) ...)
  2070. (baz))
  2071. However its intent is fairly clear. Guile interprets "bar" to be the
  2072. docstring of `foo', and the definition of `baz' is still in definition
  2073. context.
  2074. ** Support for settable identifier syntax
  2075. Following the R6RS, "variable transformers" are settable
  2076. identifier-syntax. See "Identifier macros" in the manual, for more
  2077. information.
  2078. ** syntax-case treats `_' as a placeholder
  2079. Following R6RS, a `_' in a syntax-rules or syntax-case pattern matches
  2080. anything, and binds no pattern variables. Unlike the R6RS, Guile also
  2081. permits `_' to be in the literals list for a pattern.
  2082. ** Macros need to be defined before their first use.
  2083. It used to be that with lazy memoization, this might work:
  2084. (define (foo x)
  2085. (ref x))
  2086. (define-macro (ref x) x)
  2087. (foo 1) => 1
  2088. But now, the body of `foo' is interpreted to mean a call to the toplevel
  2089. `ref' function, instead of a macro expansion. The solution is to define
  2090. macros before code that uses them.
  2091. ** Functions needed by macros at expand-time need to be present at
  2092. expand-time.
  2093. For example, this code will work at the REPL:
  2094. (define (double-helper x) (* x x))
  2095. (define-macro (double-literal x) (double-helper x))
  2096. (double-literal 2) => 4
  2097. But it will not work when a file is compiled, because the definition of
  2098. `double-helper' is not present at expand-time. The solution is to wrap
  2099. the definition of `double-helper' in `eval-when':
  2100. (eval-when (load compile eval)
  2101. (define (double-helper x) (* x x)))
  2102. (define-macro (double-literal x) (double-helper x))
  2103. (double-literal 2) => 4
  2104. See the documentation for eval-when for more information.
  2105. ** `macroexpand' produces structures, not S-expressions.
  2106. Given the need to maintain referential transparency, both lexically and
  2107. modular, the result of expanding Scheme expressions is no longer itself
  2108. an s-expression. If you want a human-readable approximation of the
  2109. result of `macroexpand', call `tree-il->scheme' from `(language
  2110. tree-il)'.
  2111. ** Removed function: `macroexpand-1'
  2112. It is unclear how to implement `macroexpand-1' with syntax-case, though
  2113. PLT Scheme does prove that it is possible.
  2114. ** New reader macros: #' #` #, #,@
  2115. These macros translate, respectively, to `syntax', `quasisyntax',
  2116. `unsyntax', and `unsyntax-splicing'. See the R6RS for more information.
  2117. These reader macros may be overridden by `read-hash-extend'.
  2118. ** Incompatible change to #'
  2119. Guile did have a #' hash-extension, by default, which just returned the
  2120. subsequent datum: #'foo => foo. In the unlikely event that anyone
  2121. actually used this, this behavior may be reinstated via the
  2122. `read-hash-extend' mechanism.
  2123. ** `unquote' and `unquote-splicing' accept multiple expressions
  2124. As per the R6RS, these syntax operators can now accept any number of
  2125. expressions to unquote.
  2126. ** Scheme expresssions may be commented out with #;
  2127. #; comments out an entire expression. See SRFI-62 or the R6RS for more
  2128. information.
  2129. ** Prompts: Delimited, composable continuations
  2130. Guile now has prompts as part of its primitive language. See "Prompts"
  2131. in the manual, for more information.
  2132. Expressions entered in at the REPL, or from the command line, are
  2133. surrounded by a prompt with the default prompt tag.
  2134. ** `make-stack' with a tail-called procedural narrowing argument no longer
  2135. works (with compiled procedures)
  2136. It used to be the case that a captured stack could be narrowed to select
  2137. calls only up to or from a certain procedure, even if that procedure
  2138. already tail-called another procedure. This was because the debug
  2139. information from the original procedure was kept on the stack.
  2140. Now with the new compiler, the stack only contains active frames from
  2141. the current continuation. A narrow to a procedure that is not in the
  2142. stack will result in an empty stack. To fix this, narrow to a procedure
  2143. that is active in the current continuation, or narrow to a specific
  2144. number of stack frames.
  2145. ** Backtraces through compiled procedures only show procedures that are
  2146. active in the current continuation
  2147. Similarly to the previous issue, backtraces in compiled code may be
  2148. different from backtraces in interpreted code. There are no semantic
  2149. differences, however. Please mail bug-guile@gnu.org if you see any
  2150. deficiencies with Guile's backtraces.
  2151. ** `positions' reader option enabled by default
  2152. This change allows primitive-load without --auto-compile to also
  2153. propagate source information through the expander, for better errors and
  2154. to let macros know their source locations. The compiler was already
  2155. turning it on anyway.
  2156. ** New macro: `current-source-location'
  2157. The macro returns the current source location (to be documented).
  2158. ** syntax-rules and syntax-case macros now propagate source information
  2159. through to the expanded code
  2160. This should result in better backtraces.
  2161. ** The currying behavior of `define' has been removed.
  2162. Before, `(define ((f a) b) (* a b))' would translate to
  2163. (define f (lambda (a) (lambda (b) (* a b))))
  2164. Now a syntax error is signaled, as this syntax is not supported by
  2165. default. Use the `(ice-9 curried-definitions)' module to get back the
  2166. old behavior.
  2167. ** New procedure, `define!'
  2168. `define!' is a procedure that takes two arguments, a symbol and a value,
  2169. and binds the value to the symbol in the current module. It's useful to
  2170. programmatically make definitions in the current module, and is slightly
  2171. less verbose than `module-define!'.
  2172. ** All modules have names now
  2173. Before, you could have anonymous modules: modules without names. Now,
  2174. because of hygiene and macros, all modules have names. If a module was
  2175. created without a name, the first time `module-name' is called on it, a
  2176. fresh name will be lazily generated for it.
  2177. ** The module namespace is now separate from the value namespace
  2178. It was a little-known implementation detail of Guile's module system
  2179. that it was built on a single hierarchical namespace of values -- that
  2180. if there was a module named `(foo bar)', then in the module named
  2181. `(foo)' there was a binding from `bar' to the `(foo bar)' module.
  2182. This was a neat trick, but presented a number of problems. One problem
  2183. was that the bindings in a module were not apparent from the module
  2184. itself; perhaps the `(foo)' module had a private binding for `bar', and
  2185. then an external contributor defined `(foo bar)'. In the end there can
  2186. be only one binding, so one of the two will see the wrong thing, and
  2187. produce an obtuse error of unclear provenance.
  2188. Also, the public interface of a module was also bound in the value
  2189. namespace, as `%module-public-interface'. This was a hack from the early
  2190. days of Guile's modules.
  2191. Both of these warts have been fixed by the addition of fields in the
  2192. `module' data type. Access to modules and their interfaces from the
  2193. value namespace has been deprecated, and all accessors use the new
  2194. record accessors appropriately.
  2195. When Guile is built with support for deprecated code, as is the default,
  2196. the value namespace is still searched for modules and public interfaces,
  2197. and a deprecation warning is raised as appropriate.
  2198. Finally, to support lazy loading of modules as one used to be able to do
  2199. with module binder procedures, Guile now has submodule binders, called
  2200. if a given submodule is not found. See boot-9.scm for more information.
  2201. ** New procedures: module-ref-submodule, module-define-submodule,
  2202. nested-ref-module, nested-define-module!, local-ref-module,
  2203. local-define-module
  2204. These new accessors are like their bare variants, but operate on
  2205. namespaces instead of values.
  2206. ** The (app modules) module tree is officially deprecated
  2207. It used to be that one could access a module named `(foo bar)' via
  2208. `(nested-ref the-root-module '(app modules foo bar))'. The `(app
  2209. modules)' bit was a never-used and never-documented abstraction, and has
  2210. been deprecated. See the following mail for a full discussion:
  2211. http://lists.gnu.org/archive/html/guile-devel/2010-04/msg00168.html
  2212. The `%app' binding is also deprecated.
  2213. ** `module-filename' field and accessor
  2214. Modules now record the file in which they are defined. This field may be
  2215. accessed with the new `module-filename' procedure.
  2216. ** Modules load within a known environment
  2217. It takes a few procedure calls to define a module, and those procedure
  2218. calls need to be in scope. Now we ensure that the current module when
  2219. loading a module is one that has the needed bindings, instead of relying
  2220. on chance.
  2221. ** `load' is a macro (!) that resolves paths relative to source file dir
  2222. The familiar Schem `load' procedure is now a macro that captures the
  2223. name of the source file being expanded, and dispatches to the new
  2224. `load-in-vicinity'. Referencing `load' by bare name returns a closure
  2225. that embeds the current source file name.
  2226. This fix allows `load' of relative paths to be resolved with respect to
  2227. the location of the file that calls `load'.
  2228. ** Many syntax errors have different texts now
  2229. Syntax errors still throw to the `syntax-error' key, but the arguments
  2230. are often different now. Perhaps in the future, Guile will switch to
  2231. using standard SRFI-35 conditions.
  2232. ** Returning multiple values to compiled code will silently truncate the
  2233. values to the expected number
  2234. For example, the interpreter would raise an error evaluating the form,
  2235. `(+ (values 1 2) (values 3 4))', because it would see the operands as
  2236. being two compound "values" objects, to which `+' does not apply.
  2237. The compiler, on the other hand, receives multiple values on the stack,
  2238. not as a compound object. Given that it must check the number of values
  2239. anyway, if too many values are provided for a continuation, it chooses
  2240. to truncate those values, effectively evaluating `(+ 1 3)' instead.
  2241. The idea is that the semantics that the compiler implements is more
  2242. intuitive, and the use of the interpreter will fade out with time.
  2243. This behavior is allowed both by the R5RS and the R6RS.
  2244. ** Multiple values in compiled code are not represented by compound
  2245. objects
  2246. This change may manifest itself in the following situation:
  2247. (let ((val (foo))) (do-something) val)
  2248. In the interpreter, if `foo' returns multiple values, multiple values
  2249. are produced from the `let' expression. In the compiler, those values
  2250. are truncated to the first value, and that first value is returned. In
  2251. the compiler, if `foo' returns no values, an error will be raised, while
  2252. the interpreter would proceed.
  2253. Both of these behaviors are allowed by R5RS and R6RS. The compiler's
  2254. behavior is more correct, however. If you wish to preserve a potentially
  2255. multiply-valued return, you will need to set up a multiple-value
  2256. continuation, using `call-with-values'.
  2257. ** Defmacros are now implemented in terms of syntax-case.
  2258. The practical ramification of this is that the `defmacro?' predicate has
  2259. been removed, along with `defmacro-transformer', `macro-table',
  2260. `xformer-table', `assert-defmacro?!', `set-defmacro-transformer!' and
  2261. `defmacro:transformer'. This is because defmacros are simply macros. If
  2262. any of these procedures provided useful facilities to you, we encourage
  2263. you to contact the Guile developers.
  2264. ** Hygienic macros documented as the primary syntactic extension mechanism.
  2265. The macro documentation was finally fleshed out with some documentation
  2266. on `syntax-rules' and `syntax-case' macros, and other parts of the macro
  2267. expansion process. See "Macros" in the manual, for details.
  2268. ** psyntax is now the default expander
  2269. Scheme code is now expanded by default by the psyntax hygienic macro
  2270. expander. Expansion is performed completely before compilation or
  2271. interpretation.
  2272. Notably, syntax errors will be signalled before interpretation begins.
  2273. In the past, many syntax errors were only detected at runtime if the
  2274. code in question was memoized.
  2275. As part of its expansion, psyntax renames all lexically-bound
  2276. identifiers. Original identifier names are preserved and given to the
  2277. compiler, but the interpreter will see the renamed variables, e.g.,
  2278. `x432' instead of `x'.
  2279. Note that the psyntax that Guile uses is a fork, as Guile already had
  2280. modules before incompatible modules were added to psyntax -- about 10
  2281. years ago! Thus there are surely a number of bugs that have been fixed
  2282. in psyntax since then. If you find one, please notify bug-guile@gnu.org.
  2283. ** syntax-rules and syntax-case are available by default.
  2284. There is no longer any need to import the `(ice-9 syncase)' module
  2285. (which is now deprecated). The expander may be invoked directly via
  2286. `macroexpand', though it is normally searched for via the current module
  2287. transformer.
  2288. Also, the helper routines for syntax-case are available in the default
  2289. environment as well: `syntax->datum', `datum->syntax',
  2290. `bound-identifier=?', `free-identifier=?', `generate-temporaries',
  2291. `identifier?', and `syntax-violation'. See the R6RS for documentation.
  2292. ** Tail patterns in syntax-case
  2293. Guile has pulled in some more recent changes from the psyntax portable
  2294. syntax expander, to implement support for "tail patterns". Such patterns
  2295. are supported by syntax-rules and syntax-case. This allows a syntax-case
  2296. match clause to have ellipses, then a pattern at the end. For example:
  2297. (define-syntax case
  2298. (syntax-rules (else)
  2299. ((_ val match-clause ... (else e e* ...))
  2300. [...])))
  2301. Note how there is MATCH-CLAUSE, which is ellipsized, then there is a
  2302. tail pattern for the else clause. Thanks to Andreas Rottmann for the
  2303. patch, and Kent Dybvig for the code.
  2304. ** Lexical bindings introduced by hygienic macros may not be referenced
  2305. by nonhygienic macros.
  2306. If a lexical binding is introduced by a hygienic macro, it may not be
  2307. referenced by a nonhygienic macro. For example, this works:
  2308. (let ()
  2309. (define-macro (bind-x val body)
  2310. `(let ((x ,val)) ,body))
  2311. (define-macro (ref x)
  2312. x)
  2313. (bind-x 10 (ref x)))
  2314. But this does not:
  2315. (let ()
  2316. (define-syntax bind-x
  2317. (syntax-rules ()
  2318. ((_ val body) (let ((x val)) body))))
  2319. (define-macro (ref x)
  2320. x)
  2321. (bind-x 10 (ref x)))
  2322. It is not normal to run into this situation with existing code. However,
  2323. if you have defmacros that expand to hygienic macros, it is possible to
  2324. run into situations like this. For example, if you have a defmacro that
  2325. generates a `while' expression, the `break' bound by the `while' may not
  2326. be visible within other parts of your defmacro. The solution is to port
  2327. from defmacros to syntax-rules or syntax-case.
  2328. ** Macros may no longer be referenced as first-class values.
  2329. In the past, you could evaluate e.g. `if', and get its macro value. Now,
  2330. expanding this form raises a syntax error.
  2331. Macros still /exist/ as first-class values, but they must be
  2332. /referenced/ via the module system, e.g. `(module-ref (current-module)
  2333. 'if)'.
  2334. ** Macros may now have docstrings.
  2335. `object-documentation' from `(ice-9 documentation)' may be used to
  2336. retrieve the docstring, once you have a macro value -- but see the above
  2337. note about first-class macros. Docstrings are associated with the syntax
  2338. transformer procedures.
  2339. ** `case-lambda' is now available in the default environment.
  2340. The binding in the default environment is equivalent to the one from the
  2341. `(srfi srfi-16)' module. Use the srfi-16 module explicitly if you wish
  2342. to maintain compatibility with Guile 1.8 and earlier.
  2343. ** Procedures may now have more than one arity.
  2344. This can be the case, for example, in case-lambda procedures. The
  2345. arities of compiled procedures may be accessed via procedures from the
  2346. `(system vm program)' module; see "Compiled Procedures", "Optional
  2347. Arguments", and "Case-lambda" in the manual.
  2348. ** Deprecate arity access via (procedure-properties proc 'arity)
  2349. Instead of accessing a procedure's arity as a property, use the new
  2350. `procedure-minimum-arity' function, which gives the most permissive
  2351. arity that the function has, in the same format as the old arity
  2352. accessor.
  2353. ** `lambda*' and `define*' are now available in the default environment
  2354. As with `case-lambda', `(ice-9 optargs)' continues to be supported, for
  2355. compatibility purposes. No semantic change has been made (we hope).
  2356. Optional and keyword arguments now dispatch via special VM operations,
  2357. without the need to cons rest arguments, making them very fast.
  2358. ** New syntax: define-once
  2359. `define-once' is like Lisp's `defvar': it creates a toplevel binding,
  2360. but only if one does not exist already.
  2361. ** New function, `truncated-print', with `format' support
  2362. `(ice-9 pretty-print)' now exports `truncated-print', a printer that
  2363. will ensure that the output stays within a certain width, truncating the
  2364. output in what is hopefully an intelligent manner. See the manual for
  2365. more details.
  2366. There is a new `format' specifier, `~@y', for doing a truncated
  2367. print (as opposed to `~y', which does a pretty-print). See the `format'
  2368. documentation for more details.
  2369. ** Better pretty-printing
  2370. Indentation recognizes more special forms, like `syntax-case', and read
  2371. macros like `quote' are printed better.
  2372. ** Passing a number as the destination of `format' is deprecated
  2373. The `format' procedure in `(ice-9 format)' now emits a deprecation
  2374. warning if a number is passed as its first argument.
  2375. Also, it used to be that you could omit passing a port to `format', in
  2376. some cases. This still works, but has been formally deprecated.
  2377. ** SRFI-4 vectors reimplemented in terms of R6RS bytevectors
  2378. Guile now implements SRFI-4 vectors using bytevectors. Often when you
  2379. have a numeric vector, you end up wanting to write its bytes somewhere,
  2380. or have access to the underlying bytes, or read in bytes from somewhere
  2381. else. Bytevectors are very good at this sort of thing. But the SRFI-4
  2382. APIs are nicer to use when doing number-crunching, because they are
  2383. addressed by element and not by byte.
  2384. So as a compromise, Guile allows all bytevector functions to operate on
  2385. numeric vectors. They address the underlying bytes in the native
  2386. endianness, as one would expect.
  2387. Following the same reasoning, that it's just bytes underneath, Guile
  2388. also allows uniform vectors of a given type to be accessed as if they
  2389. were of any type. One can fill a u32vector, and access its elements with
  2390. u8vector-ref. One can use f64vector-ref on bytevectors. It's all the
  2391. same to Guile.
  2392. In this way, uniform numeric vectors may be written to and read from
  2393. input/output ports using the procedures that operate on bytevectors.
  2394. Calls to SRFI-4 accessors (ref and set functions) from Scheme are now
  2395. inlined to the VM instructions for bytevector access.
  2396. See "SRFI-4" in the manual, for more information.
  2397. ** Nonstandard SRFI-4 procedures now available from `(srfi srfi-4 gnu)'
  2398. Guile's `(srfi srfi-4)' now only exports those srfi-4 procedures that
  2399. are part of the standard. Complex uniform vectors and the
  2400. `any->FOOvector' family are now available only from `(srfi srfi-4 gnu)'.
  2401. Guile's default environment imports `(srfi srfi-4)', and probably should
  2402. import `(srfi srfi-4 gnu)' as well.
  2403. See "SRFI-4 Extensions" in the manual, for more information.
  2404. ** New syntax: include-from-path.
  2405. `include-from-path' is like `include', except it looks for its file in
  2406. the load path. It can be used to compile other files into a file.
  2407. ** New syntax: quasisyntax.
  2408. `quasisyntax' is to `syntax' as `quasiquote' is to `quote'. See the R6RS
  2409. documentation for more information. Thanks to Andre van Tonder for the
  2410. implementation.
  2411. ** `*unspecified*' is identifier syntax
  2412. `*unspecified*' is no longer a variable, so it is optimized properly by
  2413. the compiler, and is not `set!'-able.
  2414. ** Changes and bugfixes in numerics code
  2415. *** Added six new sets of fast quotient and remainder operators
  2416. Added six new sets of fast quotient and remainder operator pairs with
  2417. different semantics than the R5RS operators. They support not only
  2418. integers, but all reals, including exact rationals and inexact
  2419. floating point numbers.
  2420. These procedures accept two real numbers N and D, where the divisor D
  2421. must be non-zero. Each set of operators computes an integer quotient
  2422. Q and a real remainder R such that N = Q*D + R and |R| < |D|. They
  2423. differ only in how N/D is rounded to produce Q.
  2424. `euclidean-quotient' returns the integer Q and `euclidean-remainder'
  2425. returns the real R such that N = Q*D + R and 0 <= R < |D|. `euclidean/'
  2426. returns both Q and R, and is more efficient than computing each
  2427. separately. Note that when D > 0, `euclidean-quotient' returns
  2428. floor(N/D), and when D < 0 it returns ceiling(N/D).
  2429. `centered-quotient', `centered-remainder', and `centered/' are similar
  2430. except that the range of remainders is -abs(D/2) <= R < abs(D/2), and
  2431. `centered-quotient' rounds N/D to the nearest integer. Note that these
  2432. operators are equivalent to the R6RS integer division operators `div',
  2433. `mod', `div-and-mod', `div0', `mod0', and `div0-and-mod0'.
  2434. `floor-quotient' and `floor-remainder' compute Q and R, respectively,
  2435. where Q has been rounded toward negative infinity. `floor/' returns
  2436. both Q and R, and is more efficient than computing each separately.
  2437. Note that when applied to integers, `floor-remainder' is equivalent to
  2438. the R5RS integer-only `modulo' operator. `ceiling-quotient',
  2439. `ceiling-remainder', and `ceiling/' are similar except that Q is
  2440. rounded toward positive infinity.
  2441. For `truncate-quotient', `truncate-remainder', and `truncate/', Q is
  2442. rounded toward zero. Note that when applied to integers,
  2443. `truncate-quotient' and `truncate-remainder' are equivalent to the
  2444. R5RS integer-only operators `quotient' and `remainder'.
  2445. For `round-quotient', `round-remainder', and `round/', Q is rounded to
  2446. the nearest integer, with ties going to the nearest even integer.
  2447. *** Complex number changes
  2448. Guile is now able to represent non-real complex numbers whose
  2449. imaginary part is an _inexact_ zero (0.0 or -0.0), per R6RS.
  2450. Previously, such numbers were immediately changed into inexact reals.
  2451. (real? 0.0+0.0i) now returns #f, per R6RS, although (zero? 0.0+0.0i)
  2452. still returns #t, per R6RS. (= 0 0.0+0.0i) and (= 0.0 0.0+0.0i) are
  2453. #t, but the same comparisons using `eqv?' or `equal?' are #f.
  2454. Like other non-real numbers, these complex numbers with inexact zero
  2455. imaginary part will raise exceptions is passed to procedures requiring
  2456. reals, such as `<', `>', `<=', `>=', `min', `max', `positive?',
  2457. `negative?', `inf?', `nan?', `finite?', etc.
  2458. **** `make-rectangular' changes
  2459. scm_make_rectangular `make-rectangular' now returns a real number only
  2460. if the imaginary part is an _exact_ 0. Previously, it would return a
  2461. real number if the imaginary part was an inexact zero.
  2462. scm_c_make_rectangular now always returns a non-real complex number,
  2463. even if the imaginary part is zero. Previously, it would return a
  2464. real number if the imaginary part was zero.
  2465. **** `make-polar' changes
  2466. scm_make_polar `make-polar' now returns a real number only if the
  2467. angle or magnitude is an _exact_ 0. If the magnitude is an exact 0,
  2468. it now returns an exact 0. Previously, it would return a real
  2469. number if the imaginary part was an inexact zero.
  2470. scm_c_make_polar now always returns a non-real complex number, even if
  2471. the imaginary part is 0.0. Previously, it would return a real number
  2472. if the imaginary part was 0.0.
  2473. **** `imag-part' changes
  2474. scm_imag_part `imag-part' now returns an exact 0 if applied to an
  2475. inexact real number. Previously it returned an inexact zero in this
  2476. case.
  2477. *** `eqv?' and `equal?' now compare numbers equivalently
  2478. scm_equal_p `equal?' now behaves equivalently to scm_eqv_p `eqv?' for
  2479. numeric values, per R5RS. Previously, equal? worked differently,
  2480. e.g. `(equal? 0.0 -0.0)' returned #t but `(eqv? 0.0 -0.0)' returned #f,
  2481. and `(equal? +nan.0 +nan.0)' returned #f but `(eqv? +nan.0 +nan.0)'
  2482. returned #t.
  2483. *** `(equal? +nan.0 +nan.0)' now returns #t
  2484. Previously, `(equal? +nan.0 +nan.0)' returned #f, although
  2485. `(let ((x +nan.0)) (equal? x x))' and `(eqv? +nan.0 +nan.0)'
  2486. both returned #t. R5RS requires that `equal?' behave like
  2487. `eqv?' when comparing numbers.
  2488. *** Change in handling products `*' involving exact 0
  2489. scm_product `*' now handles exact 0 differently. A product containing
  2490. an exact 0 now returns an exact 0 if and only if the other arguments
  2491. are all exact. An inexact zero is returned if and only if the other
  2492. arguments are all finite but not all exact. If an infinite or NaN
  2493. value is present, a NaN value is returned. Previously, any product
  2494. containing an exact 0 yielded an exact 0, regardless of the other
  2495. arguments.
  2496. *** `expt' and `integer-expt' changes when the base is 0
  2497. While `(expt 0 0)' is still 1, and `(expt 0 N)' for N > 0 is still
  2498. zero, `(expt 0 N)' for N < 0 is now a NaN value, and likewise for
  2499. integer-expt. This is more correct, and conforming to R6RS, but seems
  2500. to be incompatible with R5RS, which would return 0 for all non-zero
  2501. values of N.
  2502. *** `expt' and `integer-expt' are more generic, less strict
  2503. When raising to an exact non-negative integer exponent, `expt' and
  2504. `integer-expt' are now able to exponentiate any object that can be
  2505. multiplied using `*'. They can also raise an object to an exact
  2506. negative integer power if its reciprocal can be taken using `/'.
  2507. In order to allow this, the type of the first argument is no longer
  2508. checked when raising to an exact integer power. If the exponent is 0
  2509. or 1, the first parameter is not manipulated at all, and need not
  2510. even support multiplication.
  2511. *** Infinities are no longer integers, nor rationals
  2512. scm_integer_p `integer?' and scm_rational_p `rational?' now return #f
  2513. for infinities, per R6RS. Previously they returned #t for real
  2514. infinities. The real infinities and NaNs are still considered real by
  2515. scm_real `real?' however, per R6RS.
  2516. *** NaNs are no longer rationals
  2517. scm_rational_p `rational?' now returns #f for NaN values, per R6RS.
  2518. Previously it returned #t for real NaN values. They are still
  2519. considered real by scm_real `real?' however, per R6RS.
  2520. *** `inf?' and `nan?' now throw exceptions for non-reals
  2521. The domain of `inf?' and `nan?' is the real numbers. Guile now signals
  2522. an error when a non-real number or non-number is passed to these
  2523. procedures. (Note that NaNs _are_ considered numbers by scheme, despite
  2524. their name).
  2525. *** `rationalize' bugfixes and changes
  2526. Fixed bugs in scm_rationalize `rationalize'. Previously, it returned
  2527. exact integers unmodified, although that was incorrect if the epsilon
  2528. was at least 1 or inexact, e.g. (rationalize 4 1) should return 3 per
  2529. R5RS and R6RS, but previously it returned 4. It also now handles
  2530. cases involving infinities and NaNs properly, per R6RS.
  2531. *** Trigonometric functions now return exact numbers in some cases
  2532. scm_sin `sin', scm_cos `cos', scm_tan `tan', scm_asin `asin', scm_acos
  2533. `acos', scm_atan `atan', scm_sinh `sinh', scm_cosh `cosh', scm_tanh
  2534. `tanh', scm_sys_asinh `asinh', scm_sys_acosh `acosh', and
  2535. scm_sys_atanh `atanh' now return exact results in some cases.
  2536. *** New procedure: `finite?'
  2537. Add scm_finite_p `finite?' from R6RS to guile core, which returns #t
  2538. if and only if its argument is neither infinite nor a NaN. Note that
  2539. this is not the same as (not (inf? x)) or (not (infinite? x)), since
  2540. NaNs are neither finite nor infinite.
  2541. *** Improved exactness handling for complex number parsing
  2542. When parsing non-real complex numbers, exactness specifiers are now
  2543. applied to each component, as is done in PLT Scheme. For complex
  2544. numbers written in rectangular form, exactness specifiers are applied
  2545. to the real and imaginary parts before calling scm_make_rectangular.
  2546. For complex numbers written in polar form, exactness specifiers are
  2547. applied to the magnitude and angle before calling scm_make_polar.
  2548. Previously, exactness specifiers were applied to the number as a whole
  2549. _after_ calling scm_make_rectangular or scm_make_polar.
  2550. For example, (string->number "#i5.0+0i") now does the equivalent of:
  2551. (make-rectangular (exact->inexact 5.0) (exact->inexact 0))
  2552. which yields 5.0+0.0i. Previously it did the equivalent of:
  2553. (exact->inexact (make-rectangular 5.0 0))
  2554. which yielded 5.0.
  2555. ** Unicode characters
  2556. Unicode characters may be entered in octal format via e.g. `#\454', or
  2557. created via (integer->char 300). A hex external representation will
  2558. probably be introduced at some point.
  2559. ** Unicode strings
  2560. Internally, strings are now represented either in the `latin-1'
  2561. encoding, one byte per character, or in UTF-32, with four bytes per
  2562. character. Strings manage their own allocation, switching if needed.
  2563. Extended characters may be written in a literal string using the
  2564. hexadecimal escapes `\xXX', `\uXXXX', or `\UXXXXXX', for 8-bit, 16-bit,
  2565. or 24-bit codepoints, respectively, or entered directly in the native
  2566. encoding of the port on which the string is read.
  2567. ** Unicode symbols
  2568. One may now use U+03BB (GREEK SMALL LETTER LAMBDA) as an identifier.
  2569. ** Support for non-ASCII source code files
  2570. The default reader now handles source code files for some of the
  2571. non-ASCII character encodings, such as UTF-8. A non-ASCII source file
  2572. should have an encoding declaration near the top of the file. Also,
  2573. there is a new function, `file-encoding', that scans a port for a coding
  2574. declaration. See the section of the manual entitled, "Character Encoding
  2575. of Source Files".
  2576. The pre-1.9.3 reader handled 8-bit clean but otherwise unspecified source
  2577. code. This use is now discouraged. Binary input and output is
  2578. currently supported by opening ports in the ISO-8859-1 locale.
  2579. ** Source files default to UTF-8.
  2580. If source files do not specify their encoding via a `coding:' block,
  2581. the default encoding is UTF-8, instead of being taken from the current
  2582. locale.
  2583. ** Interactive Guile installs the current locale.
  2584. Instead of leaving the user in the "C" locale, running the Guile REPL
  2585. installs the current locale. [FIXME xref?]
  2586. ** Support for locale transcoding when reading from and writing to ports
  2587. Ports now have an associated character encoding, and port read and write
  2588. operations do conversion to and from locales automatically. Ports also
  2589. have an associated strategy for how to deal with locale conversion
  2590. failures.
  2591. See the documentation in the manual for the four new support functions,
  2592. `set-port-encoding!', `port-encoding', `set-port-conversion-strategy!',
  2593. and `port-conversion-strategy'.
  2594. ** String and SRFI-13 functions can operate on Unicode strings
  2595. ** Unicode support for SRFI-14 character sets
  2596. The default character sets are no longer locale dependent and contain
  2597. characters from the whole Unicode range. There is a new predefined
  2598. character set, `char-set:designated', which contains all assigned
  2599. Unicode characters. There is a new debugging function, `%char-set-dump'.
  2600. ** Character functions operate on Unicode characters
  2601. `char-upcase' and `char-downcase' use default Unicode casing rules.
  2602. Character comparisons such as `char<?' and `char-ci<?' now sort based on
  2603. Unicode code points.
  2604. ** Global variables `scm_charnames' and `scm_charnums' are removed
  2605. These variables contained the names of control characters and were
  2606. used when writing characters. While these were global, they were
  2607. never intended to be public API. They have been replaced with private
  2608. functions.
  2609. ** EBCDIC support is removed
  2610. There was an EBCDIC compile flag that altered some of the character
  2611. processing. It appeared that full EBCDIC support was never completed
  2612. and was unmaintained.
  2613. ** Compile-time warnings
  2614. Guile can warn about potentially unbound free variables. Pass the
  2615. -Wunbound-variable on the `guile-tools compile' command line, or add
  2616. `#:warnings '(unbound-variable)' to your `compile' or `compile-file'
  2617. invocation. Warnings are also enabled by default for expressions entered
  2618. at the REPL.
  2619. Guile can also warn when you pass the wrong number of arguments to a
  2620. procedure, with -Warity-mismatch, or `arity-mismatch' in the
  2621. `#:warnings' as above.
  2622. Other warnings include `-Wunused-variable' and `-Wunused-toplevel', to
  2623. warn about unused local or global (top-level) variables, and `-Wformat',
  2624. to check for various errors related to the `format' procedure.
  2625. ** A new `memoize-symbol' evaluator trap has been added.
  2626. This trap can be used for efficiently implementing a Scheme code
  2627. coverage.
  2628. ** Duplicate bindings among used modules are resolved lazily.
  2629. This slightly improves program startup times.
  2630. ** New thread cancellation and thread cleanup API
  2631. See `cancel-thread', `set-thread-cleanup!', and `thread-cleanup'.
  2632. ** New threads are in `(guile-user)' by default, not `(guile)'
  2633. It used to be that a new thread entering Guile would do so in the
  2634. `(guile)' module, unless this was the first time Guile was initialized,
  2635. in which case it was `(guile-user)'. This has been fixed to have all
  2636. new threads unknown to Guile default to `(guile-user)'.
  2637. ** New helpers: `print-exception', `set-exception-printer!'
  2638. These functions implement an extensible exception printer. Guile
  2639. registers printers for all of the exceptions it throws. Users may add
  2640. their own printers. There is also `scm_print_exception', for use by C
  2641. programs. Pleasantly, this allows SRFI-35 and R6RS exceptions to be
  2642. printed appropriately.
  2643. ** GOOPS dispatch in scheme
  2644. As an implementation detail, GOOPS dispatch is no longer implemented by
  2645. special evaluator bytecodes, but rather directly via a Scheme function
  2646. associated with an applicable struct. There is some VM support for the
  2647. underlying primitives, like `class-of'.
  2648. This change will in the future allow users to customize generic function
  2649. dispatch without incurring a performance penalty, and allow us to
  2650. implement method combinations.
  2651. ** Applicable struct support
  2652. One may now make structs from Scheme that may be applied as procedures.
  2653. To do so, make a struct whose vtable is `<applicable-struct-vtable>'.
  2654. That struct will be the vtable of your applicable structs; instances of
  2655. that new struct are assumed to have the procedure in their first slot.
  2656. `<applicable-struct-vtable>' is like Common Lisp's
  2657. `funcallable-standard-class'. Likewise there is
  2658. `<applicable-struct-with-setter-vtable>', which looks for the setter in
  2659. the second slot. This needs to be better documented.
  2660. ** GOOPS cleanups.
  2661. GOOPS had a number of concepts that were relevant to the days of Tcl,
  2662. but not any more: operators and entities, mainly. These objects were
  2663. never documented, and it is unlikely that they were ever used. Operators
  2664. were a kind of generic specific to the Tcl support. Entities were
  2665. replaced by applicable structs, mentioned above.
  2666. ** New struct slot allocation: "hidden"
  2667. A hidden slot is readable and writable, but will not be initialized by a
  2668. call to make-struct. For example in your layout you would say "ph"
  2669. instead of "pw". Hidden slots are useful for adding new slots to a
  2670. vtable without breaking existing invocations to make-struct.
  2671. ** eqv? not a generic
  2672. One used to be able to extend `eqv?' as a primitive-generic, but no
  2673. more. Because `eqv?' is in the expansion of `case' (via `memv'), which
  2674. should be able to compile to static dispatch tables, it doesn't make
  2675. sense to allow extensions that would subvert this optimization.
  2676. ** `inet-ntop' and `inet-pton' are always available.
  2677. Guile now use a portable implementation of `inet_pton'/`inet_ntop', so
  2678. there is no more need to use `inet-aton'/`inet-ntoa'. The latter
  2679. functions are deprecated.
  2680. ** `getopt-long' parsing errors throw to `quit', not `misc-error'
  2681. This change should inhibit backtraces on argument parsing errors.
  2682. `getopt-long' has been modified to print out the error that it throws
  2683. itself.
  2684. ** New primitive: `tmpfile'.
  2685. See "File System" in the manual.
  2686. ** Random generator state may be serialized to a datum
  2687. `random-state->datum' will serialize a random state to a datum, which
  2688. may be written out, read back in later, and revivified using
  2689. `datum->random-state'. See "Random" in the manual, for more details.
  2690. ** Fix random number generator on 64-bit platforms
  2691. There was a nasty bug on 64-bit platforms in which asking for a random
  2692. integer with a range between 2**32 and 2**64 caused a segfault. After
  2693. many embarrassing iterations, this was fixed.
  2694. ** Fast bit operations.
  2695. The bit-twiddling operations `ash', `logand', `logior', and `logxor' now
  2696. have dedicated bytecodes. Guile is not just for symbolic computation,
  2697. it's for number crunching too.
  2698. ** Faster SRFI-9 record access
  2699. SRFI-9 records are now implemented directly on top of Guile's structs,
  2700. and their accessors are defined in such a way that normal call-sites
  2701. inline to special VM opcodes, while still allowing for the general case
  2702. (e.g. passing a record accessor to `apply').
  2703. ** R6RS block comment support
  2704. Guile now supports R6RS nested block comments. The start of a comment is
  2705. marked with `#|', and the end with `|#'.
  2706. ** `guile-2' cond-expand feature
  2707. To test if your code is running under Guile 2.0 (or its alpha releases),
  2708. test for the `guile-2' cond-expand feature. Like this:
  2709. (cond-expand (guile-2 (eval-when (compile)
  2710. ;; This must be evaluated at compile time.
  2711. (fluid-set! current-reader my-reader)))
  2712. (guile
  2713. ;; Earlier versions of Guile do not have a
  2714. ;; separate compilation phase.
  2715. (fluid-set! current-reader my-reader)))
  2716. ** New global variables: %load-compiled-path, %load-compiled-extensions
  2717. These are analogous to %load-path and %load-extensions.
  2718. ** New fluid: `%file-port-name-canonicalization'
  2719. This fluid parameterizes the file names that are associated with file
  2720. ports. If %file-port-name-canonicalization is 'absolute, then file names
  2721. are canonicalized to be absolute paths. If it is 'relative, then the
  2722. name is canonicalized, but any prefix corresponding to a member of
  2723. `%load-path' is stripped off. Otherwise the names are passed through
  2724. unchanged.
  2725. In addition, the `compile-file' and `compile-and-load' procedures bind
  2726. %file-port-name-canonicalization to their `#:canonicalization' keyword
  2727. argument, which defaults to 'relative. In this way, one might compile
  2728. "../module/ice-9/boot-9.scm", but the path that gets residualized into
  2729. the .go is "ice-9/boot-9.scm".
  2730. ** New procedure, `make-promise'
  2731. `(make-promise (lambda () foo))' is equivalent to `(delay foo)'.
  2732. ** `defined?' may accept a module as its second argument
  2733. Previously it only accepted internal structures from the evaluator.
  2734. ** New entry into %guile-build-info: `ccachedir'
  2735. ** Fix bug in `module-bound?'.
  2736. `module-bound?' was returning true if a module did have a local
  2737. variable, but one that was unbound, but another imported module bound
  2738. the variable. This was an error, and was fixed.
  2739. ** `(ice-9 syncase)' has been deprecated.
  2740. As syntax-case is available by default, importing `(ice-9 syncase)' has
  2741. no effect, and will trigger a deprecation warning.
  2742. ** New readline history functions
  2743. The (ice-9 readline) module now provides add-history, read-history,
  2744. write-history and clear-history, which wrap the corresponding GNU
  2745. History library functions.
  2746. ** Removed deprecated uniform array procedures:
  2747. dimensions->uniform-array, list->uniform-array, array-prototype
  2748. Instead, use make-typed-array, list->typed-array, or array-type,
  2749. respectively.
  2750. ** Deprecate the old `scm-style-repl'
  2751. The following bindings from boot-9 are now found in `(ice-9
  2752. scm-style-repl)': `scm-style-repl', `error-catching-loop',
  2753. `error-catching-repl', `bad-throw', `scm-repl-silent'
  2754. `assert-repl-silence', `repl-print-unspecified',
  2755. `assert-repl-print-unspecified', `scm-repl-verbose',
  2756. `assert-repl-verbosity', `scm-repl-prompt', `set-repl-prompt!', `repl',
  2757. `default-pre-unwind-handler', `handle-system-error',
  2758. The following bindings have been deprecated, with no replacement:
  2759. `pre-unwind-handler-dispatch'.
  2760. The following bindings have been totally removed:
  2761. `before-signal-stack'.
  2762. Deprecated forwarding shims have been installed so that users that
  2763. expect these bindings in the main namespace will still work, but receive
  2764. a deprecation warning.
  2765. ** `set-batch-mode?!' replaced by `ensure-batch-mode!'
  2766. "Batch mode" is a flag used to tell a program that it is not running
  2767. interactively. One usually turns it on after a fork. It may not be
  2768. turned off. `ensure-batch-mode!' deprecates the old `set-batch-mode?!',
  2769. because it is a better interface, as it can only turn on batch mode, not
  2770. turn it off.
  2771. ** Deprecate `save-stack', `the-last-stack'
  2772. It used to be that the way to debug programs in Guile was to capture the
  2773. stack at the time of error, drop back to the REPL, then debug that
  2774. stack. But this approach didn't compose, was tricky to get right in the
  2775. presence of threads, and was not very powerful.
  2776. So `save-stack', `stack-saved?', and `the-last-stack' have been moved to
  2777. `(ice-9 save-stack)', with deprecated bindings left in the root module.
  2778. ** `top-repl' has its own module
  2779. The `top-repl' binding, called with Guile is run interactively, is now
  2780. is its own module, `(ice-9 top-repl)'. A deprecated forwarding shim was
  2781. left in the default environment.
  2782. ** `display-error' takes a frame
  2783. The `display-error' / `scm_display_error' helper now takes a frame as an
  2784. argument instead of a stack. Stacks are still supported in deprecated
  2785. builds. Additionally, `display-error' will again source location
  2786. information for the error.
  2787. ** No more `(ice-9 debug)'
  2788. This module had some debugging helpers that are no longer applicable to
  2789. the current debugging model. Importing this module will produce a
  2790. deprecation warning. Users should contact bug-guile for support.
  2791. ** Remove obsolete debug-options
  2792. Removed `breakpoints', `trace', `procnames', `indent', `frames',
  2793. `maxdepth', and `debug' debug-options.
  2794. ** `backtrace' debug option on by default
  2795. Given that Guile 2.0 can always give you a backtrace, backtraces are now
  2796. on by default.
  2797. ** `turn-on-debugging' deprecated
  2798. ** Remove obsolete print-options
  2799. The `source' and `closure-hook' print options are obsolete, and have
  2800. been removed.
  2801. ** Remove obsolete read-options
  2802. The "elisp-strings" and "elisp-vectors" read options were unused and
  2803. obsolete, so they have been removed.
  2804. ** Remove eval-options and trap-options
  2805. Eval-options and trap-options are obsolete with the new VM and
  2806. evaluator.
  2807. ** Remove (ice-9 debugger) and (ice-9 debugging)
  2808. See "Traps" and "Interactive Debugging" in the manual, for information
  2809. on their replacements.
  2810. ** Remove the GDS Emacs integration
  2811. See "Using Guile in Emacs" in the manual, for info on how we think you
  2812. should use Guile with Emacs.
  2813. ** Deprecated: `lazy-catch'
  2814. `lazy-catch' was a form that captured the stack at the point of a
  2815. `throw', but the dynamic state at the point of the `catch'. It was a bit
  2816. crazy. Please change to use `catch', possibly with a throw-handler, or
  2817. `with-throw-handler'.
  2818. ** Deprecated: primitive properties
  2819. The `primitive-make-property', `primitive-property-set!',
  2820. `primitive-property-ref', and `primitive-property-del!' procedures were
  2821. crufty and only used to implement object properties, which has a new,
  2822. threadsafe implementation. Use object properties or weak hash tables
  2823. instead.
  2824. ** Deprecated `@bind' syntax
  2825. `@bind' was part of an older implementation of the Emacs Lisp language,
  2826. and is no longer used.
  2827. ** Miscellaneous other deprecations
  2828. `cuserid' has been deprecated, as it only returns 8 bytes of a user's
  2829. login. Use `(passwd:name (getpwuid (geteuid)))' instead.
  2830. Additionally, the procedures `apply-to-args', `has-suffix?', `scheme-file-suffix'
  2831. `get-option', `for-next-option', `display-usage-report',
  2832. `transform-usage-lambda', `collect', and `set-batch-mode?!' have all
  2833. been deprecated.
  2834. ** Add support for unbound fluids
  2835. See `make-unbound-fluid', `fluid-unset!', and `fluid-bound?' in the
  2836. manual.
  2837. ** Add `variable-unset!'
  2838. See "Variables" in the manual, for more details.
  2839. ** Last but not least, the `λ' macro can be used in lieu of `lambda'
  2840. * Changes to the C interface
  2841. ** Guile now uses libgc, the Boehm-Demers-Weiser garbage collector
  2842. The semantics of `scm_gc_malloc ()' have been changed, in a
  2843. backward-compatible way. A new allocation routine,
  2844. `scm_gc_malloc_pointerless ()', was added.
  2845. Libgc is a conservative GC, which we hope will make interaction with C
  2846. code easier and less error-prone.
  2847. ** New procedures: `scm_to_stringn', `scm_from_stringn'
  2848. ** New procedures: scm_{to,from}_{utf8,latin1}_symbol{n,}
  2849. ** New procedures: scm_{to,from}_{utf8,utf32,latin1}_string{n,}
  2850. These new procedures convert to and from string representations in
  2851. particular encodings.
  2852. Users should continue to use locale encoding for user input, user
  2853. output, or interacting with the C library.
  2854. Use the Latin-1 functions for ASCII, and for literals in source code.
  2855. Use UTF-8 functions for interaction with modern libraries which deal in
  2856. UTF-8, and UTF-32 for interaction with utf32-using libraries.
  2857. Otherwise, use scm_to_stringn or scm_from_stringn with a specific
  2858. encoding.
  2859. ** New type definitions for `scm_t_intptr' and friends.
  2860. `SCM_T_UINTPTR_MAX', `SCM_T_INTPTR_MIN', `SCM_T_INTPTR_MAX',
  2861. `SIZEOF_SCM_T_BITS', `scm_t_intptr' and `scm_t_uintptr' are now
  2862. available to C. Have fun!
  2863. ** The GH interface (deprecated in version 1.6, 2001) was removed.
  2864. ** Internal `scm_i_' functions now have "hidden" linkage with GCC/ELF
  2865. This makes these internal functions technically not callable from
  2866. application code.
  2867. ** Functions for handling `scm_option' now no longer require an argument
  2868. indicating length of the `scm_t_option' array.
  2869. ** Procedures-with-setters are now implemented using applicable structs
  2870. From a user's perspective this doesn't mean very much. But if, for some
  2871. odd reason, you used the SCM_PROCEDURE_WITH_SETTER_P, SCM_PROCEDURE, or
  2872. SCM_SETTER macros, know that they're deprecated now. Also, scm_tc7_pws
  2873. is gone.
  2874. ** Remove old evaluator closures
  2875. There used to be ranges of typecodes allocated to interpreted data
  2876. structures, but that it no longer the case, given that interpreted
  2877. procedure are now just regular VM closures. As a result, there is a
  2878. newly free tc3, and a number of removed macros. See the ChangeLog for
  2879. details.
  2880. ** Primitive procedures are now VM trampoline procedures
  2881. It used to be that there were something like 12 different typecodes
  2882. allocated to primitive procedures, each with its own calling convention.
  2883. Now there is only one, the gsubr. This may affect user code if you were
  2884. defining a procedure using scm_c_make_subr rather scm_c_make_gsubr. The
  2885. solution is to switch to use scm_c_make_gsubr. This solution works well
  2886. both with the old 1.8 and with the current 1.9 branch.
  2887. Guile's old evaluator used to have special cases for applying "gsubrs",
  2888. primitive procedures with specified numbers of required, optional, and
  2889. rest arguments. Now, however, Guile represents gsubrs as normal VM
  2890. procedures, with appropriate bytecode to parse out the correct number of
  2891. arguments, including optional and rest arguments, and then with a
  2892. special bytecode to apply the gsubr.
  2893. This allows primitive procedures to appear on the VM stack, allowing
  2894. them to be accurately counted in profiles. Also they now have more
  2895. debugging information attached to them -- their number of arguments, for
  2896. example. In addition, the VM can completely inline the application
  2897. mechanics, allowing for faster primitive calls.
  2898. However there are some changes on the C level. There is no more
  2899. `scm_tc7_gsubr' or `scm_tcs_subrs' typecode for primitive procedures, as
  2900. they are just VM procedures. Likewise the macros `SCM_GSUBR_TYPE',
  2901. `SCM_GSUBR_MAKTYPE', `SCM_GSUBR_REQ', `SCM_GSUBR_OPT', and
  2902. `SCM_GSUBR_REST' are gone, as are `SCM_SUBR_META_INFO', `SCM_SUBR_PROPS'
  2903. `SCM_SET_SUBR_GENERIC_LOC', and `SCM_SUBR_ARITY_TO_TYPE'.
  2904. Perhaps more significantly, `scm_c_make_subr',
  2905. `scm_c_make_subr_with_generic', `scm_c_define_subr', and
  2906. `scm_c_define_subr_with_generic'. They all operated on subr typecodes,
  2907. and there are no more subr typecodes. Use the scm_c_make_gsubr family
  2908. instead.
  2909. Normal users of gsubrs should not be affected, though, as the
  2910. scm_c_make_gsubr family still is the correct way to create primitive
  2911. procedures.
  2912. ** Remove deprecated array C interfaces
  2913. Removed the deprecated array functions `scm_i_arrayp',
  2914. `scm_i_array_ndim', `scm_i_array_mem', `scm_i_array_v',
  2915. `scm_i_array_base', `scm_i_array_dims', and the deprecated macros
  2916. `SCM_ARRAYP', `SCM_ARRAY_NDIM', `SCM_ARRAY_CONTP', `SCM_ARRAY_MEM',
  2917. `SCM_ARRAY_V', `SCM_ARRAY_BASE', and `SCM_ARRAY_DIMS'.
  2918. ** Remove unused snarf macros
  2919. `SCM_DEFINE1', `SCM_PRIMITIVE_GENERIC_1', `SCM_PROC1, and `SCM_GPROC1'
  2920. are no more. Use SCM_DEFINE or SCM_PRIMITIVE_GENERIC instead.
  2921. ** New functions: `scm_call_n', `scm_c_run_hookn'
  2922. `scm_call_n' applies to apply a function to an array of arguments.
  2923. `scm_c_run_hookn' runs a hook with an array of arguments.
  2924. ** Some SMOB types changed to have static typecodes
  2925. Fluids, dynamic states, and hash tables used to be SMOB objects, but now
  2926. they have statically allocated tc7 typecodes.
  2927. ** Preparations for changing SMOB representation
  2928. If things go right, we'll be changing the SMOB representation soon. To
  2929. that end, we did a lot of cleanups to calls to e.g. SCM_CELL_WORD_2(x) when
  2930. the code meant SCM_SMOB_DATA_2(x); user code will need similar changes
  2931. in the future. Code accessing SMOBs using SCM_CELL macros was never
  2932. correct, but until now things still worked. Users should be aware of
  2933. such changes.
  2934. ** Changed invocation mechanics of applicable SMOBs
  2935. Guile's old evaluator used to have special cases for applying SMOB
  2936. objects. Now, with the VM, when Guile sees a SMOB, it looks up a VM
  2937. trampoline procedure for it, and use the normal mechanics to apply the
  2938. trampoline. This simplifies procedure application in the normal,
  2939. non-SMOB case.
  2940. The upshot is that the mechanics used to apply a SMOB are different from
  2941. 1.8. Descriptors no longer have `apply_0', `apply_1', `apply_2', and
  2942. `apply_3' functions, and the macros SCM_SMOB_APPLY_0 and friends are now
  2943. deprecated. Just use the scm_call_0 family of procedures.
  2944. ** Removed support shlibs for SRFIs 1, 4, 13, 14, and 60
  2945. Though these SRFI support libraries did expose API, they encoded a
  2946. strange version string into their library names. That version was never
  2947. programmatically exported, so there was no way people could use the
  2948. libs.
  2949. This was a fortunate oversight, as it allows us to remove the need for
  2950. extra, needless shared libraries --- the C support code for SRFIs 4, 13,
  2951. and 14 was already in core --- and allow us to incrementally return the
  2952. SRFI implementation to Scheme.
  2953. ** New C function: scm_module_public_interface
  2954. This procedure corresponds to Scheme's `module-public-interface'.
  2955. ** Undeprecate `scm_the_root_module ()'
  2956. It's useful to be able to get the root module from C without doing a
  2957. full module lookup.
  2958. ** Inline vector allocation
  2959. Instead of having vectors point out into the heap for their data, their
  2960. data is now allocated inline to the vector object itself. The same is
  2961. true for bytevectors, by default, though there is an indirection
  2962. available which should allow for making a bytevector from an existing
  2963. memory region.
  2964. ** New struct constructors that don't involve making lists
  2965. `scm_c_make_struct' and `scm_c_make_structv' are new varargs and array
  2966. constructors, respectively, for structs. You might find them useful.
  2967. ** Stack refactor
  2968. In Guile 1.8, there were debugging frames on the C stack. Now there is
  2969. no more need to explicitly mark the stack in this way, because Guile has
  2970. a VM stack that it knows how to walk, which simplifies the C API
  2971. considerably. See the ChangeLog for details; the relevant interface is
  2972. in libguile/stacks.h. The Scheme API has not been changed significantly.
  2973. ** Removal of Guile's primitive object system.
  2974. There were a number of pieces in `objects.[ch]' that tried to be a
  2975. minimal object system, but were never documented, and were quickly
  2976. obseleted by GOOPS' merge into Guile proper. So `scm_make_class_object',
  2977. `scm_make_subclass_object', `scm_metaclass_standard', and like symbols
  2978. from objects.h are no more. In the very unlikely case in which these
  2979. were useful to you, we urge you to contact guile-devel.
  2980. ** No future.
  2981. Actually the future is still in the state that it was, is, and ever
  2982. shall be, Amen, except that `futures.c' and `futures.h' are no longer a
  2983. part of it. These files were experimental, never compiled, and would be
  2984. better implemented in Scheme anyway. In the future, that is.
  2985. ** Deprecate trampolines
  2986. There used to be C functions `scm_trampoline_0', `scm_trampoline_1', and
  2987. so on. The point was to do some precomputation on the type of the
  2988. procedure, then return a specialized "call" procedure. However this
  2989. optimization wasn't actually an optimization, so it is now deprecated.
  2990. Just use `scm_call_0', etc instead.
  2991. ** Deprecated `scm_badargsp'
  2992. This function is unused in Guile, but was part of its API.
  2993. ** Better support for Lisp `nil'.
  2994. The bit representation of `nil' has been tweaked so that it is now very
  2995. efficient to check e.g. if a value is equal to Scheme's end-of-list or
  2996. Lisp's nil. Additionally there are a heap of new, specific predicates
  2997. like scm_is_null_or_nil.
  2998. ** Better integration of Lisp `nil'.
  2999. `scm_is_boolean', `scm_is_false', and `scm_is_null' all return true now
  3000. for Lisp's `nil'. This shouldn't affect any Scheme code at this point,
  3001. but when we start to integrate more with Emacs, it is possible that we
  3002. break code that assumes that, for example, `(not x)' implies that `x' is
  3003. `eq?' to `#f'. This is not a common assumption. Refactoring affected
  3004. code to rely on properties instead of identities will improve code
  3005. correctness. See "Nil" in the manual, for more details.
  3006. ** Support for static allocation of strings, symbols, and subrs.
  3007. Calls to snarfing CPP macros like SCM_DEFINE macro will now allocate
  3008. much of their associated data as static variables, reducing Guile's
  3009. memory footprint.
  3010. ** `scm_stat' has an additional argument, `exception_on_error'
  3011. ** `scm_primitive_load_path' has an additional argument `exception_on_not_found'
  3012. ** `scm_set_port_seek' and `scm_set_port_truncate' use the `scm_t_off' type
  3013. Previously they would use the `off_t' type, which is fragile since its
  3014. definition depends on the application's value for `_FILE_OFFSET_BITS'.
  3015. ** The `long_long' C type, deprecated in 1.8, has been removed
  3016. ** Removed deprecated uniform array procedures: scm_make_uve,
  3017. scm_array_prototype, scm_list_to_uniform_array,
  3018. scm_dimensions_to_uniform_array, scm_make_ra, scm_shap2ra, scm_cvref,
  3019. scm_ra_set_contp, scm_aind, scm_raprin1
  3020. These functions have been deprecated since early 2005.
  3021. * Changes to the distribution
  3022. ** Guile's license is now LGPLv3+
  3023. In other words the GNU Lesser General Public License, version 3 or
  3024. later (at the discretion of each person that chooses to redistribute
  3025. part of Guile).
  3026. ** AM_SILENT_RULES
  3027. Guile's build is visually quieter, due to the use of Automake 1.11's
  3028. AM_SILENT_RULES. Build as `make V=1' to see all of the output.
  3029. ** GOOPS documentation folded into Guile reference manual
  3030. GOOPS, Guile's object system, used to be documented in separate manuals.
  3031. This content is now included in Guile's manual directly.
  3032. ** `guile-config' will be deprecated in favor of `pkg-config'
  3033. `guile-config' has been rewritten to get its information from
  3034. `pkg-config', so this should be a transparent change. Note however that
  3035. guile.m4 has yet to be modified to call pkg-config instead of
  3036. guile-config.
  3037. ** Guile now provides `guile-2.0.pc' instead of `guile-1.8.pc'
  3038. Programs that use `pkg-config' to find Guile or one of its Autoconf
  3039. macros should now require `guile-2.0' instead of `guile-1.8'.
  3040. ** New installation directory: $(pkglibdir)/1.9/ccache
  3041. If $(libdir) is /usr/lib, for example, Guile will install its .go files
  3042. to /usr/lib/guile/1.9/ccache. These files are architecture-specific.
  3043. ** Parallel installability fixes
  3044. Guile now installs its header files to a effective-version-specific
  3045. directory, and includes the effective version (e.g. 2.0) in the library
  3046. name (e.g. libguile-2.0.so).
  3047. This change should be transparent to users, who should detect Guile via
  3048. the guile.m4 macro, or the guile-2.0.pc pkg-config file. It will allow
  3049. parallel installs for multiple versions of Guile development
  3050. environments.
  3051. ** Dynamically loadable extensions may be placed in a Guile-specific path
  3052. Before, Guile only searched the system library paths for extensions
  3053. (e.g. /usr/lib), which meant that the names of Guile extensions had to
  3054. be globally unique. Installing them to a Guile-specific extensions
  3055. directory is cleaner. Use `pkg-config --variable=extensiondir
  3056. guile-2.0' to get the location of the extensions directory.
  3057. ** User Scheme code may be placed in a version-specific path
  3058. Before, there was only one way to install user Scheme code to a
  3059. version-specific Guile directory: install to Guile's own path,
  3060. e.g. /usr/share/guile/2.0. The site directory,
  3061. e.g. /usr/share/guile/site, was unversioned. This has been changed to
  3062. add a version-specific site directory, e.g. /usr/share/guile/site/2.0,
  3063. searched before the global site directory.
  3064. ** New dependency: libgc
  3065. See http://www.hpl.hp.com/personal/Hans_Boehm/gc/, for more information.
  3066. ** New dependency: GNU libunistring
  3067. See http://www.gnu.org/software/libunistring/, for more information. Our
  3068. Unicode support uses routines from libunistring.
  3069. ** New dependency: libffi
  3070. See http://sourceware.org/libffi/, for more information.
  3071. Changes in 1.8.8 (since 1.8.7)
  3072. * Bugs fixed
  3073. ** Fix possible buffer overruns when parsing numbers
  3074. ** Avoid clash with system setjmp/longjmp on IA64
  3075. ** Fix `wrong type arg' exceptions with IPv6 addresses
  3076. Changes in 1.8.7 (since 1.8.6)
  3077. * New modules (see the manual for details)
  3078. ** `(srfi srfi-98)', an interface to access environment variables
  3079. * Bugs fixed
  3080. ** Fix compilation with `--disable-deprecated'
  3081. ** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
  3082. ** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
  3083. ** Fix build problem when scm_t_timespec is different from struct timespec
  3084. ** Fix build when compiled with -Wundef -Werror
  3085. ** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
  3086. ** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
  3087. ** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
  3088. ** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
  3089. ** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
  3090. ** Fix reading of complex numbers where both parts are inexact decimals
  3091. ** Allow @ macro to work with (ice-9 syncase)
  3092. Previously, use of the @ macro in a module whose code is being
  3093. transformed by (ice-9 syncase) would cause an "Invalid syntax" error.
  3094. Now it works as you would expect (giving the value of the specified
  3095. module binding).
  3096. ** Have `scm_take_locale_symbol ()' return an interned symbol (bug #25865)
  3097. Changes in 1.8.6 (since 1.8.5)
  3098. * New features (see the manual for details)
  3099. ** New convenience function `scm_c_symbol_length ()'
  3100. ** Single stepping through code from Emacs
  3101. When you use GDS to evaluate Scheme code from Emacs, you can now use
  3102. `C-u' to indicate that you want to single step through that code. See
  3103. `Evaluating Scheme Code' in the manual for more details.
  3104. ** New "guile(1)" man page!
  3105. * Changes to the distribution
  3106. ** Automake's `AM_MAINTAINER_MODE' is no longer used
  3107. Thus, the `--enable-maintainer-mode' configure option is no longer
  3108. available: Guile is now always configured in "maintainer mode".
  3109. ** `ChangeLog' files are no longer updated
  3110. Instead, changes are detailed in the version control system's logs. See
  3111. the top-level `ChangeLog' files for details.
  3112. * Bugs fixed
  3113. ** `symbol->string' now returns a read-only string, as per R5RS
  3114. ** Fix incorrect handling of the FLAGS argument of `fold-matches'
  3115. ** `guile-config link' now prints `-L$libdir' before `-lguile'
  3116. ** Fix memory corruption involving GOOPS' `class-redefinition'
  3117. ** Fix possible deadlock in `mutex-lock'
  3118. ** Fix build issue on Tru64 and ia64-hp-hpux11.23 (`SCM_UNPACK' macro)
  3119. ** Fix build issue on mips, mipsel, powerpc and ia64 (stack direction)
  3120. ** Fix build issue on hppa2.0w-hp-hpux11.11 (`dirent64' and `readdir64_r')
  3121. ** Fix build issue on i386-unknown-freebsd7.0 ("break strict-aliasing rules")
  3122. ** Fix misleading output from `(help rationalize)'
  3123. ** Fix build failure on Debian hppa architecture (bad stack growth detection)
  3124. ** Fix `gcd' when called with a single, negative argument.
  3125. ** Fix `Stack overflow' errors seen when building on some platforms
  3126. ** Fix bug when `scm_with_guile ()' was called several times from the
  3127. same thread
  3128. ** The handler of SRFI-34 `with-exception-handler' is now invoked in the
  3129. dynamic environment of the call to `raise'
  3130. ** Fix potential deadlock in `make-struct'
  3131. ** Fix compilation problem with libltdl from Libtool 2.2.x
  3132. ** Fix sloppy bound checking in `string-{ref,set!}' with the empty string
  3133. Changes in 1.8.5 (since 1.8.4)
  3134. * Infrastructure changes
  3135. ** Guile repository switched from CVS to Git
  3136. The new repository can be accessed using
  3137. "git-clone git://git.sv.gnu.org/guile.git", or can be browsed on-line at
  3138. http://git.sv.gnu.org/gitweb/?p=guile.git . See `README' for details.
  3139. ** Add support for `pkg-config'
  3140. See "Autoconf Support" in the manual for details.
  3141. * New modules (see the manual for details)
  3142. ** `(srfi srfi-88)'
  3143. * New features (see the manual for details)
  3144. ** New `postfix' read option, for SRFI-88 keyword syntax
  3145. ** Some I/O primitives have been inlined, which improves I/O performance
  3146. ** New object-based traps infrastructure
  3147. This is a GOOPS-based infrastructure that builds on Guile's low-level
  3148. evaluator trap calls and facilitates the development of debugging
  3149. features like single-stepping, breakpoints, tracing and profiling.
  3150. See the `Traps' node of the manual for details.
  3151. ** New support for working on Guile code from within Emacs
  3152. Guile now incorporates the `GDS' library (previously distributed
  3153. separately) for working on Guile code from within Emacs. See the
  3154. `Using Guile In Emacs' node of the manual for details.
  3155. * Bugs fixed
  3156. ** `scm_add_slot ()' no longer segfaults (fixes bug #22369)
  3157. ** Fixed `(ice-9 match)' for patterns like `((_ ...) ...)'
  3158. Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
  3159. would trigger an unbound variable error for `match:andmap'.
  3160. ** `(oop goops describe)' now properly provides the `describe' feature
  3161. ** Fixed `args-fold' from `(srfi srfi-37)'
  3162. Previously, parsing short option names of argument-less options would
  3163. lead to a stack overflow.
  3164. ** `(srfi srfi-35)' is now visible through `cond-expand'
  3165. ** Fixed type-checking for the second argument of `eval'
  3166. ** Fixed type-checking for SRFI-1 `partition'
  3167. ** Fixed `struct-ref' and `struct-set!' on "light structs"
  3168. ** Honor struct field access rights in GOOPS
  3169. ** Changed the storage strategy of source properties, which fixes a deadlock
  3170. ** Allow compilation of Guile-using programs in C99 mode with GCC 4.3 and later
  3171. ** Fixed build issue for GNU/Linux on IA64
  3172. ** Fixed build issues on NetBSD 1.6
  3173. ** Fixed build issue on Solaris 2.10 x86_64
  3174. ** Fixed build issue with DEC/Compaq/HP's compiler
  3175. ** Fixed `scm_from_complex_double' build issue on FreeBSD
  3176. ** Fixed `alloca' build issue on FreeBSD 6
  3177. ** Removed use of non-portable makefile constructs
  3178. ** Fixed shadowing of libc's <random.h> on Tru64, which broke compilation
  3179. ** Make sure all tests honor `$TMPDIR'
  3180. Changes in 1.8.4 (since 1.8.3)
  3181. * Bugs fixed
  3182. ** CR (ASCII 0x0d) is (again) recognized as a token delimiter by the reader
  3183. ** Fixed a segmentation fault which occurred when displaying the
  3184. backtrace of a stack with a promise object (made by `delay') in it.
  3185. ** Make `accept' leave guile mode while blocking
  3186. ** `scm_c_read ()' and `scm_c_write ()' now type-check their port argument
  3187. ** Fixed a build problem on AIX (use of func_data identifier)
  3188. ** Fixed a segmentation fault which occurred when hashx-ref or hashx-set! was
  3189. called with an associator proc that returns neither a pair nor #f.
  3190. ** Secondary threads now always return a valid module for (current-module).
  3191. ** Avoid MacOS build problems caused by incorrect combination of "64"
  3192. system and library calls.
  3193. ** `guile-snarf' now honors `$TMPDIR'
  3194. ** `guile-config compile' now reports CPPFLAGS used at compile-time
  3195. ** Fixed build with Sun Studio (Solaris 9)
  3196. ** Fixed wrong-type-arg errors when creating zero length SRFI-4
  3197. uniform vectors on AIX.
  3198. ** Fixed a deadlock that occurs upon GC with multiple threads.
  3199. ** Fixed compile problem with GCC on Solaris and AIX (use of _Complex_I)
  3200. ** Fixed autotool-derived build problems on AIX 6.1.
  3201. ** Fixed NetBSD/alpha support
  3202. ** Fixed MacOS build problem caused by use of rl_get_keymap(_name)
  3203. * New modules (see the manual for details)
  3204. ** `(srfi srfi-69)'
  3205. * Documentation fixes and improvements
  3206. ** Removed premature breakpoint documentation
  3207. The features described are not available in the series of 1.8.x
  3208. releases, so the documentation was misleading and has been removed.
  3209. ** More about Guile's default *random-state* variable
  3210. ** GOOPS: more about how to use `next-method'
  3211. * Changes to the distribution
  3212. ** Corrected a few files that referred incorrectly to the old GPL + special exception licence
  3213. In fact Guile since 1.8.0 has been licensed with the GNU Lesser
  3214. General Public License, and the few incorrect files have now been
  3215. fixed to agree with the rest of the Guile distribution.
  3216. ** Removed unnecessary extra copies of COPYING*
  3217. The distribution now contains a single COPYING.LESSER at its top level.
  3218. Changes in 1.8.3 (since 1.8.2)
  3219. * New modules (see the manual for details)
  3220. ** `(srfi srfi-35)'
  3221. ** `(srfi srfi-37)'
  3222. * Bugs fixed
  3223. ** The `(ice-9 slib)' module now works as expected
  3224. ** Expressions like "(set! 'x #t)" no longer yield a crash
  3225. ** Warnings about duplicate bindings now go to stderr
  3226. ** A memory leak in `make-socket-address' was fixed
  3227. ** Alignment issues (e.g., on SPARC) in network routines were fixed
  3228. ** A threading issue that showed up at least on NetBSD was fixed
  3229. ** Build problems on Solaris and IRIX fixed
  3230. * Implementation improvements
  3231. ** The reader is now faster, which reduces startup time
  3232. ** Procedures returned by `record-accessor' and `record-modifier' are faster
  3233. Changes in 1.8.2 (since 1.8.1):
  3234. * New procedures (see the manual for details)
  3235. ** set-program-arguments
  3236. ** make-vtable
  3237. * Incompatible changes
  3238. ** The body of a top-level `define' no longer sees the binding being created
  3239. In a top-level `define', the binding being created is no longer visible
  3240. from the `define' body. This breaks code like
  3241. "(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now
  3242. unbound in the body. However, such code was not R5RS-compliant anyway,
  3243. per Section 5.2.1.
  3244. * Bugs fixed
  3245. ** Fractions were not `equal?' if stored in unreduced form.
  3246. (A subtle problem, since printing a value reduced it, making it work.)
  3247. ** srfi-60 `copy-bit' failed on 64-bit systems
  3248. ** "guile --use-srfi" option at the REPL can replace core functions
  3249. (Programs run with that option were ok, but in the interactive REPL
  3250. the core bindings got priority, preventing SRFI replacements or
  3251. extensions.)
  3252. ** `regexp-exec' doesn't abort() on #\nul in the input or bad flags arg
  3253. ** `kill' on mingw throws an error for a PID other than oneself
  3254. ** Procedure names are attached to procedure-with-setters
  3255. ** Array read syntax works with negative lower bound
  3256. ** `array-in-bounds?' fix if an array has different lower bounds on each index
  3257. ** `*' returns exact 0 for "(* inexact 0)"
  3258. This follows what it always did for "(* 0 inexact)".
  3259. ** SRFI-19: Value returned by `(current-time time-process)' was incorrect
  3260. ** SRFI-19: `date->julian-day' did not account for timezone offset
  3261. ** `ttyname' no longer crashes when passed a non-tty argument
  3262. ** `inet-ntop' no longer crashes on SPARC when passed an `AF_INET' address
  3263. ** Small memory leaks have been fixed in `make-fluid' and `add-history'
  3264. ** GOOPS: Fixed a bug in `method-more-specific?'
  3265. ** Build problems on Solaris fixed
  3266. ** Build problems on HP-UX IA64 fixed
  3267. ** Build problems on MinGW fixed
  3268. Changes in 1.8.1 (since 1.8.0):
  3269. * LFS functions are now used to access 64-bit files on 32-bit systems.
  3270. * New procedures (see the manual for details)
  3271. ** primitive-_exit - [Scheme] the-root-module
  3272. ** scm_primitive__exit - [C]
  3273. ** make-completion-function - [Scheme] (ice-9 readline)
  3274. ** scm_c_locale_stringn_to_number - [C]
  3275. ** scm_srfi1_append_reverse [C]
  3276. ** scm_srfi1_append_reverse_x [C]
  3277. ** scm_log - [C]
  3278. ** scm_log10 - [C]
  3279. ** scm_exp - [C]
  3280. ** scm_sqrt - [C]
  3281. * Bugs fixed
  3282. ** Build problems have been fixed on MacOS, SunOS, and QNX.
  3283. ** `strftime' fix sign of %z timezone offset.
  3284. ** A one-dimensional array can now be 'equal?' to a vector.
  3285. ** Structures, records, and SRFI-9 records can now be compared with `equal?'.
  3286. ** SRFI-14 standard char sets are recomputed upon a successful `setlocale'.
  3287. ** `record-accessor' and `record-modifier' now have strict type checks.
  3288. Record accessor and modifier procedures now throw an error if the
  3289. record type of the record they're given is not the type expected.
  3290. (Previously accessors returned #f and modifiers silently did nothing).
  3291. ** It is now OK to use both autoload and use-modules on a given module.
  3292. ** `apply' checks the number of arguments more carefully on "0 or 1" funcs.
  3293. Previously there was no checking on primatives like make-vector that
  3294. accept "one or two" arguments. Now there is.
  3295. ** The srfi-1 assoc function now calls its equality predicate properly.
  3296. Previously srfi-1 assoc would call the equality predicate with the key
  3297. last. According to the SRFI, the key should be first.
  3298. ** A bug in n-par-for-each and n-for-each-par-map has been fixed.
  3299. ** The array-set! procedure no longer segfaults when given a bit vector.
  3300. ** Bugs in make-shared-array have been fixed.
  3301. ** string<? and friends now follow char<? etc order on 8-bit chars.
  3302. ** The format procedure now handles inf and nan values for ~f correctly.
  3303. ** exact->inexact should no longer overflow when given certain large fractions.
  3304. ** srfi-9 accessor and modifier procedures now have strict record type checks.
  3305. This matches the srfi-9 specification.
  3306. ** (ice-9 ftw) procedures won't ignore different files with same inode number.
  3307. Previously the (ice-9 ftw) procedures would ignore any file that had
  3308. the same inode number as a file they had already seen, even if that
  3309. file was on a different device.
  3310. Changes in 1.8.0 (changes since the 1.6.x series):
  3311. * Changes to the distribution
  3312. ** Guile is now licensed with the GNU Lesser General Public License.
  3313. ** The manual is now licensed with the GNU Free Documentation License.
  3314. ** Guile now requires GNU MP (http://swox.com/gmp).
  3315. Guile now uses the GNU MP library for arbitrary precision arithmetic.
  3316. ** Guile now has separate private and public configuration headers.
  3317. That is, things like HAVE_STRING_H no longer leak from Guile's
  3318. headers.
  3319. ** Guile now provides and uses an "effective" version number.
  3320. Guile now provides scm_effective_version and effective-version
  3321. functions which return the "effective" version number. This is just
  3322. the normal full version string without the final micro-version number,
  3323. so the current effective-version is "1.8". The effective version
  3324. should remain unchanged during a stable series, and should be used for
  3325. items like the versioned share directory name
  3326. i.e. /usr/share/guile/1.8.
  3327. Providing an unchanging version number during a stable release for
  3328. things like the versioned share directory can be particularly
  3329. important for Guile "add-on" packages, since it provides a directory
  3330. that they can install to that won't be changed out from under them
  3331. with each micro release during a stable series.
  3332. ** Thread implementation has changed.
  3333. When you configure "--with-threads=null", you will get the usual
  3334. threading API (call-with-new-thread, make-mutex, etc), but you can't
  3335. actually create new threads. Also, "--with-threads=no" is now
  3336. equivalent to "--with-threads=null". This means that the thread API
  3337. is always present, although you might not be able to create new
  3338. threads.
  3339. When you configure "--with-threads=pthreads" or "--with-threads=yes",
  3340. you will get threads that are implemented with the portable POSIX
  3341. threads. These threads can run concurrently (unlike the previous
  3342. "coop" thread implementation), but need to cooperate for things like
  3343. the GC.
  3344. The default is "pthreads", unless your platform doesn't have pthreads,
  3345. in which case "null" threads are used.
  3346. See the manual for details, nodes "Initialization", "Multi-Threading",
  3347. "Blocking", and others.
  3348. ** There is the new notion of 'discouraged' features.
  3349. This is a milder form of deprecation.
  3350. Things that are discouraged should not be used in new code, but it is
  3351. OK to leave them in old code for now. When a discouraged feature is
  3352. used, no warning message is printed like there is for 'deprecated'
  3353. features. Also, things that are merely discouraged are nevertheless
  3354. implemented efficiently, while deprecated features can be very slow.
  3355. You can omit discouraged features from libguile by configuring it with
  3356. the '--disable-discouraged' option.
  3357. ** Deprecation warnings can be controlled at run-time.
  3358. (debug-enable 'warn-deprecated) switches them on and (debug-disable
  3359. 'warn-deprecated) switches them off.
  3360. ** Support for SRFI 61, extended cond syntax for multiple values has
  3361. been added.
  3362. This SRFI is always available.
  3363. ** Support for require-extension, SRFI-55, has been added.
  3364. The SRFI-55 special form `require-extension' has been added. It is
  3365. available at startup, and provides a portable way to load Scheme
  3366. extensions. SRFI-55 only requires support for one type of extension,
  3367. "srfi"; so a set of SRFIs may be loaded via (require-extension (srfi 1
  3368. 13 14)).
  3369. ** New module (srfi srfi-26) provides support for `cut' and `cute'.
  3370. The (srfi srfi-26) module is an implementation of SRFI-26 which
  3371. provides the `cut' and `cute' syntax. These may be used to specialize
  3372. parameters without currying.
  3373. ** New module (srfi srfi-31)
  3374. This is an implementation of SRFI-31 which provides a special form
  3375. `rec' for recursive evaluation.
  3376. ** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
  3377. been merged with the core, making their functionality always
  3378. available.
  3379. The modules are still available, tho, and you could use them together
  3380. with a renaming import, for example.
  3381. ** Guile no longer includes its own version of libltdl.
  3382. The official version is good enough now.
  3383. ** The --enable-htmldoc option has been removed from 'configure'.
  3384. Support for translating the documentation into HTML is now always
  3385. provided. Use 'make html'.
  3386. ** New module (ice-9 serialize):
  3387. (serialize FORM1 ...) and (parallelize FORM1 ...) are useful when you
  3388. don't trust the thread safety of most of your program, but where you
  3389. have some section(s) of code which you consider can run in parallel to
  3390. other sections. See ice-9/serialize.scm for more information.
  3391. ** The configure option '--disable-arrays' has been removed.
  3392. Support for arrays and uniform numeric arrays is now always included
  3393. in Guile.
  3394. * Changes to the stand-alone interpreter
  3395. ** New command line option `-L'.
  3396. This option adds a directory to the front of the load path.
  3397. ** New command line option `--no-debug'.
  3398. Specifying `--no-debug' on the command line will keep the debugging
  3399. evaluator turned off, even for interactive sessions.
  3400. ** User-init file ~/.guile is now loaded with the debugging evaluator.
  3401. Previously, the normal evaluator would have been used. Using the
  3402. debugging evaluator gives better error messages.
  3403. ** The '-e' option now 'read's its argument.
  3404. This is to allow the new '(@ MODULE-NAME VARIABLE-NAME)' construct to
  3405. be used with '-e'. For example, you can now write a script like
  3406. #! /bin/sh
  3407. exec guile -e '(@ (demo) main)' -s "$0" "$@"
  3408. !#
  3409. (define-module (demo)
  3410. :export (main))
  3411. (define (main args)
  3412. (format #t "Demo: ~a~%" args))
  3413. * Changes to Scheme functions and syntax
  3414. ** Guardians have changed back to their original semantics
  3415. Guardians now behave like described in the paper by Dybvig et al. In
  3416. particular, they no longer make guarantees about the order in which
  3417. they return objects, and they can no longer be greedy.
  3418. They no longer drop cyclic data structures.
  3419. The C function scm_make_guardian has been changed incompatibly and no
  3420. longer takes the 'greedy_p' argument.
  3421. ** New function hashx-remove!
  3422. This function completes the set of 'hashx' functions.
  3423. ** The concept of dynamic roots has been factored into continuation
  3424. barriers and dynamic states.
  3425. Each thread has a current dynamic state that carries the values of the
  3426. fluids. You can create and copy dynamic states and use them as the
  3427. second argument for 'eval'. See "Fluids and Dynamic States" in the
  3428. manual.
  3429. To restrict the influence that captured continuations can have on the
  3430. control flow, you can errect continuation barriers. See "Continuation
  3431. Barriers" in the manual.
  3432. The function call-with-dynamic-root now essentially temporarily
  3433. installs a new dynamic state and errects a continuation barrier.
  3434. ** The default load path no longer includes "." at the end.
  3435. Automatically loading modules from the current directory should not
  3436. happen by default. If you want to allow it in a more controlled
  3437. manner, set the environment variable GUILE_LOAD_PATH or the Scheme
  3438. variable %load-path.
  3439. ** The uniform vector and array support has been overhauled.
  3440. It now complies with SRFI-4 and the weird prototype based uniform
  3441. array creation has been deprecated. See the manual for more details.
  3442. Some non-compatible changes have been made:
  3443. - characters can no longer be stored into byte arrays.
  3444. - strings and bit vectors are no longer considered to be uniform numeric
  3445. vectors.
  3446. - array-rank throws an error for non-arrays instead of returning zero.
  3447. - array-ref does no longer accept non-arrays when no indices are given.
  3448. There is the new notion of 'generalized vectors' and corresponding
  3449. procedures like 'generalized-vector-ref'. Generalized vectors include
  3450. strings, bitvectors, ordinary vectors, and uniform numeric vectors.
  3451. Arrays use generalized vectors as their storage, so that you still
  3452. have arrays of characters, bits, etc. However, uniform-array-read!
  3453. and uniform-array-write can no longer read/write strings and
  3454. bitvectors.
  3455. ** There is now support for copy-on-write substrings, mutation-sharing
  3456. substrings and read-only strings.
  3457. Three new procedures are related to this: substring/shared,
  3458. substring/copy, and substring/read-only. See the manual for more
  3459. information.
  3460. ** Backtraces will now highlight the value that caused the error.
  3461. By default, these values are enclosed in "{...}", such as in this
  3462. example:
  3463. guile> (car 'a)
  3464. Backtrace:
  3465. In current input:
  3466. 1: 0* [car {a}]
  3467. <unnamed port>:1:1: In procedure car in expression (car (quote a)):
  3468. <unnamed port>:1:1: Wrong type (expecting pair): a
  3469. ABORT: (wrong-type-arg)
  3470. The prefix and suffix used for highlighting can be set via the two new
  3471. printer options 'highlight-prefix' and 'highlight-suffix'. For
  3472. example, putting this into ~/.guile will output the bad value in bold
  3473. on an ANSI terminal:
  3474. (print-set! highlight-prefix "\x1b[1m")
  3475. (print-set! highlight-suffix "\x1b[22m")
  3476. ** 'gettext' support for internationalization has been added.
  3477. See the manual for details.
  3478. ** New syntax '@' and '@@':
  3479. You can now directly refer to variables exported from a module by
  3480. writing
  3481. (@ MODULE-NAME VARIABLE-NAME)
  3482. For example (@ (ice-9 pretty-print) pretty-print) will directly access
  3483. the pretty-print variable exported from the (ice-9 pretty-print)
  3484. module. You don't need to 'use' that module first. You can also use
  3485. '@' as a target of 'set!', as in (set! (@ mod var) val).
  3486. The related syntax (@@ MODULE-NAME VARIABLE-NAME) works just like '@',
  3487. but it can also access variables that have not been exported. It is
  3488. intended only for kluges and temporary fixes and for debugging, not
  3489. for ordinary code.
  3490. ** Keyword syntax has been made more disciplined.
  3491. Previously, the name of a keyword was read as a 'token' but printed as
  3492. a symbol. Now, it is read as a general Scheme datum which must be a
  3493. symbol.
  3494. Previously:
  3495. guile> #:12
  3496. #:#{12}#
  3497. guile> #:#{12}#
  3498. #:#{\#{12}\#}#
  3499. guile> #:(a b c)
  3500. #:#{}#
  3501. ERROR: In expression (a b c):
  3502. Unbound variable: a
  3503. guile> #: foo
  3504. #:#{}#
  3505. ERROR: Unbound variable: foo
  3506. Now:
  3507. guile> #:12
  3508. ERROR: Wrong type (expecting symbol): 12
  3509. guile> #:#{12}#
  3510. #:#{12}#
  3511. guile> #:(a b c)
  3512. ERROR: Wrong type (expecting symbol): (a b c)
  3513. guile> #: foo
  3514. #:foo
  3515. ** The printing of symbols that might look like keywords can be
  3516. controlled.
  3517. The new printer option 'quote-keywordish-symbols' controls how symbols
  3518. are printed that have a colon as their first or last character. The
  3519. default now is to only quote a symbol with #{...}# when the read
  3520. option 'keywords' is not '#f'. Thus:
  3521. guile> (define foo (string->symbol ":foo"))
  3522. guile> (read-set! keywords #f)
  3523. guile> foo
  3524. :foo
  3525. guile> (read-set! keywords 'prefix)
  3526. guile> foo
  3527. #{:foo}#
  3528. guile> (print-set! quote-keywordish-symbols #f)
  3529. guile> foo
  3530. :foo
  3531. ** 'while' now provides 'break' and 'continue'
  3532. break and continue were previously bound in a while loop, but not
  3533. documented, and continue didn't quite work properly. The undocumented
  3534. parameter to break which gave a return value for the while has been
  3535. dropped.
  3536. ** 'call-with-current-continuation' is now also available under the name
  3537. 'call/cc'.
  3538. ** The module system now checks for duplicate bindings.
  3539. The module system now can check for name conflicts among imported
  3540. bindings.
  3541. The behavior can be controlled by specifying one or more 'duplicates'
  3542. handlers. For example, to make Guile return an error for every name
  3543. collision, write:
  3544. (define-module (foo)
  3545. :use-module (bar)
  3546. :use-module (baz)
  3547. :duplicates check)
  3548. The new default behavior of the module system when a name collision
  3549. has been detected is to
  3550. 1. Give priority to bindings marked as a replacement.
  3551. 2. Issue a warning (different warning if overriding core binding).
  3552. 3. Give priority to the last encountered binding (this corresponds to
  3553. the old behavior).
  3554. If you want the old behavior back without replacements or warnings you
  3555. can add the line:
  3556. (default-duplicate-binding-handler 'last)
  3557. to your .guile init file.
  3558. ** New define-module option: :replace
  3559. :replace works as :export, but, in addition, marks the binding as a
  3560. replacement.
  3561. A typical example is `format' in (ice-9 format) which is a replacement
  3562. for the core binding `format'.
  3563. ** Adding prefixes to imported bindings in the module system
  3564. There is now a new :use-module option :prefix. It can be used to add
  3565. a prefix to all imported bindings.
  3566. (define-module (foo)
  3567. :use-module ((bar) :prefix bar:))
  3568. will import all bindings exported from bar, but rename them by adding
  3569. the prefix `bar:'.
  3570. ** Conflicting generic functions can be automatically merged.
  3571. When two imported bindings conflict and they are both generic
  3572. functions, the two functions can now be merged automatically. This is
  3573. activated with the 'duplicates' handler 'merge-generics'.
  3574. ** New function: effective-version
  3575. Returns the "effective" version number. This is just the normal full
  3576. version string without the final micro-version number. See "Changes
  3577. to the distribution" above.
  3578. ** New threading functions: parallel, letpar, par-map, and friends
  3579. These are convenient ways to run calculations in parallel in new
  3580. threads. See "Parallel forms" in the manual for details.
  3581. ** New function 'try-mutex'.
  3582. This function will attempt to lock a mutex but will return immediately
  3583. instead of blocking and indicate failure.
  3584. ** Waiting on a condition variable can have a timeout.
  3585. The function 'wait-condition-variable' now takes a third, optional
  3586. argument that specifies the point in time where the waiting should be
  3587. aborted.
  3588. ** New function 'broadcast-condition-variable'.
  3589. ** New functions 'all-threads' and 'current-thread'.
  3590. ** Signals and system asyncs work better with threads.
  3591. The function 'sigaction' now takes a fourth, optional, argument that
  3592. specifies the thread that the handler should run in. When the
  3593. argument is omitted, the handler will run in the thread that called
  3594. 'sigaction'.
  3595. Likewise, 'system-async-mark' takes a second, optional, argument that
  3596. specifies the thread that the async should run in. When it is
  3597. omitted, the async will run in the thread that called
  3598. 'system-async-mark'.
  3599. C code can use the new functions scm_sigaction_for_thread and
  3600. scm_system_async_mark_for_thread to pass the new thread argument.
  3601. When a thread blocks on a mutex, a condition variable or is waiting
  3602. for IO to be possible, it will still execute system asyncs. This can
  3603. be used to interrupt such a thread by making it execute a 'throw', for
  3604. example.
  3605. ** The function 'system-async' is deprecated.
  3606. You can now pass any zero-argument procedure to 'system-async-mark'.
  3607. The function 'system-async' will just return its argument unchanged
  3608. now.
  3609. ** New functions 'call-with-blocked-asyncs' and
  3610. 'call-with-unblocked-asyncs'
  3611. The expression (call-with-blocked-asyncs PROC) will call PROC and will
  3612. block execution of system asyncs for the current thread by one level
  3613. while PROC runs. Likewise, call-with-unblocked-asyncs will call a
  3614. procedure and will unblock the execution of system asyncs by one
  3615. level for the current thread.
  3616. Only system asyncs are affected by these functions.
  3617. ** The functions 'mask-signals' and 'unmask-signals' are deprecated.
  3618. Use 'call-with-blocked-asyncs' or 'call-with-unblocked-asyncs'
  3619. instead. Those functions are easier to use correctly and can be
  3620. nested.
  3621. ** New function 'unsetenv'.
  3622. ** New macro 'define-syntax-public'.
  3623. It works like 'define-syntax' and also exports the defined macro (but
  3624. only on top-level).
  3625. ** There is support for Infinity and NaNs.
  3626. Following PLT Scheme, Guile can now work with infinite numbers, and
  3627. 'not-a-numbers'.
  3628. There is new syntax for numbers: "+inf.0" (infinity), "-inf.0"
  3629. (negative infinity), "+nan.0" (not-a-number), and "-nan.0" (same as
  3630. "+nan.0"). These numbers are inexact and have no exact counterpart.
  3631. Dividing by an inexact zero returns +inf.0 or -inf.0, depending on the
  3632. sign of the dividend. The infinities are integers, and they answer #t
  3633. for both 'even?' and 'odd?'. The +nan.0 value is not an integer and is
  3634. not '=' to itself, but '+nan.0' is 'eqv?' to itself.
  3635. For example
  3636. (/ 1 0.0)
  3637. => +inf.0
  3638. (/ 0 0.0)
  3639. => +nan.0
  3640. (/ 0)
  3641. ERROR: Numerical overflow
  3642. Two new predicates 'inf?' and 'nan?' can be used to test for the
  3643. special values.
  3644. ** Inexact zero can have a sign.
  3645. Guile can now distinguish between plus and minus inexact zero, if your
  3646. platform supports this, too. The two zeros are equal according to
  3647. '=', but not according to 'eqv?'. For example
  3648. (- 0.0)
  3649. => -0.0
  3650. (= 0.0 (- 0.0))
  3651. => #t
  3652. (eqv? 0.0 (- 0.0))
  3653. => #f
  3654. ** Guile now has exact rationals.
  3655. Guile can now represent fractions such as 1/3 exactly. Computing with
  3656. them is also done exactly, of course:
  3657. (* 1/3 3/2)
  3658. => 1/2
  3659. ** 'floor', 'ceiling', 'round' and 'truncate' now return exact numbers
  3660. for exact arguments.
  3661. For example: (floor 2) now returns an exact 2 where in the past it
  3662. returned an inexact 2.0. Likewise, (floor 5/4) returns an exact 1.
  3663. ** inexact->exact no longer returns only integers.
  3664. Without exact rationals, the closest exact number was always an
  3665. integer, but now inexact->exact returns the fraction that is exactly
  3666. equal to a floating point number. For example:
  3667. (inexact->exact 1.234)
  3668. => 694680242521899/562949953421312
  3669. When you want the old behavior, use 'round' explicitly:
  3670. (inexact->exact (round 1.234))
  3671. => 1
  3672. ** New function 'rationalize'.
  3673. This function finds a simple fraction that is close to a given real
  3674. number. For example (and compare with inexact->exact above):
  3675. (rationalize (inexact->exact 1.234) 1/2000)
  3676. => 58/47
  3677. Note that, as required by R5RS, rationalize returns only then an exact
  3678. result when both its arguments are exact.
  3679. ** 'odd?' and 'even?' work also for inexact integers.
  3680. Previously, (odd? 1.0) would signal an error since only exact integers
  3681. were recognized as integers. Now (odd? 1.0) returns #t, (odd? 2.0)
  3682. returns #f and (odd? 1.5) signals an error.
  3683. ** Guile now has uninterned symbols.
  3684. The new function 'make-symbol' will return an uninterned symbol. This
  3685. is a symbol that is unique and is guaranteed to remain unique.
  3686. However, uninterned symbols can not yet be read back in.
  3687. Use the new function 'symbol-interned?' to check whether a symbol is
  3688. interned or not.
  3689. ** pretty-print has more options.
  3690. The function pretty-print from the (ice-9 pretty-print) module can now
  3691. also be invoked with keyword arguments that control things like
  3692. maximum output width. See the manual for details.
  3693. ** Variables have no longer a special behavior for `equal?'.
  3694. Previously, comparing two variables with `equal?' would recursivly
  3695. compare their values. This is no longer done. Variables are now only
  3696. `equal?' if they are `eq?'.
  3697. ** `(begin)' is now valid.
  3698. You can now use an empty `begin' form. It will yield #<unspecified>
  3699. when evaluated and simply be ignored in a definition context.
  3700. ** Deprecated: procedure->macro
  3701. Change your code to use 'define-macro' or r5rs macros. Also, be aware
  3702. that macro expansion will not be done during evaluation, but prior to
  3703. evaluation.
  3704. ** Soft ports now allow a `char-ready?' procedure
  3705. The vector argument to `make-soft-port' can now have a length of
  3706. either 5 or 6. (Previously the length had to be 5.) The optional 6th
  3707. element is interpreted as an `input-waiting' thunk -- i.e. a thunk
  3708. that returns the number of characters that can be read immediately
  3709. without the soft port blocking.
  3710. ** Deprecated: undefine
  3711. There is no replacement for undefine.
  3712. ** The functions make-keyword-from-dash-symbol and keyword-dash-symbol
  3713. have been discouraged.
  3714. They are relics from a time where a keyword like #:foo was used
  3715. directly as a Tcl option "-foo" and thus keywords were internally
  3716. stored as a symbol with a starting dash. We now store a symbol
  3717. without the dash.
  3718. Use symbol->keyword and keyword->symbol instead.
  3719. ** The `cheap' debug option is now obsolete
  3720. Evaluator trap calls are now unconditionally "cheap" - in other words,
  3721. they pass a debug object to the trap handler rather than a full
  3722. continuation. The trap handler code can capture a full continuation
  3723. by using `call-with-current-continuation' in the usual way, if it so
  3724. desires.
  3725. The `cheap' option is retained for now so as not to break existing
  3726. code which gets or sets it, but setting it now has no effect. It will
  3727. be removed in the next major Guile release.
  3728. ** Evaluator trap calls now support `tweaking'
  3729. `Tweaking' means that the trap handler code can modify the Scheme
  3730. expression that is about to be evaluated (in the case of an
  3731. enter-frame trap) or the value that is being returned (in the case of
  3732. an exit-frame trap). The trap handler code indicates that it wants to
  3733. do this by returning a pair whose car is the symbol 'instead and whose
  3734. cdr is the modified expression or return value.
  3735. * Changes to the C interface
  3736. ** The functions scm_hash_fn_remove_x and scm_hashx_remove_x no longer
  3737. take a 'delete' function argument.
  3738. This argument makes no sense since the delete function is used to
  3739. remove a pair from an alist, and this must not be configurable.
  3740. This is an incompatible change.
  3741. ** The GH interface is now subject to the deprecation mechanism
  3742. The GH interface has been deprecated for quite some time but now it is
  3743. actually removed from Guile when it is configured with
  3744. --disable-deprecated.
  3745. See the manual "Transitioning away from GH" for more information.
  3746. ** A new family of functions for converting between C values and
  3747. Scheme values has been added.
  3748. These functions follow a common naming scheme and are designed to be
  3749. easier to use, thread-safe and more future-proof than the older
  3750. alternatives.
  3751. - int scm_is_* (...)
  3752. These are predicates that return a C boolean: 1 or 0. Instead of
  3753. SCM_NFALSEP, you can now use scm_is_true, for example.
  3754. - <type> scm_to_<type> (SCM val, ...)
  3755. These are functions that convert a Scheme value into an appropriate
  3756. C value. For example, you can use scm_to_int to safely convert from
  3757. a SCM to an int.
  3758. - SCM scm_from_<type> (<type> val, ...)
  3759. These functions convert from a C type to a SCM value; for example,
  3760. scm_from_int for ints.
  3761. There is a huge number of these functions, for numbers, strings,
  3762. symbols, vectors, etc. They are documented in the reference manual in
  3763. the API section together with the types that they apply to.
  3764. ** New functions for dealing with complex numbers in C have been added.
  3765. The new functions are scm_c_make_rectangular, scm_c_make_polar,
  3766. scm_c_real_part, scm_c_imag_part, scm_c_magnitude and scm_c_angle.
  3767. They work like scm_make_rectangular etc but take or return doubles
  3768. directly.
  3769. ** The function scm_make_complex has been discouraged.
  3770. Use scm_c_make_rectangular instead.
  3771. ** The INUM macros have been deprecated.
  3772. A lot of code uses these macros to do general integer conversions,
  3773. although the macros only work correctly with fixnums. Use the
  3774. following alternatives.
  3775. SCM_INUMP -> scm_is_integer or similar
  3776. SCM_NINUMP -> !scm_is_integer or similar
  3777. SCM_MAKINUM -> scm_from_int or similar
  3778. SCM_INUM -> scm_to_int or similar
  3779. SCM_VALIDATE_INUM_* -> Do not use these; scm_to_int, etc. will
  3780. do the validating for you.
  3781. ** The scm_num2<type> and scm_<type>2num functions and scm_make_real
  3782. have been discouraged.
  3783. Use the newer scm_to_<type> and scm_from_<type> functions instead for
  3784. new code. The functions have been discouraged since they don't fit
  3785. the naming scheme.
  3786. ** The 'boolean' macros SCM_FALSEP etc have been discouraged.
  3787. They have strange names, especially SCM_NFALSEP, and SCM_BOOLP
  3788. evaluates its argument twice. Use scm_is_true, etc. instead for new
  3789. code.
  3790. ** The macro SCM_EQ_P has been discouraged.
  3791. Use scm_is_eq for new code, which fits better into the naming
  3792. conventions.
  3793. ** The macros SCM_CONSP, SCM_NCONSP, SCM_NULLP, and SCM_NNULLP have
  3794. been discouraged.
  3795. Use the function scm_is_pair or scm_is_null instead.
  3796. ** The functions scm_round and scm_truncate have been deprecated and
  3797. are now available as scm_c_round and scm_c_truncate, respectively.
  3798. These functions occupy the names that scm_round_number and
  3799. scm_truncate_number should have.
  3800. ** The functions scm_c_string2str, scm_c_substring2str, and
  3801. scm_c_symbol2str have been deprecated.
  3802. Use scm_to_locale_stringbuf or similar instead, maybe together with
  3803. scm_substring.
  3804. ** New functions scm_c_make_string, scm_c_string_length,
  3805. scm_c_string_ref, scm_c_string_set_x, scm_c_substring,
  3806. scm_c_substring_shared, scm_c_substring_copy.
  3807. These are like scm_make_string, scm_length, etc. but are slightly
  3808. easier to use from C.
  3809. ** The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
  3810. SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
  3811. They export too many assumptions about the implementation of strings
  3812. and symbols that are no longer true in the presence of
  3813. mutation-sharing substrings and when Guile switches to some form of
  3814. Unicode.
  3815. When working with strings, it is often best to use the normal string
  3816. functions provided by Guile, such as scm_c_string_ref,
  3817. scm_c_string_set_x, scm_string_append, etc. Be sure to look in the
  3818. manual since many more such functions are now provided than
  3819. previously.
  3820. When you want to convert a SCM string to a C string, use the
  3821. scm_to_locale_string function or similar instead. For symbols, use
  3822. scm_symbol_to_string and then work with that string. Because of the
  3823. new string representation, scm_symbol_to_string does not need to copy
  3824. and is thus quite efficient.
  3825. ** Some string, symbol and keyword functions have been discouraged.
  3826. They don't fit into the uniform naming scheme and are not explicit
  3827. about the character encoding.
  3828. Replace according to the following table:
  3829. scm_allocate_string -> scm_c_make_string
  3830. scm_take_str -> scm_take_locale_stringn
  3831. scm_take0str -> scm_take_locale_string
  3832. scm_mem2string -> scm_from_locale_stringn
  3833. scm_str2string -> scm_from_locale_string
  3834. scm_makfrom0str -> scm_from_locale_string
  3835. scm_mem2symbol -> scm_from_locale_symboln
  3836. scm_mem2uninterned_symbol -> scm_from_locale_stringn + scm_make_symbol
  3837. scm_str2symbol -> scm_from_locale_symbol
  3838. SCM_SYMBOL_HASH -> scm_hashq
  3839. SCM_SYMBOL_INTERNED_P -> scm_symbol_interned_p
  3840. scm_c_make_keyword -> scm_from_locale_keyword
  3841. ** The functions scm_keyword_to_symbol and sym_symbol_to_keyword are
  3842. now also available to C code.
  3843. ** SCM_KEYWORDP and SCM_KEYWORDSYM have been deprecated.
  3844. Use scm_is_keyword and scm_keyword_to_symbol instead, but note that
  3845. the latter returns the true name of the keyword, not the 'dash name',
  3846. as SCM_KEYWORDSYM used to do.
  3847. ** A new way to access arrays in a thread-safe and efficient way has
  3848. been added.
  3849. See the manual, node "Accessing Arrays From C".
  3850. ** The old uniform vector and bitvector implementations have been
  3851. unceremoniously removed.
  3852. This implementation exposed the details of the tagging system of
  3853. Guile. Use the new C API explained in the manual in node "Uniform
  3854. Numeric Vectors" and "Bit Vectors", respectively.
  3855. The following macros are gone: SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
  3856. SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
  3857. SCM_SET_UVECTOR_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
  3858. SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
  3859. SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
  3860. SCM_SET_BITVECTOR_LENGTH, SCM_BITVEC_REF, SCM_BITVEC_SET,
  3861. SCM_BITVEC_CLR.
  3862. ** The macros dealing with vectors have been deprecated.
  3863. Use the new functions scm_is_vector, scm_vector_elements,
  3864. scm_vector_writable_elements, etc, or scm_is_simple_vector,
  3865. SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET, etc instead. See the
  3866. manual for more details.
  3867. Deprecated are SCM_VECTORP, SCM_VELTS, SCM_VECTOR_MAX_LENGTH,
  3868. SCM_VECTOR_LENGTH, SCM_VECTOR_REF, SCM_VECTOR_SET, SCM_WRITABLE_VELTS.
  3869. The following macros have been removed: SCM_VECTOR_BASE,
  3870. SCM_SET_VECTOR_BASE, SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
  3871. SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS.
  3872. ** Some C functions and macros related to arrays have been deprecated.
  3873. Migrate according to the following table:
  3874. scm_make_uve -> scm_make_typed_array, scm_make_u8vector etc.
  3875. scm_make_ra -> scm_make_array
  3876. scm_shap2ra -> scm_make_array
  3877. scm_cvref -> scm_c_generalized_vector_ref
  3878. scm_ra_set_contp -> do not use
  3879. scm_aind -> scm_array_handle_pos
  3880. scm_raprin1 -> scm_display or scm_write
  3881. SCM_ARRAYP -> scm_is_array
  3882. SCM_ARRAY_NDIM -> scm_c_array_rank
  3883. SCM_ARRAY_DIMS -> scm_array_handle_dims
  3884. SCM_ARRAY_CONTP -> do not use
  3885. SCM_ARRAY_MEM -> do not use
  3886. SCM_ARRAY_V -> scm_array_handle_elements or similar
  3887. SCM_ARRAY_BASE -> do not use
  3888. ** SCM_CELL_WORD_LOC has been deprecated.
  3889. Use the new macro SCM_CELL_OBJECT_LOC instead, which returns a pointer
  3890. to a SCM, as opposed to a pointer to a scm_t_bits.
  3891. This was done to allow the correct use of pointers into the Scheme
  3892. heap. Previously, the heap words were of type scm_t_bits and local
  3893. variables and function arguments were of type SCM, making it
  3894. non-standards-conformant to have a pointer that can point to both.
  3895. ** New macros SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, etc.
  3896. These macros should be used instead of SCM_CELL_WORD_2/3 to access the
  3897. second and third words of double smobs. Likewise for
  3898. SCM_SET_SMOB_DATA_2 and SCM_SET_SMOB_DATA_3.
  3899. Also, there is SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS that should be
  3900. used to get and set the 16 exra bits in the zeroth word of a smob.
  3901. And finally, there is SCM_SMOB_OBJECT and SCM_SMOB_SET_OBJECT for
  3902. accesing the first immediate word of a smob as a SCM value, and there
  3903. is SCM_SMOB_OBJECT_LOC for getting a pointer to the first immediate
  3904. smob word. Like wise for SCM_SMOB_OBJECT_2, etc.
  3905. ** New way to deal with non-local exits and re-entries.
  3906. There is a new set of functions that essentially do what
  3907. scm_internal_dynamic_wind does, but in a way that is more convenient
  3908. for C code in some situations. Here is a quick example of how to
  3909. prevent a potential memory leak:
  3910. void
  3911. foo ()
  3912. {
  3913. char *mem;
  3914. scm_dynwind_begin (0);
  3915. mem = scm_malloc (100);
  3916. scm_dynwind_unwind_handler (free, mem, SCM_F_WIND_EXPLICITLY);
  3917. /* MEM would leak if BAR throws an error.
  3918. SCM_DYNWIND_UNWIND_HANDLER frees it nevertheless.
  3919. */
  3920. bar ();
  3921. scm_dynwind_end ();
  3922. /* Because of SCM_F_WIND_EXPLICITLY, MEM will be freed by
  3923. SCM_DYNWIND_END as well.
  3924. */
  3925. }
  3926. For full documentation, see the node "Dynamic Wind" in the manual.
  3927. ** New function scm_dynwind_free
  3928. This function calls 'free' on a given pointer when a dynwind context
  3929. is left. Thus the call to scm_dynwind_unwind_handler above could be
  3930. replaced with simply scm_dynwind_free (mem).
  3931. ** New functions scm_c_call_with_blocked_asyncs and
  3932. scm_c_call_with_unblocked_asyncs
  3933. Like scm_call_with_blocked_asyncs etc. but for C functions.
  3934. ** New functions scm_dynwind_block_asyncs and scm_dynwind_unblock_asyncs
  3935. In addition to scm_c_call_with_blocked_asyncs you can now also use
  3936. scm_dynwind_block_asyncs in a 'dynwind context' (see above). Likewise for
  3937. scm_c_call_with_unblocked_asyncs and scm_dynwind_unblock_asyncs.
  3938. ** The macros SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
  3939. SCM_REALLOW_INTS have been deprecated.
  3940. They do no longer fulfill their original role of blocking signal
  3941. delivery. Depending on what you want to achieve, replace a pair of
  3942. SCM_DEFER_INTS and SCM_ALLOW_INTS with a dynwind context that locks a
  3943. mutex, blocks asyncs, or both. See node "Critical Sections" in the
  3944. manual.
  3945. ** The value 'scm_mask_ints' is no longer writable.
  3946. Previously, you could set scm_mask_ints directly. This is no longer
  3947. possible. Use scm_c_call_with_blocked_asyncs and
  3948. scm_c_call_with_unblocked_asyncs instead.
  3949. ** New way to temporarily set the current input, output or error ports
  3950. C code can now use scm_dynwind_current_<foo>_port in a 'dynwind
  3951. context' (see above). <foo> is one of "input", "output" or "error".
  3952. ** New way to temporarily set fluids
  3953. C code can now use scm_dynwind_fluid in a 'dynwind context' (see
  3954. above) to temporarily set the value of a fluid.
  3955. ** New types scm_t_intmax and scm_t_uintmax.
  3956. On platforms that have them, these types are identical to intmax_t and
  3957. uintmax_t, respectively. On other platforms, they are identical to
  3958. the largest integer types that Guile knows about.
  3959. ** The functions scm_unmemocopy and scm_unmemoize have been removed.
  3960. You should not have used them.
  3961. ** Many public #defines with generic names have been made private.
  3962. #defines with generic names like HAVE_FOO or SIZEOF_FOO have been made
  3963. private or renamed with a more suitable public name.
  3964. ** The macro SCM_TYP16S has been deprecated.
  3965. This macro is not intended for public use.
  3966. ** The macro SCM_SLOPPY_INEXACTP has been deprecated.
  3967. Use scm_is_true (scm_inexact_p (...)) instead.
  3968. ** The macro SCM_SLOPPY_REALP has been deprecated.
  3969. Use scm_is_real instead.
  3970. ** The macro SCM_SLOPPY_COMPLEXP has been deprecated.
  3971. Use scm_is_complex instead.
  3972. ** Some preprocessor defines have been deprecated.
  3973. These defines indicated whether a certain feature was present in Guile
  3974. or not. Going forward, assume that the features are always present.
  3975. The macros are: USE_THREADS, GUILE_ISELECT, READER_EXTENSIONS,
  3976. DEBUG_EXTENSIONS, DYNAMIC_LINKING.
  3977. The following macros have been removed completely: MEMOIZE_LOCALS,
  3978. SCM_RECKLESS, SCM_CAUTIOUS.
  3979. ** The preprocessor define STACK_DIRECTION has been deprecated.
  3980. There should be no need to know about the stack direction for ordinary
  3981. programs.
  3982. ** New function: scm_effective_version
  3983. Returns the "effective" version number. This is just the normal full
  3984. version string without the final micro-version number. See "Changes
  3985. to the distribution" above.
  3986. ** The function scm_call_with_new_thread has a new prototype.
  3987. Instead of taking a list with the thunk and handler, these two
  3988. arguments are now passed directly:
  3989. SCM scm_call_with_new_thread (SCM thunk, SCM handler);
  3990. This is an incompatible change.
  3991. ** New snarfer macro SCM_DEFINE_PUBLIC.
  3992. This is like SCM_DEFINE, but also calls scm_c_export for the defined
  3993. function in the init section.
  3994. ** The snarfer macro SCM_SNARF_INIT is now officially supported.
  3995. ** Garbage collector rewrite.
  3996. The garbage collector is cleaned up a lot, and now uses lazy
  3997. sweeping. This is reflected in the output of (gc-stats); since cells
  3998. are being freed when they are allocated, the cells-allocated field
  3999. stays roughly constant.
  4000. For malloc related triggers, the behavior is changed. It uses the same
  4001. heuristic as the cell-triggered collections. It may be tuned with the
  4002. environment variables GUILE_MIN_YIELD_MALLOC. This is the percentage
  4003. for minimum yield of malloc related triggers. The default is 40.
  4004. GUILE_INIT_MALLOC_LIMIT sets the initial trigger for doing a GC. The
  4005. default is 200 kb.
  4006. Debugging operations for the freelist have been deprecated, along with
  4007. the C variables that control garbage collection. The environment
  4008. variables GUILE_MAX_SEGMENT_SIZE, GUILE_INIT_SEGMENT_SIZE_2,
  4009. GUILE_INIT_SEGMENT_SIZE_1, and GUILE_MIN_YIELD_2 should be used.
  4010. For understanding the memory usage of a GUILE program, the routine
  4011. gc-live-object-stats returns an alist containing the number of live
  4012. objects for every type.
  4013. ** The function scm_definedp has been renamed to scm_defined_p
  4014. The name scm_definedp is deprecated.
  4015. ** The struct scm_cell type has been renamed to scm_t_cell
  4016. This is in accordance to Guile's naming scheme for types. Note that
  4017. the name scm_cell is now used for a function that allocates and
  4018. initializes a new cell (see below).
  4019. ** New functions for memory management
  4020. A new set of functions for memory management has been added since the
  4021. old way (scm_must_malloc, scm_must_free, etc) was error prone and
  4022. indeed, Guile itself contained some long standing bugs that could
  4023. cause aborts in long running programs.
  4024. The new functions are more symmetrical and do not need cooperation
  4025. from smob free routines, among other improvements.
  4026. The new functions are scm_malloc, scm_realloc, scm_calloc, scm_strdup,
  4027. scm_strndup, scm_gc_malloc, scm_gc_calloc, scm_gc_realloc,
  4028. scm_gc_free, scm_gc_register_collectable_memory, and
  4029. scm_gc_unregister_collectable_memory. Refer to the manual for more
  4030. details and for upgrading instructions.
  4031. The old functions for memory management have been deprecated. They
  4032. are: scm_must_malloc, scm_must_realloc, scm_must_free,
  4033. scm_must_strdup, scm_must_strndup, scm_done_malloc, scm_done_free.
  4034. ** Declarations of exported features are marked with SCM_API.
  4035. Every declaration of a feature that belongs to the exported Guile API
  4036. has been marked by adding the macro "SCM_API" to the start of the
  4037. declaration. This macro can expand into different things, the most
  4038. common of which is just "extern" for Unix platforms. On Win32, it can
  4039. be used to control which symbols are exported from a DLL.
  4040. If you `#define SCM_IMPORT' before including <libguile.h>, SCM_API
  4041. will expand into "__declspec (dllimport) extern", which is needed for
  4042. linking to the Guile DLL in Windows.
  4043. There are also SCM_RL_IMPORT, SCM_SRFI1314_IMPORT, and
  4044. SCM_SRFI4_IMPORT, for the corresponding libraries.
  4045. ** SCM_NEWCELL and SCM_NEWCELL2 have been deprecated.
  4046. Use the new functions scm_cell and scm_double_cell instead. The old
  4047. macros had problems because with them allocation and initialization
  4048. was separated and the GC could sometimes observe half initialized
  4049. cells. Only careful coding by the user of SCM_NEWCELL and
  4050. SCM_NEWCELL2 could make this safe and efficient.
  4051. ** CHECK_ENTRY, CHECK_APPLY and CHECK_EXIT have been deprecated.
  4052. Use the variables scm_check_entry_p, scm_check_apply_p and scm_check_exit_p
  4053. instead.
  4054. ** SRCBRKP has been deprecated.
  4055. Use scm_c_source_property_breakpoint_p instead.
  4056. ** Deprecated: scm_makmacro
  4057. Change your code to use either scm_makmmacro or to define macros in
  4058. Scheme, using 'define-macro'.
  4059. ** New function scm_c_port_for_each.
  4060. This function is like scm_port_for_each but takes a pointer to a C
  4061. function as the callback instead of a SCM value.
  4062. ** The names scm_internal_select, scm_thread_sleep, and
  4063. scm_thread_usleep have been discouraged.
  4064. Use scm_std_select, scm_std_sleep, scm_std_usleep instead.
  4065. ** The GC can no longer be blocked.
  4066. The global flags scm_gc_heap_lock and scm_block_gc have been removed.
  4067. The GC can now run (partially) concurrently with other code and thus
  4068. blocking it is not well defined.
  4069. ** Many definitions have been removed that were previously deprecated.
  4070. scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify, s_t_ify,
  4071. scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify, scm_m_0_ify, s_1_ify,
  4072. scm_m_1_ify, scm_debug_newcell, scm_debug_newcell2,
  4073. scm_tc16_allocated, SCM_SET_SYMBOL_HASH, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
  4074. SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY, SCM_GC_SET_ALLOCATED,
  4075. scm_debug_newcell, scm_debug_newcell2, SCM_HUP_SIGNAL, SCM_INT_SIGNAL,
  4076. SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL,
  4077. SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG,
  4078. SCM_NUM_SIGS, scm_top_level_lookup_closure_var,
  4079. *top-level-lookup-closure*, scm_system_transformer, scm_eval_3,
  4080. scm_eval2, root_module_lookup_closure, SCM_SLOPPY_STRINGP,
  4081. SCM_RWSTRINGP, scm_read_only_string_p, scm_make_shared_substring,
  4082. scm_tc7_substring, sym_huh, SCM_VARVCELL, SCM_UDVARIABLEP,
  4083. SCM_DEFVARIABLEP, scm_mkbig, scm_big2inum, scm_adjbig, scm_normbig,
  4084. scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl, SCM_FIXNUM_BIT,
  4085. SCM_SETCHARS, SCM_SLOPPY_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET,
  4086. SCM_LENGTH_MAX, SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH,
  4087. SCM_ROCHARS, SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR,
  4088. scm_sym2vcell, scm_intern, scm_intern0, scm_sysintern, scm_sysintern0,
  4089. scm_sysintern0_no_module_lookup, scm_init_symbols_deprecated,
  4090. scm_vector_set_length_x, scm_contregs, scm_debug_info,
  4091. scm_debug_frame, SCM_DSIDEVAL, SCM_CONST_LONG, SCM_VCELL,
  4092. SCM_GLOBAL_VCELL, SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT,
  4093. SCM_HUGE_LENGTH, SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
  4094. SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
  4095. SCM_VALIDATE_RWSTRING, DIGITS, scm_small_istr2int, scm_istr2int,
  4096. scm_istr2flo, scm_istring2number, scm_istr2int, scm_istr2flo,
  4097. scm_istring2number, scm_vtable_index_vcell, scm_si_vcell, SCM_ECONSP,
  4098. SCM_NECONSP, SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL,
  4099. SCM_GLOC_VAL_LOC, scm_make_gloc, scm_gloc_p, scm_tc16_variable,
  4100. SCM_CHARS, SCM_LENGTH, SCM_SET_STRING_CHARS, SCM_SET_STRING_LENGTH.
  4101. * Changes to bundled modules
  4102. ** (ice-9 debug)
  4103. Using the (ice-9 debug) module no longer automatically switches Guile
  4104. to use the debugging evaluator. If you want to switch to the
  4105. debugging evaluator (which is needed for backtrace information if you
  4106. hit an error), please add an explicit "(debug-enable 'debug)" to your
  4107. code just after the code to use (ice-9 debug).
  4108. Changes since Guile 1.4:
  4109. * Changes to the distribution
  4110. ** A top-level TODO file is included.
  4111. ** Guile now uses a versioning scheme similar to that of the Linux kernel.
  4112. Guile now always uses three numbers to represent the version,
  4113. i.e. "1.6.5". The first number, 1, is the major version number, the
  4114. second number, 6, is the minor version number, and the third number,
  4115. 5, is the micro version number. Changes in major version number
  4116. indicate major changes in Guile.
  4117. Minor version numbers that are even denote stable releases, and odd
  4118. minor version numbers denote development versions (which may be
  4119. unstable). The micro version number indicates a minor sub-revision of
  4120. a given MAJOR.MINOR release.
  4121. In keeping with the new scheme, (minor-version) and scm_minor_version
  4122. no longer return everything but the major version number. They now
  4123. just return the minor version number. Two new functions
  4124. (micro-version) and scm_micro_version have been added to report the
  4125. micro version number.
  4126. In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
  4127. ** New preprocessor definitions are available for checking versions.
  4128. version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
  4129. SCM_MICRO_VERSION to the appropriate integer values.
  4130. ** Guile now actively warns about deprecated features.
  4131. The new configure option `--enable-deprecated=LEVEL' and the
  4132. environment variable GUILE_WARN_DEPRECATED control this mechanism.
  4133. See INSTALL and README for more information.
  4134. ** Guile is much more likely to work on 64-bit architectures.
  4135. Guile now compiles and passes "make check" with only two UNRESOLVED GC
  4136. cases on Alpha and ia64 based machines now. Thanks to John Goerzen
  4137. for the use of a test machine, and thanks to Stefan Jahn for ia64
  4138. patches.
  4139. ** New functions: setitimer and getitimer.
  4140. These implement a fairly direct interface to the libc functions of the
  4141. same name.
  4142. ** The #. reader extension is now disabled by default.
  4143. For safety reasons, #. evaluation is disabled by default. To
  4144. re-enable it, set the fluid read-eval? to #t. For example:
  4145. (fluid-set! read-eval? #t)
  4146. but make sure you realize the potential security risks involved. With
  4147. read-eval? enabled, reading a data file from an untrusted source can
  4148. be dangerous.
  4149. ** New SRFI modules have been added:
  4150. SRFI-0 `cond-expand' is now supported in Guile, without requiring
  4151. using a module.
  4152. (srfi srfi-1) is a library containing many useful pair- and list-processing
  4153. procedures.
  4154. (srfi srfi-2) exports and-let*.
  4155. (srfi srfi-4) implements homogeneous numeric vector datatypes.
  4156. (srfi srfi-6) is a dummy module for now, since guile already provides
  4157. all of the srfi-6 procedures by default: open-input-string,
  4158. open-output-string, get-output-string.
  4159. (srfi srfi-8) exports receive.
  4160. (srfi srfi-9) exports define-record-type.
  4161. (srfi srfi-10) exports define-reader-ctor and implements the reader
  4162. extension #,().
  4163. (srfi srfi-11) exports let-values and let*-values.
  4164. (srfi srfi-13) implements the SRFI String Library.
  4165. (srfi srfi-14) implements the SRFI Character-Set Library.
  4166. (srfi srfi-17) implements setter and getter-with-setter and redefines
  4167. some accessor procedures as procedures with getters. (such as car,
  4168. cdr, vector-ref etc.)
  4169. (srfi srfi-19) implements the SRFI Time/Date Library.
  4170. ** New scripts / "executable modules"
  4171. Subdirectory "scripts" contains Scheme modules that are packaged to
  4172. also be executable as scripts. At this time, these scripts are available:
  4173. display-commentary
  4174. doc-snarf
  4175. generate-autoload
  4176. punify
  4177. read-scheme-source
  4178. use2dot
  4179. See README there for more info.
  4180. These scripts can be invoked from the shell with the new program
  4181. "guile-tools", which keeps track of installation directory for you.
  4182. For example:
  4183. $ guile-tools display-commentary srfi/*.scm
  4184. guile-tools is copied to the standard $bindir on "make install".
  4185. ** New module (ice-9 stack-catch):
  4186. stack-catch is like catch, but saves the current state of the stack in
  4187. the fluid the-last-stack. This fluid can be useful when using the
  4188. debugger and when re-throwing an error.
  4189. ** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
  4190. This has been done to prevent problems on lesser operating systems
  4191. that can't tolerate `*'s in file names. The exported macro continues
  4192. to be named `and-let*', of course.
  4193. On systems that support it, there is also a compatibility module named
  4194. (ice-9 and-let*). It will go away in the next release.
  4195. ** New modules (oop goops) etc.:
  4196. (oop goops)
  4197. (oop goops describe)
  4198. (oop goops save)
  4199. (oop goops active-slot)
  4200. (oop goops composite-slot)
  4201. The Guile Object Oriented Programming System (GOOPS) has been
  4202. integrated into Guile. For further information, consult the GOOPS
  4203. manual and tutorial in the `doc' directory.
  4204. ** New module (ice-9 rdelim).
  4205. This exports the following procedures which were previously defined
  4206. in the default environment:
  4207. read-line read-line! read-delimited read-delimited! %read-delimited!
  4208. %read-line write-line
  4209. For backwards compatibility the definitions are still imported into the
  4210. default environment in this version of Guile. However you should add:
  4211. (use-modules (ice-9 rdelim))
  4212. to any program which uses the definitions, since this may change in
  4213. future.
  4214. Alternatively, if guile-scsh is installed, the (scsh rdelim) module
  4215. can be used for similar functionality.
  4216. ** New module (ice-9 rw)
  4217. This is a subset of the (scsh rw) module from guile-scsh. Currently
  4218. it defines two procedures:
  4219. *** New function: read-string!/partial str [port_or_fdes [start [end]]]
  4220. Read characters from a port or file descriptor into a string STR.
  4221. A port must have an underlying file descriptor -- a so-called
  4222. fport. This procedure is scsh-compatible and can efficiently read
  4223. large strings.
  4224. *** New function: write-string/partial str [port_or_fdes [start [end]]]
  4225. Write characters from a string STR to a port or file descriptor.
  4226. A port must have an underlying file descriptor -- a so-called
  4227. fport. This procedure is mostly compatible and can efficiently
  4228. write large strings.
  4229. ** New module (ice-9 match)
  4230. This module includes Andrew K. Wright's pattern matcher. See
  4231. ice-9/match.scm for brief description or
  4232. http://www.star-lab.com/wright/code.html
  4233. for complete documentation.
  4234. ** New module (ice-9 buffered-input)
  4235. This module provides procedures to construct an input port from an
  4236. underlying source of input that reads and returns its input in chunks.
  4237. The underlying input source is a Scheme procedure, specified by the
  4238. caller, which the port invokes whenever it needs more input.
  4239. This is useful when building an input port whose back end is Readline
  4240. or a UI element such as the GtkEntry widget.
  4241. ** Documentation
  4242. The reference and tutorial documentation that was previously
  4243. distributed separately, as `guile-doc', is now included in the core
  4244. Guile distribution. The documentation consists of the following
  4245. manuals.
  4246. - The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
  4247. to using Guile.
  4248. - The Guile Reference Manual (guile.texi) contains (or is intended to
  4249. contain) reference documentation on all aspects of Guile.
  4250. - The GOOPS Manual (goops.texi) contains both tutorial-style and
  4251. reference documentation for using GOOPS, Guile's Object Oriented
  4252. Programming System.
  4253. - The Revised^5 Report on the Algorithmic Language Scheme
  4254. (r5rs.texi).
  4255. See the README file in the `doc' directory for more details.
  4256. ** There are a couple of examples in the examples/ directory now.
  4257. * Changes to the stand-alone interpreter
  4258. ** New command line option `--use-srfi'
  4259. Using this option, SRFI modules can be loaded on startup and be
  4260. available right from the beginning. This makes programming portable
  4261. Scheme programs easier.
  4262. The option `--use-srfi' expects a comma-separated list of numbers,
  4263. each representing a SRFI number to be loaded into the interpreter
  4264. before starting evaluating a script file or the REPL. Additionally,
  4265. the feature identifier for the loaded SRFIs is recognized by
  4266. `cond-expand' when using this option.
  4267. Example:
  4268. $ guile --use-srfi=8,13
  4269. guile> (receive (x z) (values 1 2) (+ 1 2))
  4270. 3
  4271. guile> (string-pad "bla" 20)
  4272. " bla"
  4273. ** Guile now always starts up in the `(guile-user)' module.
  4274. Previously, scripts executed via the `-s' option would run in the
  4275. `(guile)' module and the repl would run in the `(guile-user)' module.
  4276. Now every user action takes place in the `(guile-user)' module by
  4277. default.
  4278. * Changes to Scheme functions and syntax
  4279. ** Character classifiers work for non-ASCII characters.
  4280. The predicates `char-alphabetic?', `char-numeric?',
  4281. `char-whitespace?', `char-lower?', `char-upper?' and `char-is-both?'
  4282. no longer check whether their arguments are ASCII characters.
  4283. Previously, a character would only be considered alphabetic when it
  4284. was also ASCII, for example.
  4285. ** Previously deprecated Scheme functions have been removed:
  4286. tag - no replacement.
  4287. fseek - replaced by seek.
  4288. list* - replaced by cons*.
  4289. ** It's now possible to create modules with controlled environments
  4290. Example:
  4291. (use-modules (ice-9 safe))
  4292. (define m (make-safe-module))
  4293. ;;; m will now be a module containing only a safe subset of R5RS
  4294. (eval '(+ 1 2) m) --> 3
  4295. (eval 'load m) --> ERROR: Unbound variable: load
  4296. ** Evaluation of "()", the empty list, is now an error.
  4297. Previously, the expression "()" evaluated to the empty list. This has
  4298. been changed to signal a "missing expression" error. The correct way
  4299. to write the empty list as a literal constant is to use quote: "'()".
  4300. ** New concept of `Guile Extensions'.
  4301. A Guile Extension is just a ordinary shared library that can be linked
  4302. at run-time. We found it advantageous to give this simple concept a
  4303. dedicated name to distinguish the issues related to shared libraries
  4304. from the issues related to the module system.
  4305. *** New function: load-extension
  4306. Executing (load-extension lib init) is mostly equivalent to
  4307. (dynamic-call init (dynamic-link lib))
  4308. except when scm_register_extension has been called previously.
  4309. Whenever appropriate, you should use `load-extension' instead of
  4310. dynamic-link and dynamic-call.
  4311. *** New C function: scm_c_register_extension
  4312. This function registers a initialization function for use by
  4313. `load-extension'. Use it when you don't want specific extensions to
  4314. be loaded as shared libraries (for example on platforms that don't
  4315. support dynamic linking).
  4316. ** Auto-loading of compiled-code modules is deprecated.
  4317. Guile used to be able to automatically find and link a shared
  4318. library to satisfy requests for a module. For example, the module
  4319. `(foo bar)' could be implemented by placing a shared library named
  4320. "foo/libbar.so" (or with a different extension) in a directory on the
  4321. load path of Guile.
  4322. This has been found to be too tricky, and is no longer supported. The
  4323. shared libraries are now called "extensions". You should now write a
  4324. small Scheme file that calls `load-extension' to load the shared
  4325. library and initialize it explicitly.
  4326. The shared libraries themselves should be installed in the usual
  4327. places for shared libraries, with names like "libguile-foo-bar".
  4328. For example, place this into a file "foo/bar.scm"
  4329. (define-module (foo bar))
  4330. (load-extension "libguile-foo-bar" "foobar_init")
  4331. ** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
  4332. `eval' is now R5RS, that is it takes two arguments.
  4333. The second argument is an environment specifier, i.e. either
  4334. (scheme-report-environment 5)
  4335. (null-environment 5)
  4336. (interaction-environment)
  4337. or
  4338. any module.
  4339. ** The module system has been made more disciplined.
  4340. The function `eval' will save and restore the current module around
  4341. the evaluation of the specified expression. While this expression is
  4342. evaluated, `(current-module)' will now return the right module, which
  4343. is the module specified as the second argument to `eval'.
  4344. A consequence of this change is that `eval' is not particularly
  4345. useful when you want allow the evaluated code to change what module is
  4346. designated as the current module and have this change persist from one
  4347. call to `eval' to the next. The read-eval-print-loop is an example
  4348. where `eval' is now inadequate. To compensate, there is a new
  4349. function `primitive-eval' that does not take a module specifier and
  4350. that does not save/restore the current module. You should use this
  4351. function together with `set-current-module', `current-module', etc
  4352. when you want to have more control over the state that is carried from
  4353. one eval to the next.
  4354. Additionally, it has been made sure that forms that are evaluated at
  4355. the top level are always evaluated with respect to the current module.
  4356. Previously, subforms of top-level forms such as `begin', `case',
  4357. etc. did not respect changes to the current module although these
  4358. subforms are at the top-level as well.
  4359. To prevent strange behavior, the forms `define-module',
  4360. `use-modules', `use-syntax', and `export' have been restricted to only
  4361. work on the top level. The forms `define-public' and
  4362. `defmacro-public' only export the new binding on the top level. They
  4363. behave just like `define' and `defmacro', respectively, when they are
  4364. used in a lexical environment.
  4365. Also, `export' will no longer silently re-export bindings imported
  4366. from a used module. It will emit a `deprecation' warning and will
  4367. cease to perform any re-export in the next version. If you actually
  4368. want to re-export bindings, use the new `re-export' in place of
  4369. `export'. The new `re-export' will not make copies of variables when
  4370. rexporting them, as `export' did wrongly.
  4371. ** Module system now allows selection and renaming of imported bindings
  4372. Previously, when using `use-modules' or the `#:use-module' clause in
  4373. the `define-module' form, all the bindings (association of symbols to
  4374. values) for imported modules were added to the "current module" on an
  4375. as-is basis. This has been changed to allow finer control through two
  4376. new facilities: selection and renaming.
  4377. You can now select which of the imported module's bindings are to be
  4378. visible in the current module by using the `:select' clause. This
  4379. clause also can be used to rename individual bindings. For example:
  4380. ;; import all bindings no questions asked
  4381. (use-modules (ice-9 common-list))
  4382. ;; import four bindings, renaming two of them;
  4383. ;; the current module sees: every some zonk-y zonk-n
  4384. (use-modules ((ice-9 common-list)
  4385. :select (every some
  4386. (remove-if . zonk-y)
  4387. (remove-if-not . zonk-n))))
  4388. You can also programmatically rename all selected bindings using the
  4389. `:renamer' clause, which specifies a proc that takes a symbol and
  4390. returns another symbol. Because it is common practice to use a prefix,
  4391. we now provide the convenience procedure `symbol-prefix-proc'. For
  4392. example:
  4393. ;; import four bindings, renaming two of them specifically,
  4394. ;; and all four w/ prefix "CL:";
  4395. ;; the current module sees: CL:every CL:some CL:zonk-y CL:zonk-n
  4396. (use-modules ((ice-9 common-list)
  4397. :select (every some
  4398. (remove-if . zonk-y)
  4399. (remove-if-not . zonk-n))
  4400. :renamer (symbol-prefix-proc 'CL:)))
  4401. ;; import four bindings, renaming two of them specifically,
  4402. ;; and all four by upcasing.
  4403. ;; the current module sees: EVERY SOME ZONK-Y ZONK-N
  4404. (define (upcase-symbol sym)
  4405. (string->symbol (string-upcase (symbol->string sym))))
  4406. (use-modules ((ice-9 common-list)
  4407. :select (every some
  4408. (remove-if . zonk-y)
  4409. (remove-if-not . zonk-n))
  4410. :renamer upcase-symbol))
  4411. Note that programmatic renaming is done *after* individual renaming.
  4412. Also, the above examples show `use-modules', but the same facilities are
  4413. available for the `#:use-module' clause of `define-module'.
  4414. See manual for more info.
  4415. ** The semantics of guardians have changed.
  4416. The changes are for the most part compatible. An important criterion
  4417. was to keep the typical usage of guardians as simple as before, but to
  4418. make the semantics safer and (as a result) more useful.
  4419. *** All objects returned from guardians are now properly alive.
  4420. It is now guaranteed that any object referenced by an object returned
  4421. from a guardian is alive. It's now impossible for a guardian to
  4422. return a "contained" object before its "containing" object.
  4423. One incompatible (but probably not very important) change resulting
  4424. from this is that it is no longer possible to guard objects that
  4425. indirectly reference themselves (i.e. are parts of cycles). If you do
  4426. so accidentally, you'll get a warning.
  4427. *** There are now two types of guardians: greedy and sharing.
  4428. If you call (make-guardian #t) or just (make-guardian), you'll get a
  4429. greedy guardian, and for (make-guardian #f) a sharing guardian.
  4430. Greedy guardians are the default because they are more "defensive".
  4431. You can only greedily guard an object once. If you guard an object
  4432. more than once, once in a greedy guardian and the rest of times in
  4433. sharing guardians, then it is guaranteed that the object won't be
  4434. returned from sharing guardians as long as it is greedily guarded
  4435. and/or alive.
  4436. Guardians returned by calls to `make-guardian' can now take one more
  4437. optional parameter, which says whether to throw an error in case an
  4438. attempt is made to greedily guard an object that is already greedily
  4439. guarded. The default is true, i.e. throw an error. If the parameter
  4440. is false, the guardian invocation returns #t if guarding was
  4441. successful and #f if it wasn't.
  4442. Also, since greedy guarding is, in effect, a side-effecting operation
  4443. on objects, a new function is introduced: `destroy-guardian!'.
  4444. Invoking this function on a guardian renders it unoperative and, if
  4445. the guardian is greedy, clears the "greedily guarded" property of the
  4446. objects that were guarded by it, thus undoing the side effect.
  4447. Note that all this hair is hardly very important, since guardian
  4448. objects are usually permanent.
  4449. ** Continuations created by call-with-current-continuation now accept
  4450. any number of arguments, as required by R5RS.
  4451. ** New function `issue-deprecation-warning'
  4452. This function is used to display the deprecation messages that are
  4453. controlled by GUILE_WARN_DEPRECATION as explained in the README.
  4454. (define (id x)
  4455. (issue-deprecation-warning "`id' is deprecated. Use `identity' instead.")
  4456. (identity x))
  4457. guile> (id 1)
  4458. ;; `id' is deprecated. Use `identity' instead.
  4459. 1
  4460. guile> (id 1)
  4461. 1
  4462. ** New syntax `begin-deprecated'
  4463. When deprecated features are included (as determined by the configure
  4464. option --enable-deprecated), `begin-deprecated' is identical to
  4465. `begin'. When deprecated features are excluded, it always evaluates
  4466. to `#f', ignoring the body forms.
  4467. ** New function `make-object-property'
  4468. This function returns a new `procedure with setter' P that can be used
  4469. to attach a property to objects. When calling P as
  4470. (set! (P obj) val)
  4471. where `obj' is any kind of object, it attaches `val' to `obj' in such
  4472. a way that it can be retrieved by calling P as
  4473. (P obj)
  4474. This function will replace procedure properties, symbol properties and
  4475. source properties eventually.
  4476. ** Module (ice-9 optargs) now uses keywords instead of `#&'.
  4477. Instead of #&optional, #&key, etc you should now use #:optional,
  4478. #:key, etc. Since #:optional is a keyword, you can write it as just
  4479. :optional when (read-set! keywords 'prefix) is active.
  4480. The old reader syntax `#&' is still supported, but deprecated. It
  4481. will be removed in the next release.
  4482. ** New define-module option: pure
  4483. Tells the module system not to include any bindings from the root
  4484. module.
  4485. Example:
  4486. (define-module (totally-empty-module)
  4487. :pure)
  4488. ** New define-module option: export NAME1 ...
  4489. Export names NAME1 ...
  4490. This option is required if you want to be able to export bindings from
  4491. a module which doesn't import one of `define-public' or `export'.
  4492. Example:
  4493. (define-module (foo)
  4494. :pure
  4495. :use-module (ice-9 r5rs)
  4496. :export (bar))
  4497. ;;; Note that we're pure R5RS below this point!
  4498. (define (bar)
  4499. ...)
  4500. ** New function: object->string OBJ
  4501. Return a Scheme string obtained by printing a given object.
  4502. ** New function: port? X
  4503. Returns a boolean indicating whether X is a port. Equivalent to
  4504. `(or (input-port? X) (output-port? X))'.
  4505. ** New function: file-port?
  4506. Determines whether a given object is a port that is related to a file.
  4507. ** New function: port-for-each proc
  4508. Apply PROC to each port in the Guile port table in turn. The return
  4509. value is unspecified. More specifically, PROC is applied exactly once
  4510. to every port that exists in the system at the time PORT-FOR-EACH is
  4511. invoked. Changes to the port table while PORT-FOR-EACH is running
  4512. have no effect as far as PORT-FOR-EACH is concerned.
  4513. ** New function: dup2 oldfd newfd
  4514. A simple wrapper for the `dup2' system call. Copies the file
  4515. descriptor OLDFD to descriptor number NEWFD, replacing the
  4516. previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
  4517. Unlike for dup->fdes or primitive-move->fdes, no attempt is made
  4518. to move away ports which are using NEWFD. The return value is
  4519. unspecified.
  4520. ** New function: close-fdes fd
  4521. A simple wrapper for the `close' system call. Close file
  4522. descriptor FD, which must be an integer. Unlike close (*note
  4523. close: Ports and File Descriptors.), the file descriptor will be
  4524. closed even if a port is using it. The return value is
  4525. unspecified.
  4526. ** New function: crypt password salt
  4527. Encrypts `password' using the standard unix password encryption
  4528. algorithm.
  4529. ** New function: chroot path
  4530. Change the root directory of the running process to `path'.
  4531. ** New functions: getlogin, cuserid
  4532. Return the login name or the user name of the current effective user
  4533. id, respectively.
  4534. ** New functions: getpriority which who, setpriority which who prio
  4535. Get or set the priority of the running process.
  4536. ** New function: getpass prompt
  4537. Read a password from the terminal, first displaying `prompt' and
  4538. disabling echoing.
  4539. ** New function: flock file operation
  4540. Set/remove an advisory shared or exclusive lock on `file'.
  4541. ** New functions: sethostname name, gethostname
  4542. Set or get the hostname of the machine the current process is running
  4543. on.
  4544. ** New function: mkstemp! tmpl
  4545. mkstemp creates a new unique file in the file system and returns a
  4546. new buffered port open for reading and writing to the file. TMPL
  4547. is a string specifying where the file should be created: it must
  4548. end with `XXXXXX' and will be changed in place to return the name
  4549. of the temporary file.
  4550. ** New function: open-input-string string
  4551. Return an input string port which delivers the characters from
  4552. `string'. This procedure, together with `open-output-string' and
  4553. `get-output-string' implements SRFI-6.
  4554. ** New function: open-output-string
  4555. Return an output string port which collects all data written to it.
  4556. The data can then be retrieved by `get-output-string'.
  4557. ** New function: get-output-string
  4558. Return the contents of an output string port.
  4559. ** New function: identity
  4560. Return the argument.
  4561. ** socket, connect, accept etc., now have support for IPv6. IPv6 addresses
  4562. are represented in Scheme as integers with normal host byte ordering.
  4563. ** New function: inet-pton family address
  4564. Convert a printable string network address into an integer. Note that
  4565. unlike the C version of this function, the result is an integer with
  4566. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  4567. e.g.,
  4568. (inet-pton AF_INET "127.0.0.1") => 2130706433
  4569. (inet-pton AF_INET6 "::1") => 1
  4570. ** New function: inet-ntop family address
  4571. Convert an integer network address into a printable string. Note that
  4572. unlike the C version of this function, the input is an integer with
  4573. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  4574. e.g.,
  4575. (inet-ntop AF_INET 2130706433) => "127.0.0.1"
  4576. (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
  4577. ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
  4578. ** Deprecated: id
  4579. Use `identity' instead.
  4580. ** Deprecated: -1+
  4581. Use `1-' instead.
  4582. ** Deprecated: return-it
  4583. Do without it.
  4584. ** Deprecated: string-character-length
  4585. Use `string-length' instead.
  4586. ** Deprecated: flags
  4587. Use `logior' instead.
  4588. ** Deprecated: close-all-ports-except.
  4589. This was intended for closing ports in a child process after a fork,
  4590. but it has the undesirable side effect of flushing buffers.
  4591. port-for-each is more flexible.
  4592. ** The (ice-9 popen) module now attempts to set up file descriptors in
  4593. the child process from the current Scheme ports, instead of using the
  4594. current values of file descriptors 0, 1, and 2 in the parent process.
  4595. ** Removed function: builtin-weak-bindings
  4596. There is no such concept as a weak binding any more.
  4597. ** Removed constants: bignum-radix, scm-line-incrementors
  4598. ** define-method: New syntax mandatory.
  4599. The new method syntax is now mandatory:
  4600. (define-method (NAME ARG-SPEC ...) BODY ...)
  4601. (define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
  4602. ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
  4603. REST-ARG ::= ARG-NAME
  4604. If you have old code using the old syntax, import
  4605. (oop goops old-define-method) before (oop goops) as in:
  4606. (use-modules (oop goops old-define-method) (oop goops))
  4607. ** Deprecated function: builtin-variable
  4608. Removed function: builtin-bindings
  4609. There is no longer a distinction between builtin or other variables.
  4610. Use module system operations for all variables.
  4611. ** Lazy-catch handlers are no longer allowed to return.
  4612. That is, a call to `throw', `error', etc is now guaranteed to not
  4613. return.
  4614. ** Bugfixes for (ice-9 getopt-long)
  4615. This module is now tested using test-suite/tests/getopt-long.test.
  4616. The following bugs have been fixed:
  4617. *** Parsing for options that are specified to have `optional' args now checks
  4618. if the next element is an option instead of unconditionally taking it as the
  4619. option arg.
  4620. *** An error is now thrown for `--opt=val' when the option description
  4621. does not specify `(value #t)' or `(value optional)'. This condition used to
  4622. be accepted w/o error, contrary to the documentation.
  4623. *** The error message for unrecognized options is now more informative.
  4624. It used to be "not a record", an artifact of the implementation.
  4625. *** The error message for `--opt' terminating the arg list (no value), when
  4626. `(value #t)' is specified, is now more informative. It used to be "not enough
  4627. args".
  4628. *** "Clumped" single-char args now preserve trailing string, use it as arg.
  4629. The expansion used to be like so:
  4630. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "--xyz")
  4631. Note that the "5d" is dropped. Now it is like so:
  4632. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "5d" "--xyz")
  4633. This enables single-char options to have adjoining arguments as long as their
  4634. constituent characters are not potential single-char options.
  4635. ** (ice-9 session) procedure `arity' now works with (ice-9 optargs) `lambda*'
  4636. The `lambda*' and derivative forms in (ice-9 optargs) now set a procedure
  4637. property `arglist', which can be retrieved by `arity'. The result is that
  4638. `arity' can give more detailed information than before:
  4639. Before:
  4640. guile> (use-modules (ice-9 optargs))
  4641. guile> (define* (foo #:optional a b c) a)
  4642. guile> (arity foo)
  4643. 0 or more arguments in `lambda*:G0'.
  4644. After:
  4645. guile> (arity foo)
  4646. 3 optional arguments: `a', `b' and `c'.
  4647. guile> (define* (bar a b #:key c d #:allow-other-keys) a)
  4648. guile> (arity bar)
  4649. 2 required arguments: `a' and `b', 2 keyword arguments: `c'
  4650. and `d', other keywords allowed.
  4651. guile> (define* (baz a b #:optional c #:rest r) a)
  4652. guile> (arity baz)
  4653. 2 required arguments: `a' and `b', 1 optional argument: `c',
  4654. the rest in `r'.
  4655. * Changes to the C interface
  4656. ** Types have been renamed from scm_*_t to scm_t_*.
  4657. This has been done for POSIX sake. It reserves identifiers ending
  4658. with "_t". What a concept.
  4659. The old names are still available with status `deprecated'.
  4660. ** scm_t_bits (former scm_bits_t) is now a unsigned type.
  4661. ** Deprecated features have been removed.
  4662. *** Macros removed
  4663. SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
  4664. SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
  4665. *** C Functions removed
  4666. scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
  4667. scm_fseek - replaced by scm_seek.
  4668. gc-thunk - replaced by after-gc-hook.
  4669. gh_int2scmb - replaced by gh_bool2scm.
  4670. scm_tc_dblr - replaced by scm_tc16_real.
  4671. scm_tc_dblc - replaced by scm_tc16_complex.
  4672. scm_list_star - replaced by scm_cons_star.
  4673. ** Deprecated: scm_makfromstr
  4674. Use scm_mem2string instead.
  4675. ** Deprecated: scm_make_shared_substring
  4676. Explicit shared substrings will disappear from Guile.
  4677. Instead, "normal" strings will be implemented using sharing
  4678. internally, combined with a copy-on-write strategy.
  4679. ** Deprecated: scm_read_only_string_p
  4680. The concept of read-only strings will disappear in next release of
  4681. Guile.
  4682. ** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
  4683. Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
  4684. ** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
  4685. Call a procedure with the indicated number of arguments. See "Fly
  4686. Evaluation" in the manual.
  4687. ** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
  4688. Call a procedure with the indicated number of arguments and a list of
  4689. further arguments. See "Fly Evaluation" in the manual.
  4690. ** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5
  4691. Create a list of the given number of elements. See "List
  4692. Constructors" in the manual.
  4693. ** Renamed function: scm_listify has been replaced by scm_list_n.
  4694. ** Deprecated macros: SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4,
  4695. SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9.
  4696. Use functions scm_list_N instead.
  4697. ** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
  4698. Used by an application to read arbitrary number of bytes from a port.
  4699. Same semantics as libc read, except that scm_c_read only returns less
  4700. than SIZE bytes if at end-of-file.
  4701. Warning: Doesn't update port line and column counts!
  4702. ** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
  4703. Used by an application to write arbitrary number of bytes to an SCM
  4704. port. Similar semantics as libc write. However, unlike libc
  4705. write, scm_c_write writes the requested number of bytes and has no
  4706. return value.
  4707. Warning: Doesn't update port line and column counts!
  4708. ** New function: scm_init_guile ()
  4709. In contrast to scm_boot_guile, scm_init_guile will return normally
  4710. after initializing Guile. It is not available on all systems, tho.
  4711. ** New functions: scm_str2symbol, scm_mem2symbol
  4712. The function scm_str2symbol takes a const char* pointing to a zero-terminated
  4713. field of characters and creates a scheme symbol object from that C string.
  4714. The function scm_mem2symbol takes a const char* and a number of characters and
  4715. creates a symbol from the characters in that memory area.
  4716. ** New functions: scm_primitive_make_property
  4717. scm_primitive_property_ref
  4718. scm_primitive_property_set_x
  4719. scm_primitive_property_del_x
  4720. These functions implement a new way to deal with object properties.
  4721. See libguile/properties.c for their documentation.
  4722. ** New function: scm_done_free (long size)
  4723. This function is the inverse of scm_done_malloc. Use it to report the
  4724. amount of smob memory you free. The previous method, which involved
  4725. calling scm_done_malloc with negative argument, was somewhat
  4726. unintuitive (and is still available, of course).
  4727. ** New function: scm_c_memq (SCM obj, SCM list)
  4728. This function provides a fast C level alternative for scm_memq for the case
  4729. that the list parameter is known to be a proper list. The function is a
  4730. replacement for scm_sloppy_memq, but is stricter in its requirements on its
  4731. list input parameter, since for anything else but a proper list the function's
  4732. behaviour is undefined - it may even crash or loop endlessly. Further, for
  4733. the case that the object is not found in the list, scm_c_memq returns #f which
  4734. is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
  4735. ** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
  4736. scm_remember_upto_here
  4737. These functions replace the function scm_remember.
  4738. ** Deprecated function: scm_remember
  4739. Use one of the new functions scm_remember_upto_here_1,
  4740. scm_remember_upto_here_2 or scm_remember_upto_here instead.
  4741. ** New function: scm_allocate_string
  4742. This function replaces the function scm_makstr.
  4743. ** Deprecated function: scm_makstr
  4744. Use the new function scm_allocate_string instead.
  4745. ** New global variable scm_gc_running_p introduced.
  4746. Use this variable to find out if garbage collection is being executed. Up to
  4747. now applications have used scm_gc_heap_lock to test if garbage collection was
  4748. running, which also works because of the fact that up to know only the garbage
  4749. collector has set this variable. But, this is an implementation detail that
  4750. may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
  4751. of this variable is (and has been) not fully safe anyway.
  4752. ** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
  4753. Use these instead of SCM_LENGTH_MAX.
  4754. ** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
  4755. SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
  4756. SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
  4757. Use these instead of SCM_LENGTH.
  4758. ** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
  4759. SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
  4760. SCM_SET_BITVECTOR_LENGTH
  4761. Use these instead of SCM_SETLENGTH
  4762. ** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
  4763. SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
  4764. SCM_ARRAY_MEM
  4765. Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
  4766. SCM_VELTS.
  4767. ** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
  4768. SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
  4769. SCM_SET_VECTOR_BASE
  4770. Use these instead of SCM_SETCHARS.
  4771. ** New macro: SCM_BITVECTOR_P
  4772. ** New macro: SCM_STRING_COERCE_0TERMINATION_X
  4773. Use instead of SCM_COERCE_SUBSTR.
  4774. ** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
  4775. For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
  4776. ** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
  4777. SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
  4778. SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
  4779. SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
  4780. SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
  4781. SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
  4782. SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
  4783. SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
  4784. SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
  4785. SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
  4786. SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
  4787. SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
  4788. SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
  4789. SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
  4790. SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_SETAND_CAR, SCM_SETOR_CAR
  4791. Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
  4792. Use scm_memory_error instead of SCM_NALLOC.
  4793. Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
  4794. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
  4795. Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
  4796. Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
  4797. Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
  4798. Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
  4799. Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
  4800. Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
  4801. Use SCM_STRINGP instead of SCM_RWSTRINGP.
  4802. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
  4803. Use SCM_STRING_CHARS instead of SCM_ROCHARS.
  4804. Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
  4805. Use a type specific setter macro instead of SCM_SETLENGTH.
  4806. Use a type specific setter macro instead of SCM_SETCHARS.
  4807. Use a type specific length macro instead of SCM_LENGTH_MAX.
  4808. Use SCM_GCMARKP instead of SCM_GC8MARKP.
  4809. Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
  4810. Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
  4811. Use SCM_TYP16 instead of SCM_GCTYP16.
  4812. Use SCM_CDR instead of SCM_GCCDR.
  4813. Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
  4814. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
  4815. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
  4816. Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
  4817. Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
  4818. Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
  4819. Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
  4820. ** Removed function: scm_struct_init
  4821. ** Removed variable: scm_symhash_dim
  4822. ** Renamed function: scm_make_cont has been replaced by
  4823. scm_make_continuation, which has a different interface.
  4824. ** Deprecated function: scm_call_catching_errors
  4825. Use scm_catch or scm_lazy_catch from throw.[ch] instead.
  4826. ** Deprecated function: scm_strhash
  4827. Use scm_string_hash instead.
  4828. ** Deprecated function: scm_vector_set_length_x
  4829. Instead, create a fresh vector of the desired size and copy the contents.
  4830. ** scm_gensym has changed prototype
  4831. scm_gensym now only takes one argument.
  4832. ** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
  4833. scm_tc7_lvector
  4834. There is now only a single symbol type scm_tc7_symbol.
  4835. The tag scm_tc7_lvector was not used anyway.
  4836. ** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
  4837. Use scm_make_smob_type and scm_set_smob_XXX instead.
  4838. ** New function scm_set_smob_apply.
  4839. This can be used to set an apply function to a smob type.
  4840. ** Deprecated function: scm_strprint_obj
  4841. Use scm_object_to_string instead.
  4842. ** Deprecated function: scm_wta
  4843. Use scm_wrong_type_arg, or another appropriate error signalling function
  4844. instead.
  4845. ** Explicit support for obarrays has been deprecated.
  4846. Use `scm_str2symbol' and the generic hashtable functions instead.
  4847. ** The concept of `vcells' has been deprecated.
  4848. The data type `variable' is now used exclusively. `Vcells' have been
  4849. a low-level concept so you are likely not affected by this change.
  4850. *** Deprecated functions: scm_sym2vcell, scm_sysintern,
  4851. scm_sysintern0, scm_symbol_value0, scm_intern, scm_intern0.
  4852. Use scm_c_define or scm_c_lookup instead, as appropriate.
  4853. *** New functions: scm_c_module_lookup, scm_c_lookup,
  4854. scm_c_module_define, scm_c_define, scm_module_lookup, scm_lookup,
  4855. scm_module_define, scm_define.
  4856. These functions work with variables instead of with vcells.
  4857. ** New functions for creating and defining `subr's and `gsubr's.
  4858. The new functions more clearly distinguish between creating a subr (or
  4859. gsubr) object and adding it to the current module.
  4860. These new functions are available: scm_c_make_subr, scm_c_define_subr,
  4861. scm_c_make_subr_with_generic, scm_c_define_subr_with_generic,
  4862. scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
  4863. scm_c_define_gsubr_with_generic.
  4864. ** Deprecated functions: scm_make_subr, scm_make_subr_opt,
  4865. scm_make_subr_with_generic, scm_make_gsubr,
  4866. scm_make_gsubr_with_generic.
  4867. Use the new ones from above instead.
  4868. ** C interface to the module system has changed.
  4869. While we suggest that you avoid as many explicit module system
  4870. operations from C as possible for the time being, the C interface has
  4871. been made more similar to the high-level Scheme module system.
  4872. *** New functions: scm_c_define_module, scm_c_use_module,
  4873. scm_c_export, scm_c_resolve_module.
  4874. They mostly work like their Scheme namesakes. scm_c_define_module
  4875. takes a function that is called a context where the new module is
  4876. current.
  4877. *** Deprecated functions: scm_the_root_module, scm_make_module,
  4878. scm_ensure_user_module, scm_load_scheme_module.
  4879. Use the new functions instead.
  4880. ** Renamed function: scm_internal_with_fluids becomes
  4881. scm_c_with_fluids.
  4882. scm_internal_with_fluids is available as a deprecated function.
  4883. ** New function: scm_c_with_fluid.
  4884. Just like scm_c_with_fluids, but takes one fluid and one value instead
  4885. of lists of same.
  4886. ** Deprecated typedefs: long_long, ulong_long.
  4887. They are of questionable utility and they pollute the global
  4888. namespace.
  4889. ** Deprecated typedef: scm_sizet
  4890. It is of questionable utility now that Guile requires ANSI C, and is
  4891. oddly named.
  4892. ** Deprecated typedefs: scm_port_rw_active, scm_port,
  4893. scm_ptob_descriptor, scm_debug_info, scm_debug_frame, scm_fport,
  4894. scm_option, scm_rstate, scm_rng, scm_array, scm_array_dim.
  4895. Made more compliant with the naming policy by adding a _t at the end.
  4896. ** Deprecated functions: scm_mkbig, scm_big2num, scm_adjbig,
  4897. scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl
  4898. With the exception of the mysterious scm_2ulong2big, they are still
  4899. available under new names (scm_i_mkbig etc). These functions are not
  4900. intended to be used in user code. You should avoid dealing with
  4901. bignums directly, and should deal with numbers in general (which can
  4902. be bignums).
  4903. ** Change in behavior: scm_num2long, scm_num2ulong
  4904. The scm_num2[u]long functions don't any longer accept an inexact
  4905. argument. This change in behavior is motivated by concordance with
  4906. R5RS: It is more common that a primitive doesn't want to accept an
  4907. inexact for an exact.
  4908. ** New functions: scm_short2num, scm_ushort2num, scm_int2num,
  4909. scm_uint2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
  4910. scm_num2ushort, scm_num2int, scm_num2uint, scm_num2ptrdiff,
  4911. scm_num2size.
  4912. These are conversion functions between the various ANSI C integral
  4913. types and Scheme numbers. NOTE: The scm_num2xxx functions don't
  4914. accept an inexact argument.
  4915. ** New functions: scm_float2num, scm_double2num,
  4916. scm_num2float, scm_num2double.
  4917. These are conversion functions between the two ANSI C float types and
  4918. Scheme numbers.
  4919. ** New number validation macros:
  4920. SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,INT,UINT}[_DEF]
  4921. See above.
  4922. ** New functions: scm_gc_protect_object, scm_gc_unprotect_object
  4923. These are just nicer-named old scm_protect_object and
  4924. scm_unprotect_object.
  4925. ** Deprecated functions: scm_protect_object, scm_unprotect_object
  4926. ** New functions: scm_gc_[un]register_root, scm_gc_[un]register_roots
  4927. These functions can be used to register pointers to locations that
  4928. hold SCM values.
  4929. ** Deprecated function: scm_create_hook.
  4930. Its sins are: misleading name, non-modularity and lack of general
  4931. usefulness.
  4932. Changes since Guile 1.3.4:
  4933. * Changes to the distribution
  4934. ** Trees from nightly snapshots and CVS now require you to run autogen.sh.
  4935. We've changed the way we handle generated files in the Guile source
  4936. repository. As a result, the procedure for building trees obtained
  4937. from the nightly FTP snapshots or via CVS has changed:
  4938. - You must have appropriate versions of autoconf, automake, and
  4939. libtool installed on your system. See README for info on how to
  4940. obtain these programs.
  4941. - Before configuring the tree, you must first run the script
  4942. `autogen.sh' at the top of the source tree.
  4943. The Guile repository used to contain not only source files, written by
  4944. humans, but also some generated files, like configure scripts and
  4945. Makefile.in files. Even though the contents of these files could be
  4946. derived mechanically from other files present, we thought it would
  4947. make the tree easier to build if we checked them into CVS.
  4948. However, this approach means that minor differences between
  4949. developer's installed tools and habits affected the whole team.
  4950. So we have removed the generated files from the repository, and
  4951. added the autogen.sh script, which will reconstruct them
  4952. appropriately.
  4953. ** configure now has experimental options to remove support for certain
  4954. features:
  4955. --disable-arrays omit array and uniform array support
  4956. --disable-posix omit posix interfaces
  4957. --disable-networking omit networking interfaces
  4958. --disable-regex omit regular expression interfaces
  4959. These are likely to become separate modules some day.
  4960. ** New configure option --enable-debug-freelist
  4961. This enables a debugging version of SCM_NEWCELL(), and also registers
  4962. an extra primitive, the setter `gc-set-debug-check-freelist!'.
  4963. Configure with the --enable-debug-freelist option to enable
  4964. the gc-set-debug-check-freelist! primitive, and then use:
  4965. (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
  4966. (gc-set-debug-check-freelist! #f) # turn off checking
  4967. Checking of the freelist forces a traversal of the freelist and
  4968. a garbage collection before each allocation of a cell. This can
  4969. slow down the interpreter dramatically, so the setter should be used to
  4970. turn on this extra processing only when necessary.
  4971. ** New configure option --enable-debug-malloc
  4972. Include code for debugging of calls to scm_must_malloc/realloc/free.
  4973. Checks that
  4974. 1. objects freed by scm_must_free has been mallocated by scm_must_malloc
  4975. 2. objects reallocated by scm_must_realloc has been allocated by
  4976. scm_must_malloc
  4977. 3. reallocated objects are reallocated with the same what string
  4978. But, most importantly, it records the number of allocated objects of
  4979. each kind. This is useful when searching for memory leaks.
  4980. A Guile compiled with this option provides the primitive
  4981. `malloc-stats' which returns an alist with pairs of kind and the
  4982. number of objects of that kind.
  4983. ** All includes are now referenced relative to the root directory
  4984. Since some users have had problems with mixups between Guile and
  4985. system headers, we have decided to always refer to Guile headers via
  4986. their parent directories. This essentially creates a "private name
  4987. space" for Guile headers. This means that the compiler only is given
  4988. -I options for the root build and root source directory.
  4989. ** Header files kw.h and genio.h have been removed.
  4990. ** The module (ice-9 getopt-gnu-style) has been removed.
  4991. ** New module (ice-9 documentation)
  4992. Implements the interface to documentation strings associated with
  4993. objects.
  4994. ** New module (ice-9 time)
  4995. Provides a macro `time', which displays execution time of a given form.
  4996. ** New module (ice-9 history)
  4997. Loading this module enables value history in the repl.
  4998. * Changes to the stand-alone interpreter
  4999. ** New command line option --debug
  5000. Start Guile with debugging evaluator and backtraces enabled.
  5001. This is useful when debugging your .guile init file or scripts.
  5002. ** New help facility
  5003. Usage: (help NAME) gives documentation about objects named NAME (a symbol)
  5004. (help REGEXP) ditto for objects with names matching REGEXP (a string)
  5005. (help 'NAME) gives documentation for NAME, even if it is not an object
  5006. (help ,EXPR) gives documentation for object returned by EXPR
  5007. (help (my module)) gives module commentary for `(my module)'
  5008. (help) gives this text
  5009. `help' searches among bindings exported from loaded modules, while
  5010. `apropos' searches among bindings visible from the "current" module.
  5011. Examples: (help help)
  5012. (help cons)
  5013. (help "output-string")
  5014. ** `help' and `apropos' now prints full module names
  5015. ** Dynamic linking now uses libltdl from the libtool package.
  5016. The old system dependent code for doing dynamic linking has been
  5017. replaced with calls to the libltdl functions which do all the hairy
  5018. details for us.
  5019. The major improvement is that you can now directly pass libtool
  5020. library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
  5021. will be able to do the best shared library job you can get, via
  5022. libltdl.
  5023. The way dynamic libraries are found has changed and is not really
  5024. portable across platforms, probably. It is therefore recommended to
  5025. use absolute filenames when possible.
  5026. If you pass a filename without an extension to `dynamic-link', it will
  5027. try a few appropriate ones. Thus, the most platform ignorant way is
  5028. to specify a name like "libfoo", without any directories and
  5029. extensions.
  5030. ** Guile COOP threads are now compatible with LinuxThreads
  5031. Previously, COOP threading wasn't possible in applications linked with
  5032. Linux POSIX threads due to their use of the stack pointer to find the
  5033. thread context. This has now been fixed with a workaround which uses
  5034. the pthreads to allocate the stack.
  5035. ** New primitives: `pkgdata-dir', `site-dir', `library-dir'
  5036. ** Positions of erring expression in scripts
  5037. With version 1.3.4, the location of the erring expression in Guile
  5038. scipts is no longer automatically reported. (This should have been
  5039. documented before the 1.3.4 release.)
  5040. You can get this information by enabling recording of positions of
  5041. source expressions and running the debugging evaluator. Put this at
  5042. the top of your script (or in your "site" file):
  5043. (read-enable 'positions)
  5044. (debug-enable 'debug)
  5045. ** Backtraces in scripts
  5046. It is now possible to get backtraces in scripts.
  5047. Put
  5048. (debug-enable 'debug 'backtrace)
  5049. at the top of the script.
  5050. (The first options enables the debugging evaluator.
  5051. The second enables backtraces.)
  5052. ** Part of module system symbol lookup now implemented in C
  5053. The eval closure of most modules is now implemented in C. Since this
  5054. was one of the bottlenecks for loading speed, Guile now loads code
  5055. substantially faster than before.
  5056. ** Attempting to get the value of an unbound variable now produces
  5057. an exception with a key of 'unbound-variable instead of 'misc-error.
  5058. ** The initial default output port is now unbuffered if it's using a
  5059. tty device. Previously in this situation it was line-buffered.
  5060. ** New hook: after-gc-hook
  5061. after-gc-hook takes over the role of gc-thunk. This hook is run at
  5062. the first SCM_TICK after a GC. (Thus, the code is run at the same
  5063. point during evaluation as signal handlers.)
  5064. Note that this hook should be used only for diagnostic and debugging
  5065. purposes. It is not certain that it will continue to be well-defined
  5066. when this hook is run in the future.
  5067. C programmers: Note the new C level hooks scm_before_gc_c_hook,
  5068. scm_before_sweep_c_hook, scm_after_gc_c_hook.
  5069. ** Improvements to garbage collector
  5070. Guile 1.4 has a new policy for triggering heap allocation and
  5071. determining the sizes of heap segments. It fixes a number of problems
  5072. in the old GC.
  5073. 1. The new policy can handle two separate pools of cells
  5074. (2-word/4-word) better. (The old policy would run wild, allocating
  5075. more and more memory for certain programs.)
  5076. 2. The old code would sometimes allocate far too much heap so that the
  5077. Guile process became gigantic. The new code avoids this.
  5078. 3. The old code would sometimes allocate too little so that few cells
  5079. were freed at GC so that, in turn, too much time was spent in GC.
  5080. 4. The old code would often trigger heap allocation several times in a
  5081. row. (The new scheme predicts how large the segments needs to be
  5082. in order not to need further allocation.)
  5083. All in all, the new GC policy will make larger applications more
  5084. efficient.
  5085. The new GC scheme also is prepared for POSIX threading. Threads can
  5086. allocate private pools of cells ("clusters") with just a single
  5087. function call. Allocation of single cells from such a cluster can
  5088. then proceed without any need of inter-thread synchronization.
  5089. ** New environment variables controlling GC parameters
  5090. GUILE_MAX_SEGMENT_SIZE Maximal segment size
  5091. (default = 2097000)
  5092. Allocation of 2-word cell heaps:
  5093. GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
  5094. (default = 360000)
  5095. GUILE_MIN_YIELD_1 Minimum number of freed cells at each
  5096. GC in percent of total heap size
  5097. (default = 40)
  5098. Allocation of 4-word cell heaps
  5099. (used for real numbers and misc other objects):
  5100. GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
  5101. (See entry "Way for application to customize GC parameters" under
  5102. section "Changes to the scm_ interface" below.)
  5103. ** Guile now implements reals using 4-word cells
  5104. This speeds up computation with reals. (They were earlier allocated
  5105. with `malloc'.) There is still some room for optimizations, however.
  5106. ** Some further steps toward POSIX thread support have been taken
  5107. *** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
  5108. don't have much effect any longer, and many of them will be removed in
  5109. next release.
  5110. *** Signals
  5111. are only handled at the top of the evaluator loop, immediately after
  5112. I/O, and in scm_equalp.
  5113. *** The GC can allocate thread private pools of pairs.
  5114. * Changes to Scheme functions and syntax
  5115. ** close-input-port and close-output-port are now R5RS
  5116. These procedures have been turned into primitives and have R5RS behaviour.
  5117. ** New procedure: simple-format PORT MESSAGE ARG1 ...
  5118. (ice-9 boot) makes `format' an alias for `simple-format' until possibly
  5119. extended by the more sophisticated version in (ice-9 format)
  5120. (simple-format port message . args)
  5121. Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
  5122. MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
  5123. the escapes are replaced with corresponding members of ARGS:
  5124. ~A formats using `display' and ~S formats using `write'.
  5125. If DESTINATION is #t, then use the `current-output-port',
  5126. if DESTINATION is #f, then return a string containing the formatted text.
  5127. Does not add a trailing newline."
  5128. ** string-ref: the second argument is no longer optional.
  5129. ** string, list->string: no longer accept strings in their arguments,
  5130. only characters, for compatibility with R5RS.
  5131. ** New procedure: port-closed? PORT
  5132. Returns #t if PORT is closed or #f if it is open.
  5133. ** Deprecated: list*
  5134. The list* functionality is now provided by cons* (SRFI-1 compliant)
  5135. ** New procedure: cons* ARG1 ARG2 ... ARGn
  5136. Like `list', but the last arg provides the tail of the constructed list,
  5137. returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
  5138. Requires at least one argument. If given one argument, that argument
  5139. is returned as result.
  5140. This function is called `list*' in some other Schemes and in Common LISP.
  5141. ** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
  5142. ** New procedure: object-documentation OBJECT
  5143. Returns the documentation string associated with OBJECT. The
  5144. procedure uses a caching mechanism so that subsequent lookups are
  5145. faster.
  5146. Exported by (ice-9 documentation).
  5147. ** module-name now returns full names of modules
  5148. Previously, only the last part of the name was returned (`session' for
  5149. `(ice-9 session)'). Ex: `(ice-9 session)'.
  5150. * Changes to the gh_ interface
  5151. ** Deprecated: gh_int2scmb
  5152. Use gh_bool2scm instead.
  5153. * Changes to the scm_ interface
  5154. ** Guile primitives now carry docstrings!
  5155. Thanks to Greg Badros!
  5156. ** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  5157. Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  5158. macros and must contain a docstring that is extracted into foo.doc using a new
  5159. guile-doc-snarf script (that uses guile-doc-snarf.awk).
  5160. However, a major overhaul of these macros is scheduled for the next release of
  5161. guile.
  5162. ** Guile primitives use a new technique for validation of arguments
  5163. SCM_VALIDATE_* macros are defined to ease the redundancy and improve
  5164. the readability of argument checking.
  5165. ** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
  5166. ** New macros: SCM_PACK, SCM_UNPACK
  5167. Compose/decompose an SCM value.
  5168. The SCM type is now treated as an abstract data type and may be defined as a
  5169. long, a void* or as a struct, depending on the architecture and compile time
  5170. options. This makes it easier to find several types of bugs, for example when
  5171. SCM values are treated as integers without conversion. Values of the SCM type
  5172. should be treated as "atomic" values. These macros are used when
  5173. composing/decomposing an SCM value, either because you want to access
  5174. individual bits, or because you want to treat it as an integer value.
  5175. E.g., in order to set bit 7 in an SCM value x, use the expression
  5176. SCM_PACK (SCM_UNPACK (x) | 0x80)
  5177. ** The name property of hooks is deprecated.
  5178. Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
  5179. You can emulate this feature by using object properties.
  5180. ** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
  5181. SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
  5182. SCM_NVECTORP
  5183. These macros will be removed in a future release of Guile.
  5184. ** The following types, functions and macros from numbers.h are deprecated:
  5185. scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
  5186. SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
  5187. ** Port internals: the rw_random variable in the scm_port structure
  5188. must be set to non-zero in any random access port. In recent Guile
  5189. releases it was only set for bidirectional random-access ports.
  5190. ** Port internals: the seek ptob procedure is now responsible for
  5191. resetting the buffers if required. The change was made so that in the
  5192. special case of reading the current position (i.e., seek p 0 SEEK_CUR)
  5193. the fport and strport ptobs can avoid resetting the buffers,
  5194. in particular to avoid discarding unread chars. An existing port
  5195. type can be fixed by adding something like the following to the
  5196. beginning of the ptob seek procedure:
  5197. if (pt->rw_active == SCM_PORT_READ)
  5198. scm_end_input (object);
  5199. else if (pt->rw_active == SCM_PORT_WRITE)
  5200. ptob->flush (object);
  5201. although to actually avoid resetting the buffers and discard unread
  5202. chars requires further hacking that depends on the characteristics
  5203. of the ptob.
  5204. ** Deprecated functions: scm_fseek, scm_tag
  5205. These functions are no longer used and will be removed in a future version.
  5206. ** The scm_sysmissing procedure is no longer used in libguile.
  5207. Unless it turns out to be unexpectedly useful to somebody, it will be
  5208. removed in a future version.
  5209. ** The format of error message strings has changed
  5210. The two C procedures: scm_display_error and scm_error, as well as the
  5211. primitive `scm-error', now use scm_simple_format to do their work.
  5212. This means that the message strings of all code must be updated to use
  5213. ~A where %s was used before, and ~S where %S was used before.
  5214. During the period when there still are a lot of old Guiles out there,
  5215. you might want to support both old and new versions of Guile.
  5216. There are basically two methods to achieve this. Both methods use
  5217. autoconf. Put
  5218. AC_CHECK_FUNCS(scm_simple_format)
  5219. in your configure.in.
  5220. Method 1: Use the string concatenation features of ANSI C's
  5221. preprocessor.
  5222. In C:
  5223. #ifdef HAVE_SCM_SIMPLE_FORMAT
  5224. #define FMT_S "~S"
  5225. #else
  5226. #define FMT_S "%S"
  5227. #endif
  5228. Then represent each of your error messages using a preprocessor macro:
  5229. #define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
  5230. In Scheme:
  5231. (define fmt-s (if (defined? 'simple-format) "~S" "%S"))
  5232. (define make-message string-append)
  5233. (define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
  5234. Method 2: Use the oldfmt function found in doc/oldfmt.c.
  5235. In C:
  5236. scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
  5237. ...);
  5238. In Scheme:
  5239. (scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
  5240. ...)
  5241. ** Deprecated: coop_mutex_init, coop_condition_variable_init
  5242. Don't use the functions coop_mutex_init and
  5243. coop_condition_variable_init. They will change.
  5244. Use scm_mutex_init and scm_cond_init instead.
  5245. ** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
  5246. `scm_cond_timedwait' atomically unlocks MUTEX and waits on
  5247. COND, as `scm_cond_wait' does, but it also bounds the duration
  5248. of the wait. If COND has not been signaled before time ABSTIME,
  5249. the mutex MUTEX is re-acquired and `scm_cond_timedwait'
  5250. returns the error code `ETIMEDOUT'.
  5251. The ABSTIME parameter specifies an absolute time, with the same
  5252. origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
  5253. to 00:00:00 GMT, January 1, 1970.
  5254. ** New function: scm_cond_broadcast (scm_cond_t *COND)
  5255. `scm_cond_broadcast' restarts all the threads that are waiting
  5256. on the condition variable COND. Nothing happens if no threads are
  5257. waiting on COND.
  5258. ** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
  5259. `scm_key_create' allocates a new TSD key. The key is stored in
  5260. the location pointed to by KEY. There is no limit on the number
  5261. of keys allocated at a given time. The value initially associated
  5262. with the returned key is `NULL' in all currently executing threads.
  5263. The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
  5264. function associated with the key. When a thread terminates,
  5265. DESTR_FUNCTION is called on the value associated with the key in
  5266. that thread. The DESTR_FUNCTION is not called if a key is deleted
  5267. with `scm_key_delete' or a value is changed with
  5268. `scm_setspecific'. The order in which destructor functions are
  5269. called at thread termination time is unspecified.
  5270. Destructors are not yet implemented.
  5271. ** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
  5272. `scm_setspecific' changes the value associated with KEY in the
  5273. calling thread, storing the given POINTER instead.
  5274. ** New function: scm_getspecific (scm_key_t KEY)
  5275. `scm_getspecific' returns the value currently associated with
  5276. KEY in the calling thread.
  5277. ** New function: scm_key_delete (scm_key_t KEY)
  5278. `scm_key_delete' deallocates a TSD key. It does not check
  5279. whether non-`NULL' values are associated with that key in the
  5280. currently executing threads, nor call the destructor function
  5281. associated with the key.
  5282. ** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
  5283. Initialize a C level hook HOOK with associated HOOK_DATA and type
  5284. TYPE. (See scm_c_hook_run ().)
  5285. ** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
  5286. Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
  5287. is true, add it last, otherwise first. The same FUNC can be added
  5288. multiple times if FUNC_DATA differ and vice versa.
  5289. ** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
  5290. Remove hook function FUNC with associated FUNC_DATA from HOOK. A
  5291. function is only removed if both FUNC and FUNC_DATA matches.
  5292. ** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
  5293. Run hook HOOK passing DATA to the hook functions.
  5294. If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
  5295. returned is undefined.
  5296. If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
  5297. returns a non-NULL value. This value is returned as the result of
  5298. scm_c_hook_run. If all functions return NULL, NULL is returned.
  5299. If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
  5300. returns a NULL value, and NULL is returned. If all functions returns
  5301. a non-NULL value, the last value is returned.
  5302. ** New C level GC hooks
  5303. Five new C level hooks has been added to the garbage collector.
  5304. scm_before_gc_c_hook
  5305. scm_after_gc_c_hook
  5306. are run before locking and after unlocking the heap. The system is
  5307. thus in a mode where evaluation can take place. (Except that
  5308. scm_before_gc_c_hook must not allocate new cells.)
  5309. scm_before_mark_c_hook
  5310. scm_before_sweep_c_hook
  5311. scm_after_sweep_c_hook
  5312. are run when the heap is locked. These are intended for extension of
  5313. the GC in a modular fashion. Examples are the weaks and guardians
  5314. modules.
  5315. ** Way for application to customize GC parameters
  5316. The application can set up other default values for the GC heap
  5317. allocation parameters
  5318. GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
  5319. GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
  5320. GUILE_MAX_SEGMENT_SIZE,
  5321. by setting
  5322. scm_default_init_heap_size_1, scm_default_min_yield_1,
  5323. scm_default_init_heap_size_2, scm_default_min_yield_2,
  5324. scm_default_max_segment_size
  5325. respectively before callong scm_boot_guile.
  5326. (See entry "New environment variables ..." in section
  5327. "Changes to the stand-alone interpreter" above.)
  5328. ** scm_protect_object/scm_unprotect_object now nest
  5329. This means that you can call scm_protect_object multiple times on an
  5330. object and count on the object being protected until
  5331. scm_unprotect_object has been call the same number of times.
  5332. The functions also have better time complexity.
  5333. Still, it is usually possible to structure the application in a way
  5334. that you don't need to use these functions. For example, if you use a
  5335. protected standard Guile list to keep track of live objects rather
  5336. than some custom data type, objects will die a natural death when they
  5337. are no longer needed.
  5338. ** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
  5339. Guile does not provide the float representation for inexact real numbers any
  5340. more. Now, only doubles are used to represent inexact real numbers. Further,
  5341. the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
  5342. and scm_tc16_complex, respectively.
  5343. ** Removed deprecated type scm_smobfuns
  5344. ** Removed deprecated function scm_newsmob
  5345. ** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
  5346. There is an ongoing discussion among the developers whether to
  5347. deprecate `scm_make_smob_type_mfpe' or not. Please use the current
  5348. standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
  5349. until this issue has been settled.
  5350. ** Removed deprecated type tag scm_tc16_kw
  5351. ** Added type tag scm_tc16_keyword
  5352. (This was introduced already in release 1.3.4 but was not documented
  5353. until now.)
  5354. ** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
  5355. * Changes to system call interfaces:
  5356. ** The "select" procedure now tests port buffers for the ability to
  5357. provide input or accept output. Previously only the underlying file
  5358. descriptors were checked.
  5359. ** New variable PIPE_BUF: the maximum number of bytes that can be
  5360. atomically written to a pipe.
  5361. ** If a facility is not available on the system when Guile is
  5362. compiled, the corresponding primitive procedure will not be defined.
  5363. Previously it would have been defined but would throw a system-error
  5364. exception if called. Exception handlers which catch this case may
  5365. need minor modification: an error will be thrown with key
  5366. 'unbound-variable instead of 'system-error. Alternatively it's
  5367. now possible to use `defined?' to check whether the facility is
  5368. available.
  5369. ** Procedures which depend on the timezone should now give the correct
  5370. result on systems which cache the TZ environment variable, even if TZ
  5371. is changed without calling tzset.
  5372. * Changes to the networking interfaces:
  5373. ** New functions: htons, ntohs, htonl, ntohl: for converting short and
  5374. long integers between network and host format. For now, it's not
  5375. particularly convenient to do this kind of thing, but consider:
  5376. (define write-network-long
  5377. (lambda (value port)
  5378. (let ((v (make-uniform-vector 1 1 0)))
  5379. (uniform-vector-set! v 0 (htonl value))
  5380. (uniform-vector-write v port))))
  5381. (define read-network-long
  5382. (lambda (port)
  5383. (let ((v (make-uniform-vector 1 1 0)))
  5384. (uniform-vector-read! v port)
  5385. (ntohl (uniform-vector-ref v 0)))))
  5386. ** If inet-aton fails, it now throws an error with key 'misc-error
  5387. instead of 'system-error, since errno is not relevant.
  5388. ** Certain gethostbyname/gethostbyaddr failures now throw errors with
  5389. specific keys instead of 'system-error. The latter is inappropriate
  5390. since errno will not have been set. The keys are:
  5391. 'host-not-found, 'try-again, 'no-recovery and 'no-data.
  5392. ** sethostent, setnetent, setprotoent, setservent: now take an
  5393. optional argument STAYOPEN, which specifies whether the database
  5394. remains open after a database entry is accessed randomly (e.g., using
  5395. gethostbyname for the hosts database.) The default is #f. Previously
  5396. #t was always used.
  5397. Changes since Guile 1.3.2:
  5398. * Changes to the stand-alone interpreter
  5399. ** Debugger
  5400. An initial version of the Guile debugger written by Chris Hanson has
  5401. been added. The debugger is still under development but is included
  5402. in the distribution anyway since it is already quite useful.
  5403. Type
  5404. (debug)
  5405. after an error to enter the debugger. Type `help' inside the debugger
  5406. for a description of available commands.
  5407. If you prefer to have stack frames numbered and printed in
  5408. anti-chronological order and prefer up in the stack to be down on the
  5409. screen as is the case in gdb, you can put
  5410. (debug-enable 'backwards)
  5411. in your .guile startup file. (However, this means that Guile can't
  5412. use indentation to indicate stack level.)
  5413. The debugger is autoloaded into Guile at the first use.
  5414. ** Further enhancements to backtraces
  5415. There is a new debug option `width' which controls the maximum width
  5416. on the screen of printed stack frames. Fancy printing parameters
  5417. ("level" and "length" as in Common LISP) are adaptively adjusted for
  5418. each stack frame to give maximum information while still fitting
  5419. within the bounds. If the stack frame can't be made to fit by
  5420. adjusting parameters, it is simply cut off at the end. This is marked
  5421. with a `$'.
  5422. ** Some modules are now only loaded when the repl is started
  5423. The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
  5424. regex) are now loaded into (guile-user) only if the repl has been
  5425. started. The effect is that the startup time for scripts has been
  5426. reduced to 30% of what it was previously.
  5427. Correctly written scripts load the modules they require at the top of
  5428. the file and should not be affected by this change.
  5429. ** Hooks are now represented as smobs
  5430. * Changes to Scheme functions and syntax
  5431. ** Readline support has changed again.
  5432. The old (readline-activator) module is gone. Use (ice-9 readline)
  5433. instead, which now contains all readline functionality. So the code
  5434. to activate readline is now
  5435. (use-modules (ice-9 readline))
  5436. (activate-readline)
  5437. This should work at any time, including from the guile prompt.
  5438. To avoid confusion about the terms of Guile's license, please only
  5439. enable readline for your personal use; please don't make it the
  5440. default for others. Here is why we make this rather odd-sounding
  5441. request:
  5442. Guile is normally licensed under a weakened form of the GNU General
  5443. Public License, which allows you to link code with Guile without
  5444. placing that code under the GPL. This exception is important to some
  5445. people.
  5446. However, since readline is distributed under the GNU General Public
  5447. License, when you link Guile with readline, either statically or
  5448. dynamically, you effectively change Guile's license to the strict GPL.
  5449. Whenever you link any strictly GPL'd code into Guile, uses of Guile
  5450. which are normally permitted become forbidden. This is a rather
  5451. non-obvious consequence of the licensing terms.
  5452. So, to make sure things remain clear, please let people choose for
  5453. themselves whether to link GPL'd libraries like readline with Guile.
  5454. ** regexp-substitute/global has changed slightly, but incompatibly.
  5455. If you include a function in the item list, the string of the match
  5456. object it receives is the same string passed to
  5457. regexp-substitute/global, not some suffix of that string.
  5458. Correspondingly, the match's positions are relative to the entire
  5459. string, not the suffix.
  5460. If the regexp can match the empty string, the way matches are chosen
  5461. from the string has changed. regexp-substitute/global recognizes the
  5462. same set of matches that list-matches does; see below.
  5463. ** New function: list-matches REGEXP STRING [FLAGS]
  5464. Return a list of match objects, one for every non-overlapping, maximal
  5465. match of REGEXP in STRING. The matches appear in left-to-right order.
  5466. list-matches only reports matches of the empty string if there are no
  5467. other matches which begin on, end at, or include the empty match's
  5468. position.
  5469. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  5470. ** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
  5471. For each match of REGEXP in STRING, apply PROC to the match object,
  5472. and the last value PROC returned, or INIT for the first call. Return
  5473. the last value returned by PROC. We apply PROC to the matches as they
  5474. appear from left to right.
  5475. This function recognizes matches according to the same criteria as
  5476. list-matches.
  5477. Thus, you could define list-matches like this:
  5478. (define (list-matches regexp string . flags)
  5479. (reverse! (apply fold-matches regexp string '() cons flags)))
  5480. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  5481. ** Hooks
  5482. *** New function: hook? OBJ
  5483. Return #t if OBJ is a hook, otherwise #f.
  5484. *** New function: make-hook-with-name NAME [ARITY]
  5485. Return a hook with name NAME and arity ARITY. The default value for
  5486. ARITY is 0. The only effect of NAME is that it will appear when the
  5487. hook object is printed to ease debugging.
  5488. *** New function: hook-empty? HOOK
  5489. Return #t if HOOK doesn't contain any procedures, otherwise #f.
  5490. *** New function: hook->list HOOK
  5491. Return a list of the procedures that are called when run-hook is
  5492. applied to HOOK.
  5493. ** `map' signals an error if its argument lists are not all the same length.
  5494. This is the behavior required by R5RS, so this change is really a bug
  5495. fix. But it seems to affect a lot of people's code, so we're
  5496. mentioning it here anyway.
  5497. ** Print-state handling has been made more transparent
  5498. Under certain circumstances, ports are represented as a port with an
  5499. associated print state. Earlier, this pair was represented as a pair
  5500. (see "Some magic has been added to the printer" below). It is now
  5501. indistinguishable (almost; see `get-print-state') from a port on the
  5502. user level.
  5503. *** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
  5504. Return a new port with the associated print state PRINT-STATE.
  5505. *** New function: get-print-state OUTPUT-PORT
  5506. Return the print state associated with this port if it exists,
  5507. otherwise return #f.
  5508. *** New function: directory-stream? OBJECT
  5509. Returns true iff OBJECT is a directory stream --- the sort of object
  5510. returned by `opendir'.
  5511. ** New function: using-readline?
  5512. Return #t if readline is in use in the current repl.
  5513. ** structs will be removed in 1.4
  5514. Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
  5515. and use GOOPS objects as the fundamental record type.
  5516. * Changes to the scm_ interface
  5517. ** structs will be removed in 1.4
  5518. The entire current struct interface (struct.c, struct.h) will be
  5519. replaced in Guile 1.4. We will merge GOOPS into libguile and use
  5520. GOOPS objects as the fundamental record type.
  5521. ** The internal representation of subr's has changed
  5522. Instead of giving a hint to the subr name, the CAR field of the subr
  5523. now contains an index to a subr entry in scm_subr_table.
  5524. *** New variable: scm_subr_table
  5525. An array of subr entries. A subr entry contains the name, properties
  5526. and documentation associated with the subr. The properties and
  5527. documentation slots are not yet used.
  5528. ** A new scheme for "forwarding" calls to a builtin to a generic function
  5529. It is now possible to extend the functionality of some Guile
  5530. primitives by letting them defer a call to a GOOPS generic function on
  5531. argument mismatch. This means that there is no loss of efficiency in
  5532. normal evaluation.
  5533. Example:
  5534. (use-modules (oop goops)) ; Must be GOOPS version 0.2.
  5535. (define-method + ((x <string>) (y <string>))
  5536. (string-append x y))
  5537. + will still be as efficient as usual in numerical calculations, but
  5538. can also be used for concatenating strings.
  5539. Who will be the first one to extend Guile's numerical tower to
  5540. rationals? :) [OK, there a few other things to fix before this can
  5541. be made in a clean way.]
  5542. *** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
  5543. New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
  5544. New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
  5545. These do the same job as SCM_PROC and SCM_PROC1, but they also define
  5546. a variable GENERIC which can be used by the dispatch macros below.
  5547. [This is experimental code which may change soon.]
  5548. *** New macros for forwarding control to a generic on arg type error
  5549. New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
  5550. New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
  5551. These correspond to the scm_wta function call, and have the same
  5552. behaviour until the user has called the GOOPS primitive
  5553. `enable-primitive-generic!'. After that, these macros will apply the
  5554. generic function GENERIC to the argument(s) instead of calling
  5555. scm_wta.
  5556. [This is experimental code which may change soon.]
  5557. *** New macros for argument testing with generic dispatch
  5558. New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
  5559. New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
  5560. These correspond to the SCM_ASSERT macro, but will defer control to
  5561. GENERIC on error after `enable-primitive-generic!' has been called.
  5562. [This is experimental code which may change soon.]
  5563. ** New function: SCM scm_eval_body (SCM body, SCM env)
  5564. Evaluates the body of a special form.
  5565. ** The internal representation of struct's has changed
  5566. Previously, four slots were allocated for the procedure(s) of entities
  5567. and operators. The motivation for this representation had to do with
  5568. the structure of the evaluator, the wish to support tail-recursive
  5569. generic functions, and efficiency. Since the generic function
  5570. dispatch mechanism has changed, there is no longer a need for such an
  5571. expensive representation, and the representation has been simplified.
  5572. This should not make any difference for most users.
  5573. ** GOOPS support has been cleaned up.
  5574. Some code has been moved from eval.c to objects.c and code in both of
  5575. these compilation units has been cleaned up and better structured.
  5576. *** New functions for applying generic functions
  5577. New function: SCM scm_apply_generic (GENERIC, ARGS)
  5578. New function: SCM scm_call_generic_0 (GENERIC)
  5579. New function: SCM scm_call_generic_1 (GENERIC, ARG1)
  5580. New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
  5581. New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
  5582. ** Deprecated function: scm_make_named_hook
  5583. It is now replaced by:
  5584. ** New function: SCM scm_create_hook (const char *name, int arity)
  5585. Creates a hook in the same way as make-hook above but also
  5586. binds a variable named NAME to it.
  5587. This is the typical way of creating a hook from C code.
  5588. Currently, the variable is created in the "current" module.
  5589. This might change when we get the new module system.
  5590. [The behaviour is identical to scm_make_named_hook.]
  5591. Changes since Guile 1.3:
  5592. * Changes to mailing lists
  5593. ** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
  5594. See the README file to find current addresses for all the Guile
  5595. mailing lists.
  5596. * Changes to the distribution
  5597. ** Readline support is no longer included with Guile by default.
  5598. Based on the different license terms of Guile and Readline, we
  5599. concluded that Guile should not *by default* cause the linking of
  5600. Readline into an application program. Readline support is now offered
  5601. as a separate module, which is linked into an application only when
  5602. you explicitly specify it.
  5603. Although Guile is GNU software, its distribution terms add a special
  5604. exception to the usual GNU General Public License (GPL). Guile's
  5605. license includes a clause that allows you to link Guile with non-free
  5606. programs. We add this exception so as not to put Guile at a
  5607. disadvantage vis-a-vis other extensibility packages that support other
  5608. languages.
  5609. In contrast, the GNU Readline library is distributed under the GNU
  5610. General Public License pure and simple. This means that you may not
  5611. link Readline, even dynamically, into an application unless it is
  5612. distributed under a free software license that is compatible the GPL.
  5613. Because of this difference in distribution terms, an application that
  5614. can use Guile may not be able to use Readline. Now users will be
  5615. explicitly offered two independent decisions about the use of these
  5616. two packages.
  5617. You can activate the readline support by issuing
  5618. (use-modules (readline-activator))
  5619. (activate-readline)
  5620. from your ".guile" file, for example.
  5621. * Changes to the stand-alone interpreter
  5622. ** All builtins now print as primitives.
  5623. Previously builtin procedures not belonging to the fundamental subr
  5624. types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
  5625. Now, they print as #<primitive-procedure NAME>.
  5626. ** Backtraces slightly more intelligible.
  5627. gsubr-apply and macro transformer application frames no longer appear
  5628. in backtraces.
  5629. * Changes to Scheme functions and syntax
  5630. ** Guile now correctly handles internal defines by rewriting them into
  5631. their equivalent letrec. Previously, internal defines would
  5632. incrementally add to the innermost environment, without checking
  5633. whether the restrictions specified in RnRS were met. This lead to the
  5634. correct behaviour when these restriction actually were met, but didn't
  5635. catch all illegal uses. Such an illegal use could lead to crashes of
  5636. the Guile interpreter or other unwanted results. An example of
  5637. incorrect internal defines that made Guile behave erratically:
  5638. (let ()
  5639. (define a 1)
  5640. (define (b) a)
  5641. (define c (1+ (b)))
  5642. (define d 3)
  5643. (b))
  5644. => 2
  5645. The problem with this example is that the definition of `c' uses the
  5646. value of `b' directly. This confuses the meoization machine of Guile
  5647. so that the second call of `b' (this time in a larger environment that
  5648. also contains bindings for `c' and `d') refers to the binding of `c'
  5649. instead of `a'. You could also make Guile crash with a variation on
  5650. this theme:
  5651. (define (foo flag)
  5652. (define a 1)
  5653. (define (b flag) (if flag a 1))
  5654. (define c (1+ (b flag)))
  5655. (define d 3)
  5656. (b #t))
  5657. (foo #f)
  5658. (foo #t)
  5659. From now on, Guile will issue an `Unbound variable: b' error message
  5660. for both examples.
  5661. ** Hooks
  5662. A hook contains a list of functions which should be called on
  5663. particular occasions in an existing program. Hooks are used for
  5664. customization.
  5665. A window manager might have a hook before-window-map-hook. The window
  5666. manager uses the function run-hooks to call all functions stored in
  5667. before-window-map-hook each time a window is mapped. The user can
  5668. store functions in the hook using add-hook!.
  5669. In Guile, hooks are first class objects.
  5670. *** New function: make-hook [N_ARGS]
  5671. Return a hook for hook functions which can take N_ARGS arguments.
  5672. The default value for N_ARGS is 0.
  5673. (See also scm_make_named_hook below.)
  5674. *** New function: add-hook! HOOK PROC [APPEND_P]
  5675. Put PROC at the beginning of the list of functions stored in HOOK.
  5676. If APPEND_P is supplied, and non-false, put PROC at the end instead.
  5677. PROC must be able to take the number of arguments specified when the
  5678. hook was created.
  5679. If PROC already exists in HOOK, then remove it first.
  5680. *** New function: remove-hook! HOOK PROC
  5681. Remove PROC from the list of functions in HOOK.
  5682. *** New function: reset-hook! HOOK
  5683. Clear the list of hook functions stored in HOOK.
  5684. *** New function: run-hook HOOK ARG1 ...
  5685. Run all hook functions stored in HOOK with arguments ARG1 ... .
  5686. The number of arguments supplied must correspond to the number given
  5687. when the hook was created.
  5688. ** The function `dynamic-link' now takes optional keyword arguments.
  5689. The only keyword argument that is currently defined is `:global
  5690. BOOL'. With it, you can control whether the shared library will be
  5691. linked in global mode or not. In global mode, the symbols from the
  5692. linked library can be used to resolve references from other
  5693. dynamically linked libraries. In non-global mode, the linked
  5694. library is essentially invisible and can only be accessed via
  5695. `dynamic-func', etc. The default is now to link in global mode.
  5696. Previously, the default has been non-global mode.
  5697. The `#:global' keyword is only effective on platforms that support
  5698. the dlopen family of functions.
  5699. ** New function `provided?'
  5700. - Function: provided? FEATURE
  5701. Return true iff FEATURE is supported by this installation of
  5702. Guile. FEATURE must be a symbol naming a feature; the global
  5703. variable `*features*' is a list of available features.
  5704. ** Changes to the module (ice-9 expect):
  5705. *** The expect-strings macro now matches `$' in a regular expression
  5706. only at a line-break or end-of-file by default. Previously it would
  5707. match the end of the string accumulated so far. The old behaviour
  5708. can be obtained by setting the variable `expect-strings-exec-flags'
  5709. to 0.
  5710. *** The expect-strings macro now uses a variable `expect-strings-exec-flags'
  5711. for the regexp-exec flags. If `regexp/noteol' is included, then `$'
  5712. in a regular expression will still match before a line-break or
  5713. end-of-file. The default is `regexp/noteol'.
  5714. *** The expect-strings macro now uses a variable
  5715. `expect-strings-compile-flags' for the flags to be supplied to
  5716. `make-regexp'. The default is `regexp/newline', which was previously
  5717. hard-coded.
  5718. *** The expect macro now supplies two arguments to a match procedure:
  5719. the current accumulated string and a flag to indicate whether
  5720. end-of-file has been reached. Previously only the string was supplied.
  5721. If end-of-file is reached, the match procedure will be called an
  5722. additional time with the same accumulated string as the previous call
  5723. but with the flag set.
  5724. ** New module (ice-9 format), implementing the Common Lisp `format' function.
  5725. This code, and the documentation for it that appears here, was
  5726. borrowed from SLIB, with minor adaptations for Guile.
  5727. - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
  5728. An almost complete implementation of Common LISP format description
  5729. according to the CL reference book `Common LISP' from Guy L.
  5730. Steele, Digital Press. Backward compatible to most of the
  5731. available Scheme format implementations.
  5732. Returns `#t', `#f' or a string; has side effect of printing
  5733. according to FORMAT-STRING. If DESTINATION is `#t', the output is
  5734. to the current output port and `#t' is returned. If DESTINATION
  5735. is `#f', a formatted string is returned as the result of the call.
  5736. NEW: If DESTINATION is a string, DESTINATION is regarded as the
  5737. format string; FORMAT-STRING is then the first argument and the
  5738. output is returned as a string. If DESTINATION is a number, the
  5739. output is to the current error port if available by the
  5740. implementation. Otherwise DESTINATION must be an output port and
  5741. `#t' is returned.
  5742. FORMAT-STRING must be a string. In case of a formatting error
  5743. format returns `#f' and prints a message on the current output or
  5744. error port. Characters are output as if the string were output by
  5745. the `display' function with the exception of those prefixed by a
  5746. tilde (~). For a detailed description of the FORMAT-STRING syntax
  5747. please consult a Common LISP format reference manual. For a test
  5748. suite to verify this format implementation load `formatst.scm'.
  5749. Please send bug reports to `lutzeb@cs.tu-berlin.de'.
  5750. Note: `format' is not reentrant, i.e. only one `format'-call may
  5751. be executed at a time.
  5752. *** Format Specification (Format version 3.0)
  5753. Please consult a Common LISP format reference manual for a detailed
  5754. description of the format string syntax. For a demonstration of the
  5755. implemented directives see `formatst.scm'.
  5756. This implementation supports directive parameters and modifiers (`:'
  5757. and `@' characters). Multiple parameters must be separated by a comma
  5758. (`,'). Parameters can be numerical parameters (positive or negative),
  5759. character parameters (prefixed by a quote character (`''), variable
  5760. parameters (`v'), number of rest arguments parameter (`#'), empty and
  5761. default parameters. Directive characters are case independent. The
  5762. general form of a directive is:
  5763. DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
  5764. DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
  5765. *** Implemented CL Format Control Directives
  5766. Documentation syntax: Uppercase characters represent the
  5767. corresponding control directive characters. Lowercase characters
  5768. represent control directive parameter descriptions.
  5769. `~A'
  5770. Any (print as `display' does).
  5771. `~@A'
  5772. left pad.
  5773. `~MINCOL,COLINC,MINPAD,PADCHARA'
  5774. full padding.
  5775. `~S'
  5776. S-expression (print as `write' does).
  5777. `~@S'
  5778. left pad.
  5779. `~MINCOL,COLINC,MINPAD,PADCHARS'
  5780. full padding.
  5781. `~D'
  5782. Decimal.
  5783. `~@D'
  5784. print number sign always.
  5785. `~:D'
  5786. print comma separated.
  5787. `~MINCOL,PADCHAR,COMMACHARD'
  5788. padding.
  5789. `~X'
  5790. Hexadecimal.
  5791. `~@X'
  5792. print number sign always.
  5793. `~:X'
  5794. print comma separated.
  5795. `~MINCOL,PADCHAR,COMMACHARX'
  5796. padding.
  5797. `~O'
  5798. Octal.
  5799. `~@O'
  5800. print number sign always.
  5801. `~:O'
  5802. print comma separated.
  5803. `~MINCOL,PADCHAR,COMMACHARO'
  5804. padding.
  5805. `~B'
  5806. Binary.
  5807. `~@B'
  5808. print number sign always.
  5809. `~:B'
  5810. print comma separated.
  5811. `~MINCOL,PADCHAR,COMMACHARB'
  5812. padding.
  5813. `~NR'
  5814. Radix N.
  5815. `~N,MINCOL,PADCHAR,COMMACHARR'
  5816. padding.
  5817. `~@R'
  5818. print a number as a Roman numeral.
  5819. `~:@R'
  5820. print a number as an "old fashioned" Roman numeral.
  5821. `~:R'
  5822. print a number as an ordinal English number.
  5823. `~:@R'
  5824. print a number as a cardinal English number.
  5825. `~P'
  5826. Plural.
  5827. `~@P'
  5828. prints `y' and `ies'.
  5829. `~:P'
  5830. as `~P but jumps 1 argument backward.'
  5831. `~:@P'
  5832. as `~@P but jumps 1 argument backward.'
  5833. `~C'
  5834. Character.
  5835. `~@C'
  5836. prints a character as the reader can understand it (i.e. `#\'
  5837. prefixing).
  5838. `~:C'
  5839. prints a character as emacs does (eg. `^C' for ASCII 03).
  5840. `~F'
  5841. Fixed-format floating-point (prints a flonum like MMM.NNN).
  5842. `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
  5843. `~@F'
  5844. If the number is positive a plus sign is printed.
  5845. `~E'
  5846. Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
  5847. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
  5848. `~@E'
  5849. If the number is positive a plus sign is printed.
  5850. `~G'
  5851. General floating-point (prints a flonum either fixed or
  5852. exponential).
  5853. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
  5854. `~@G'
  5855. If the number is positive a plus sign is printed.
  5856. `~$'
  5857. Dollars floating-point (prints a flonum in fixed with signs
  5858. separated).
  5859. `~DIGITS,SCALE,WIDTH,PADCHAR$'
  5860. `~@$'
  5861. If the number is positive a plus sign is printed.
  5862. `~:@$'
  5863. A sign is always printed and appears before the padding.
  5864. `~:$'
  5865. The sign appears before the padding.
  5866. `~%'
  5867. Newline.
  5868. `~N%'
  5869. print N newlines.
  5870. `~&'
  5871. print newline if not at the beginning of the output line.
  5872. `~N&'
  5873. prints `~&' and then N-1 newlines.
  5874. `~|'
  5875. Page Separator.
  5876. `~N|'
  5877. print N page separators.
  5878. `~~'
  5879. Tilde.
  5880. `~N~'
  5881. print N tildes.
  5882. `~'<newline>
  5883. Continuation Line.
  5884. `~:'<newline>
  5885. newline is ignored, white space left.
  5886. `~@'<newline>
  5887. newline is left, white space ignored.
  5888. `~T'
  5889. Tabulation.
  5890. `~@T'
  5891. relative tabulation.
  5892. `~COLNUM,COLINCT'
  5893. full tabulation.
  5894. `~?'
  5895. Indirection (expects indirect arguments as a list).
  5896. `~@?'
  5897. extracts indirect arguments from format arguments.
  5898. `~(STR~)'
  5899. Case conversion (converts by `string-downcase').
  5900. `~:(STR~)'
  5901. converts by `string-capitalize'.
  5902. `~@(STR~)'
  5903. converts by `string-capitalize-first'.
  5904. `~:@(STR~)'
  5905. converts by `string-upcase'.
  5906. `~*'
  5907. Argument Jumping (jumps 1 argument forward).
  5908. `~N*'
  5909. jumps N arguments forward.
  5910. `~:*'
  5911. jumps 1 argument backward.
  5912. `~N:*'
  5913. jumps N arguments backward.
  5914. `~@*'
  5915. jumps to the 0th argument.
  5916. `~N@*'
  5917. jumps to the Nth argument (beginning from 0)
  5918. `~[STR0~;STR1~;...~;STRN~]'
  5919. Conditional Expression (numerical clause conditional).
  5920. `~N['
  5921. take argument from N.
  5922. `~@['
  5923. true test conditional.
  5924. `~:['
  5925. if-else-then conditional.
  5926. `~;'
  5927. clause separator.
  5928. `~:;'
  5929. default clause follows.
  5930. `~{STR~}'
  5931. Iteration (args come from the next argument (a list)).
  5932. `~N{'
  5933. at most N iterations.
  5934. `~:{'
  5935. args from next arg (a list of lists).
  5936. `~@{'
  5937. args from the rest of arguments.
  5938. `~:@{'
  5939. args from the rest args (lists).
  5940. `~^'
  5941. Up and out.
  5942. `~N^'
  5943. aborts if N = 0
  5944. `~N,M^'
  5945. aborts if N = M
  5946. `~N,M,K^'
  5947. aborts if N <= M <= K
  5948. *** Not Implemented CL Format Control Directives
  5949. `~:A'
  5950. print `#f' as an empty list (see below).
  5951. `~:S'
  5952. print `#f' as an empty list (see below).
  5953. `~<~>'
  5954. Justification.
  5955. `~:^'
  5956. (sorry I don't understand its semantics completely)
  5957. *** Extended, Replaced and Additional Control Directives
  5958. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
  5959. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
  5960. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
  5961. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
  5962. `~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
  5963. COMMAWIDTH is the number of characters between two comma
  5964. characters.
  5965. `~I'
  5966. print a R4RS complex number as `~F~@Fi' with passed parameters for
  5967. `~F'.
  5968. `~Y'
  5969. Pretty print formatting of an argument for scheme code lists.
  5970. `~K'
  5971. Same as `~?.'
  5972. `~!'
  5973. Flushes the output if format DESTINATION is a port.
  5974. `~_'
  5975. Print a `#\space' character
  5976. `~N_'
  5977. print N `#\space' characters.
  5978. `~/'
  5979. Print a `#\tab' character
  5980. `~N/'
  5981. print N `#\tab' characters.
  5982. `~NC'
  5983. Takes N as an integer representation for a character. No arguments
  5984. are consumed. N is converted to a character by `integer->char'. N
  5985. must be a positive decimal number.
  5986. `~:S'
  5987. Print out readproof. Prints out internal objects represented as
  5988. `#<...>' as strings `"#<...>"' so that the format output can always
  5989. be processed by `read'.
  5990. `~:A'
  5991. Print out readproof. Prints out internal objects represented as
  5992. `#<...>' as strings `"#<...>"' so that the format output can always
  5993. be processed by `read'.
  5994. `~Q'
  5995. Prints information and a copyright notice on the format
  5996. implementation.
  5997. `~:Q'
  5998. prints format version.
  5999. `~F, ~E, ~G, ~$'
  6000. may also print number strings, i.e. passing a number as a string
  6001. and format it accordingly.
  6002. *** Configuration Variables
  6003. The format module exports some configuration variables to suit the
  6004. systems and users needs. There should be no modification necessary for
  6005. the configuration that comes with Guile. Format detects automatically
  6006. if the running scheme system implements floating point numbers and
  6007. complex numbers.
  6008. format:symbol-case-conv
  6009. Symbols are converted by `symbol->string' so the case type of the
  6010. printed symbols is implementation dependent.
  6011. `format:symbol-case-conv' is a one arg closure which is either
  6012. `#f' (no conversion), `string-upcase', `string-downcase' or
  6013. `string-capitalize'. (default `#f')
  6014. format:iobj-case-conv
  6015. As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
  6016. implementation internal objects. (default `#f')
  6017. format:expch
  6018. The character prefixing the exponent value in `~E' printing.
  6019. (default `#\E')
  6020. *** Compatibility With Other Format Implementations
  6021. SLIB format 2.x:
  6022. See `format.doc'.
  6023. SLIB format 1.4:
  6024. Downward compatible except for padding support and `~A', `~S',
  6025. `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
  6026. `printf' padding support which is completely replaced by the CL
  6027. `format' padding style.
  6028. MIT C-Scheme 7.1:
  6029. Downward compatible except for `~', which is not documented
  6030. (ignores all characters inside the format string up to a newline
  6031. character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
  6032. numerical and variable parameters and `:/@' modifiers in the CL
  6033. sense).
  6034. Elk 1.5/2.0:
  6035. Downward compatible except for `~A' and `~S' which print in
  6036. uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
  6037. directive parameters or modifiers)).
  6038. Scheme->C 01nov91:
  6039. Downward compatible except for an optional destination parameter:
  6040. S2C accepts a format call without a destination which returns a
  6041. formatted string. This is equivalent to a #f destination in S2C.
  6042. (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
  6043. parameters or modifiers)).
  6044. ** Changes to string-handling functions.
  6045. These functions were added to support the (ice-9 format) module, above.
  6046. *** New function: string-upcase STRING
  6047. *** New function: string-downcase STRING
  6048. These are non-destructive versions of the existing string-upcase! and
  6049. string-downcase! functions.
  6050. *** New function: string-capitalize! STRING
  6051. *** New function: string-capitalize STRING
  6052. These functions convert the first letter of each word in the string to
  6053. upper case. Thus:
  6054. (string-capitalize "howdy there")
  6055. => "Howdy There"
  6056. As with the other functions, string-capitalize! modifies the string in
  6057. place, while string-capitalize returns a modified copy of its argument.
  6058. *** New function: string-ci->symbol STRING
  6059. Return a symbol whose name is STRING, but having the same case as if
  6060. the symbol had be read by `read'.
  6061. Guile can be configured to be sensitive or insensitive to case
  6062. differences in Scheme identifiers. If Guile is case-insensitive, all
  6063. symbols are converted to lower case on input. The `string-ci->symbol'
  6064. function returns a symbol whose name in STRING, transformed as Guile
  6065. would if STRING were input.
  6066. *** New function: substring-move! STRING1 START END STRING2 START
  6067. Copy the substring of STRING1 from START (inclusive) to END
  6068. (exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
  6069. string, and the source and destination areas may overlap; in all
  6070. cases, the function behaves as if all the characters were copied
  6071. simultanously.
  6072. *** Extended functions: substring-move-left! substring-move-right!
  6073. These functions now correctly copy arbitrarily overlapping substrings;
  6074. they are both synonyms for substring-move!.
  6075. ** New module (ice-9 getopt-long), with the function `getopt-long'.
  6076. getopt-long is a function for parsing command-line arguments in a
  6077. manner consistent with other GNU programs.
  6078. (getopt-long ARGS GRAMMAR)
  6079. Parse the arguments ARGS according to the argument list grammar GRAMMAR.
  6080. ARGS should be a list of strings. Its first element should be the
  6081. name of the program; subsequent elements should be the arguments
  6082. that were passed to the program on the command line. The
  6083. `program-arguments' procedure returns a list of this form.
  6084. GRAMMAR is a list of the form:
  6085. ((OPTION (PROPERTY VALUE) ...) ...)
  6086. Each OPTION should be a symbol. `getopt-long' will accept a
  6087. command-line option named `--OPTION'.
  6088. Each option can have the following (PROPERTY VALUE) pairs:
  6089. (single-char CHAR) --- Accept `-CHAR' as a single-character
  6090. equivalent to `--OPTION'. This is how to specify traditional
  6091. Unix-style flags.
  6092. (required? BOOL) --- If BOOL is true, the option is required.
  6093. getopt-long will raise an error if it is not found in ARGS.
  6094. (value BOOL) --- If BOOL is #t, the option accepts a value; if
  6095. it is #f, it does not; and if it is the symbol
  6096. `optional', the option may appear in ARGS with or
  6097. without a value.
  6098. (predicate FUNC) --- If the option accepts a value (i.e. you
  6099. specified `(value #t)' for this option), then getopt
  6100. will apply FUNC to the value, and throw an exception
  6101. if it returns #f. FUNC should be a procedure which
  6102. accepts a string and returns a boolean value; you may
  6103. need to use quasiquotes to get it into GRAMMAR.
  6104. The (PROPERTY VALUE) pairs may occur in any order, but each
  6105. property may occur only once. By default, options do not have
  6106. single-character equivalents, are not required, and do not take
  6107. values.
  6108. In ARGS, single-character options may be combined, in the usual
  6109. Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
  6110. accepts values, then it must be the last option in the
  6111. combination; the value is the next argument. So, for example, using
  6112. the following grammar:
  6113. ((apples (single-char #\a))
  6114. (blimps (single-char #\b) (value #t))
  6115. (catalexis (single-char #\c) (value #t)))
  6116. the following argument lists would be acceptable:
  6117. ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
  6118. for "blimps" and "catalexis")
  6119. ("-ab" "bang" "-c" "couth") (same)
  6120. ("-ac" "couth" "-b" "bang") (same)
  6121. ("-abc" "couth" "bang") (an error, since `-b' is not the
  6122. last option in its combination)
  6123. If an option's value is optional, then `getopt-long' decides
  6124. whether it has a value by looking at what follows it in ARGS. If
  6125. the next element is a string, and it does not appear to be an
  6126. option itself, then that string is the option's value.
  6127. The value of a long option can appear as the next element in ARGS,
  6128. or it can follow the option name, separated by an `=' character.
  6129. Thus, using the same grammar as above, the following argument lists
  6130. are equivalent:
  6131. ("--apples" "Braeburn" "--blimps" "Goodyear")
  6132. ("--apples=Braeburn" "--blimps" "Goodyear")
  6133. ("--blimps" "Goodyear" "--apples=Braeburn")
  6134. If the option "--" appears in ARGS, argument parsing stops there;
  6135. subsequent arguments are returned as ordinary arguments, even if
  6136. they resemble options. So, in the argument list:
  6137. ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
  6138. `getopt-long' will recognize the `apples' option as having the
  6139. value "Granny Smith", but it will not recognize the `blimp'
  6140. option; it will return the strings "--blimp" and "Goodyear" as
  6141. ordinary argument strings.
  6142. The `getopt-long' function returns the parsed argument list as an
  6143. assocation list, mapping option names --- the symbols from GRAMMAR
  6144. --- onto their values, or #t if the option does not accept a value.
  6145. Unused options do not appear in the alist.
  6146. All arguments that are not the value of any option are returned
  6147. as a list, associated with the empty list.
  6148. `getopt-long' throws an exception if:
  6149. - it finds an unrecognized option in ARGS
  6150. - a required option is omitted
  6151. - an option that requires an argument doesn't get one
  6152. - an option that doesn't accept an argument does get one (this can
  6153. only happen using the long option `--opt=value' syntax)
  6154. - an option predicate fails
  6155. So, for example:
  6156. (define grammar
  6157. `((lockfile-dir (required? #t)
  6158. (value #t)
  6159. (single-char #\k)
  6160. (predicate ,file-is-directory?))
  6161. (verbose (required? #f)
  6162. (single-char #\v)
  6163. (value #f))
  6164. (x-includes (single-char #\x))
  6165. (rnet-server (single-char #\y)
  6166. (predicate ,string?))))
  6167. (getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
  6168. "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
  6169. grammar)
  6170. => ((() "foo1" "-fred" "foo2" "foo3")
  6171. (rnet-server . "lamprod")
  6172. (x-includes . "/usr/include")
  6173. (lockfile-dir . "/tmp")
  6174. (verbose . #t))
  6175. ** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
  6176. It will be removed in a few releases.
  6177. ** New syntax: lambda*
  6178. ** New syntax: define*
  6179. ** New syntax: define*-public
  6180. ** New syntax: defmacro*
  6181. ** New syntax: defmacro*-public
  6182. Guile now supports optional arguments.
  6183. `lambda*', `define*', `define*-public', `defmacro*' and
  6184. `defmacro*-public' are identical to the non-* versions except that
  6185. they use an extended type of parameter list that has the following BNF
  6186. syntax (parentheses are literal, square brackets indicate grouping,
  6187. and `*', `+' and `?' have the usual meaning):
  6188. ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
  6189. [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
  6190. [[#&rest identifier]|[. identifier]]? ) | [identifier]
  6191. ext-var-decl ::= identifier | ( identifier expression )
  6192. The semantics are best illustrated with the following documentation
  6193. and examples for `lambda*':
  6194. lambda* args . body
  6195. lambda extended for optional and keyword arguments
  6196. lambda* creates a procedure that takes optional arguments. These
  6197. are specified by putting them inside brackets at the end of the
  6198. paramater list, but before any dotted rest argument. For example,
  6199. (lambda* (a b #&optional c d . e) '())
  6200. creates a procedure with fixed arguments a and b, optional arguments c
  6201. and d, and rest argument e. If the optional arguments are omitted
  6202. in a call, the variables for them are unbound in the procedure. This
  6203. can be checked with the bound? macro.
  6204. lambda* can also take keyword arguments. For example, a procedure
  6205. defined like this:
  6206. (lambda* (#&key xyzzy larch) '())
  6207. can be called with any of the argument lists (#:xyzzy 11)
  6208. (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
  6209. are given as keywords are bound to values.
  6210. Optional and keyword arguments can also be given default values
  6211. which they take on when they are not present in a call, by giving a
  6212. two-item list in place of an optional argument, for example in:
  6213. (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
  6214. foo is a fixed argument, bar is an optional argument with default
  6215. value 42, and baz is a keyword argument with default value 73.
  6216. Default value expressions are not evaluated unless they are needed
  6217. and until the procedure is called.
  6218. lambda* now supports two more special parameter list keywords.
  6219. lambda*-defined procedures now throw an error by default if a
  6220. keyword other than one of those specified is found in the actual
  6221. passed arguments. However, specifying #&allow-other-keys
  6222. immediately after the kyword argument declarations restores the
  6223. previous behavior of ignoring unknown keywords. lambda* also now
  6224. guarantees that if the same keyword is passed more than once, the
  6225. last one passed is the one that takes effect. For example,
  6226. ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
  6227. #:heads 37 #:tails 42 #:heads 99)
  6228. would result in (99 47) being displayed.
  6229. #&rest is also now provided as a synonym for the dotted syntax rest
  6230. argument. The argument lists (a . b) and (a #&rest b) are equivalent in
  6231. all respects to lambda*. This is provided for more similarity to DSSSL,
  6232. MIT-Scheme and Kawa among others, as well as for refugees from other
  6233. Lisp dialects.
  6234. Further documentation may be found in the optargs.scm file itself.
  6235. The optional argument module also exports the macros `let-optional',
  6236. `let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
  6237. are not documented here because they may be removed in the future, but
  6238. full documentation is still available in optargs.scm.
  6239. ** New syntax: and-let*
  6240. Guile now supports the `and-let*' form, described in the draft SRFI-2.
  6241. Syntax: (land* (<clause> ...) <body> ...)
  6242. Each <clause> should have one of the following forms:
  6243. (<variable> <expression>)
  6244. (<expression>)
  6245. <bound-variable>
  6246. Each <variable> or <bound-variable> should be an identifier. Each
  6247. <expression> should be a valid expression. The <body> should be a
  6248. possibly empty sequence of expressions, like the <body> of a
  6249. lambda form.
  6250. Semantics: A LAND* expression is evaluated by evaluating the
  6251. <expression> or <bound-variable> of each of the <clause>s from
  6252. left to right. The value of the first <expression> or
  6253. <bound-variable> that evaluates to a false value is returned; the
  6254. remaining <expression>s and <bound-variable>s are not evaluated.
  6255. The <body> forms are evaluated iff all the <expression>s and
  6256. <bound-variable>s evaluate to true values.
  6257. The <expression>s and the <body> are evaluated in an environment
  6258. binding each <variable> of the preceding (<variable> <expression>)
  6259. clauses to the value of the <expression>. Later bindings
  6260. shadow earlier bindings.
  6261. Guile's and-let* macro was contributed by Michael Livshin.
  6262. ** New sorting functions
  6263. *** New function: sorted? SEQUENCE LESS?
  6264. Returns `#t' when the sequence argument is in non-decreasing order
  6265. according to LESS? (that is, there is no adjacent pair `... x y
  6266. ...' for which `(less? y x)').
  6267. Returns `#f' when the sequence contains at least one out-of-order
  6268. pair. It is an error if the sequence is neither a list nor a
  6269. vector.
  6270. *** New function: merge LIST1 LIST2 LESS?
  6271. LIST1 and LIST2 are sorted lists.
  6272. Returns the sorted list of all elements in LIST1 and LIST2.
  6273. Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
  6274. in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
  6275. and that a < b1 in LIST1. Then a < b1 < b2 in the result.
  6276. (Here "<" should read "comes before".)
  6277. *** New procedure: merge! LIST1 LIST2 LESS?
  6278. Merges two lists, re-using the pairs of LIST1 and LIST2 to build
  6279. the result. If the code is compiled, and LESS? constructs no new
  6280. pairs, no pairs at all will be allocated. The first pair of the
  6281. result will be either the first pair of LIST1 or the first pair of
  6282. LIST2.
  6283. *** New function: sort SEQUENCE LESS?
  6284. Accepts either a list or a vector, and returns a new sequence
  6285. which is sorted. The new sequence is the same type as the input.
  6286. Always `(sorted? (sort sequence less?) less?)'. The original
  6287. sequence is not altered in any way. The new sequence shares its
  6288. elements with the old one; no elements are copied.
  6289. *** New procedure: sort! SEQUENCE LESS
  6290. Returns its sorted result in the original boxes. No new storage is
  6291. allocated at all. Proper usage: (set! slist (sort! slist <))
  6292. *** New function: stable-sort SEQUENCE LESS?
  6293. Similar to `sort' but stable. That is, if "equal" elements are
  6294. ordered a < b in the original sequence, they will have the same order
  6295. in the result.
  6296. *** New function: stable-sort! SEQUENCE LESS?
  6297. Similar to `sort!' but stable.
  6298. Uses temporary storage when sorting vectors.
  6299. *** New functions: sort-list, sort-list!
  6300. Added for compatibility with scsh.
  6301. ** New built-in random number support
  6302. *** New function: random N [STATE]
  6303. Accepts a positive integer or real N and returns a number of the
  6304. same type between zero (inclusive) and N (exclusive). The values
  6305. returned have a uniform distribution.
  6306. The optional argument STATE must be of the type produced by
  6307. `copy-random-state' or `seed->random-state'. It defaults to the value
  6308. of the variable `*random-state*'. This object is used to maintain the
  6309. state of the pseudo-random-number generator and is altered as a side
  6310. effect of the `random' operation.
  6311. *** New variable: *random-state*
  6312. Holds a data structure that encodes the internal state of the
  6313. random-number generator that `random' uses by default. The nature
  6314. of this data structure is implementation-dependent. It may be
  6315. printed out and successfully read back in, but may or may not
  6316. function correctly as a random-number state object in another
  6317. implementation.
  6318. *** New function: copy-random-state [STATE]
  6319. Returns a new object of type suitable for use as the value of the
  6320. variable `*random-state*' and as a second argument to `random'.
  6321. If argument STATE is given, a copy of it is returned. Otherwise a
  6322. copy of `*random-state*' is returned.
  6323. *** New function: seed->random-state SEED
  6324. Returns a new object of type suitable for use as the value of the
  6325. variable `*random-state*' and as a second argument to `random'.
  6326. SEED is a string or a number. A new state is generated and
  6327. initialized using SEED.
  6328. *** New function: random:uniform [STATE]
  6329. Returns an uniformly distributed inexact real random number in the
  6330. range between 0 and 1.
  6331. *** New procedure: random:solid-sphere! VECT [STATE]
  6332. Fills VECT with inexact real random numbers the sum of whose
  6333. squares is less than 1.0. Thinking of VECT as coordinates in
  6334. space of dimension N = `(vector-length VECT)', the coordinates are
  6335. uniformly distributed within the unit N-shere. The sum of the
  6336. squares of the numbers is returned. VECT can be either a vector
  6337. or a uniform vector of doubles.
  6338. *** New procedure: random:hollow-sphere! VECT [STATE]
  6339. Fills VECT with inexact real random numbers the sum of whose squares
  6340. is equal to 1.0. Thinking of VECT as coordinates in space of
  6341. dimension n = `(vector-length VECT)', the coordinates are uniformly
  6342. distributed over the surface of the unit n-shere. VECT can be either
  6343. a vector or a uniform vector of doubles.
  6344. *** New function: random:normal [STATE]
  6345. Returns an inexact real in a normal distribution with mean 0 and
  6346. standard deviation 1. For a normal distribution with mean M and
  6347. standard deviation D use `(+ M (* D (random:normal)))'.
  6348. *** New procedure: random:normal-vector! VECT [STATE]
  6349. Fills VECT with inexact real random numbers which are independent and
  6350. standard normally distributed (i.e., with mean 0 and variance 1).
  6351. VECT can be either a vector or a uniform vector of doubles.
  6352. *** New function: random:exp STATE
  6353. Returns an inexact real in an exponential distribution with mean 1.
  6354. For an exponential distribution with mean U use (* U (random:exp)).
  6355. ** The range of logand, logior, logxor, logtest, and logbit? have changed.
  6356. These functions now operate on numbers in the range of a C unsigned
  6357. long.
  6358. These functions used to operate on numbers in the range of a C signed
  6359. long; however, this seems inappropriate, because Guile integers don't
  6360. overflow.
  6361. ** New function: make-guardian
  6362. This is an implementation of guardians as described in
  6363. R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
  6364. Generation-Based Garbage Collector" ACM SIGPLAN Conference on
  6365. Programming Language Design and Implementation, June 1993
  6366. ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
  6367. ** New functions: delq1!, delv1!, delete1!
  6368. These procedures behave similar to delq! and friends but delete only
  6369. one object if at all.
  6370. ** New function: unread-string STRING PORT
  6371. Unread STRING to PORT, that is, push it back onto the port so that
  6372. next read operation will work on the pushed back characters.
  6373. ** unread-char can now be called multiple times
  6374. If unread-char is called multiple times, the unread characters will be
  6375. read again in last-in first-out order.
  6376. ** the procedures uniform-array-read! and uniform-array-write! now
  6377. work on any kind of port, not just ports which are open on a file.
  6378. ** Now 'l' in a port mode requests line buffering.
  6379. ** The procedure truncate-file now works on string ports as well
  6380. as file ports. If the size argument is omitted, the current
  6381. file position is used.
  6382. ** new procedure: seek PORT/FDES OFFSET WHENCE
  6383. The arguments are the same as for the old fseek procedure, but it
  6384. works on string ports as well as random-access file ports.
  6385. ** the fseek procedure now works on string ports, since it has been
  6386. redefined using seek.
  6387. ** the setvbuf procedure now uses a default size if mode is _IOFBF and
  6388. size is not supplied.
  6389. ** the newline procedure no longer flushes the port if it's not
  6390. line-buffered: previously it did if it was the current output port.
  6391. ** open-pipe and close-pipe are no longer primitive procedures, but
  6392. an emulation can be obtained using `(use-modules (ice-9 popen))'.
  6393. ** the freopen procedure has been removed.
  6394. ** new procedure: drain-input PORT
  6395. Drains PORT's read buffers (including any pushed-back characters)
  6396. and returns the contents as a single string.
  6397. ** New function: map-in-order PROC LIST1 LIST2 ...
  6398. Version of `map' which guarantees that the procedure is applied to the
  6399. lists in serial order.
  6400. ** Renamed `serial-array-copy!' and `serial-array-map!' to
  6401. `array-copy-in-order!' and `array-map-in-order!'. The old names are
  6402. now obsolete and will go away in release 1.5.
  6403. ** New syntax: collect BODY1 ...
  6404. Version of `begin' which returns a list of the results of the body
  6405. forms instead of the result of the last body form. In contrast to
  6406. `begin', `collect' allows an empty body.
  6407. ** New functions: read-history FILENAME, write-history FILENAME
  6408. Read/write command line history from/to file. Returns #t on success
  6409. and #f if an error occured.
  6410. ** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
  6411. These procedures return a list of definitions available in the specified
  6412. argument, a relative module reference. In the case of no argument,
  6413. `(current-module)' is now consulted for definitions to return, instead
  6414. of simply returning #f, the former behavior.
  6415. ** The #/ syntax for lists is no longer supported.
  6416. Earlier versions of Scheme accepted this syntax, but printed a
  6417. warning.
  6418. ** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
  6419. Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
  6420. modules.
  6421. * Changes to the gh_ interface
  6422. ** gh_scm2doubles
  6423. Now takes a second argument which is the result array. If this
  6424. pointer is NULL, a new array is malloced (the old behaviour).
  6425. ** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
  6426. gh_scm2shorts, gh_scm2longs, gh_scm2floats
  6427. New functions.
  6428. * Changes to the scm_ interface
  6429. ** Function: scm_make_named_hook (char* name, int n_args)
  6430. Creates a hook in the same way as make-hook above but also
  6431. binds a variable named NAME to it.
  6432. This is the typical way of creating a hook from C code.
  6433. Currently, the variable is created in the "current" module. This
  6434. might change when we get the new module system.
  6435. ** The smob interface
  6436. The interface for creating smobs has changed. For documentation, see
  6437. data-rep.info (made from guile-core/doc/data-rep.texi).
  6438. *** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
  6439. >>> This function will be removed in 1.3.4. <<<
  6440. It is replaced by:
  6441. *** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
  6442. This function adds a new smob type, named NAME, with instance size
  6443. SIZE to the system. The return value is a tag that is used in
  6444. creating instances of the type. If SIZE is 0, then no memory will
  6445. be allocated when instances of the smob are created, and nothing
  6446. will be freed by the default free function.
  6447. *** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
  6448. This function sets the smob marking procedure for the smob type
  6449. specified by the tag TC. TC is the tag returned by
  6450. `scm_make_smob_type'.
  6451. *** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
  6452. This function sets the smob freeing procedure for the smob type
  6453. specified by the tag TC. TC is the tag returned by
  6454. `scm_make_smob_type'.
  6455. *** Function: void scm_set_smob_print (tc, print)
  6456. - Function: void scm_set_smob_print (long tc,
  6457. scm_sizet (*print) (SCM,
  6458. SCM,
  6459. scm_print_state *))
  6460. This function sets the smob printing procedure for the smob type
  6461. specified by the tag TC. TC is the tag returned by
  6462. `scm_make_smob_type'.
  6463. *** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
  6464. This function sets the smob equality-testing predicate for the
  6465. smob type specified by the tag TC. TC is the tag returned by
  6466. `scm_make_smob_type'.
  6467. *** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
  6468. Make VALUE contain a smob instance of the type with type code TC and
  6469. smob data DATA. VALUE must be previously declared as C type `SCM'.
  6470. *** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
  6471. This macro expands to a block of code that creates a smob instance
  6472. of the type with type code TC and smob data DATA, and returns that
  6473. `SCM' value. It should be the last piece of code in a block.
  6474. ** The interfaces for using I/O ports and implementing port types
  6475. (ptobs) have changed significantly. The new interface is based on
  6476. shared access to buffers and a new set of ptob procedures.
  6477. *** scm_newptob has been removed
  6478. It is replaced by:
  6479. *** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
  6480. - Function: SCM scm_make_port_type (char *type_name,
  6481. int (*fill_buffer) (SCM port),
  6482. void (*write_flush) (SCM port));
  6483. Similarly to the new smob interface, there is a set of function
  6484. setters by which the user can customize the behaviour of his port
  6485. type. See ports.h (scm_set_port_XXX).
  6486. ** scm_strport_to_string: New function: creates a new string from
  6487. a string port's buffer.
  6488. ** Plug in interface for random number generators
  6489. The variable `scm_the_rng' in random.c contains a value and three
  6490. function pointers which together define the current random number
  6491. generator being used by the Scheme level interface and the random
  6492. number library functions.
  6493. The user is free to replace the default generator with the generator
  6494. of his own choice.
  6495. *** Variable: size_t scm_the_rng.rstate_size
  6496. The size of the random state type used by the current RNG
  6497. measured in chars.
  6498. *** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
  6499. Given the random STATE, return 32 random bits.
  6500. *** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
  6501. Seed random state STATE using string S of length N.
  6502. *** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
  6503. Given random state STATE, return a malloced copy.
  6504. ** Default RNG
  6505. The default RNG is the MWC (Multiply With Carry) random number
  6506. generator described by George Marsaglia at the Department of
  6507. Statistics and Supercomputer Computations Research Institute, The
  6508. Florida State University (http://stat.fsu.edu/~geo).
  6509. It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
  6510. passes all tests in the DIEHARD test suite
  6511. (http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
  6512. costs one multiply and one add on platforms which either supports long
  6513. longs (gcc does this on most systems) or have 64 bit longs. The cost
  6514. is four multiply on other systems but this can be optimized by writing
  6515. scm_i_uniform32 in assembler.
  6516. These functions are provided through the scm_the_rng interface for use
  6517. by libguile and the application.
  6518. *** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
  6519. Given the random STATE, return 32 random bits.
  6520. Don't use this function directly. Instead go through the plugin
  6521. interface (see "Plug in interface" above).
  6522. *** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
  6523. Initialize STATE using SEED of length N.
  6524. *** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
  6525. Return a malloc:ed copy of STATE. This function can easily be re-used
  6526. in the interfaces to other RNGs.
  6527. ** Random number library functions
  6528. These functions use the current RNG through the scm_the_rng interface.
  6529. It might be a good idea to use these functions from your C code so
  6530. that only one random generator is used by all code in your program.
  6531. The default random state is stored in:
  6532. *** Variable: SCM scm_var_random_state
  6533. Contains the vcell of the Scheme variable "*random-state*" which is
  6534. used as default state by all random number functions in the Scheme
  6535. level interface.
  6536. Example:
  6537. double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
  6538. *** Function: scm_rstate *scm_c_default_rstate (void)
  6539. This is a convenience function which returns the value of
  6540. scm_var_random_state. An error message is generated if this value
  6541. isn't a random state.
  6542. *** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
  6543. Make a new random state from the string SEED of length LENGTH.
  6544. It is generally not a good idea to use multiple random states in a
  6545. program. While subsequent random numbers generated from one random
  6546. state are guaranteed to be reasonably independent, there is no such
  6547. guarantee for numbers generated from different random states.
  6548. *** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
  6549. Return 32 random bits.
  6550. *** Function: double scm_c_uniform01 (scm_rstate *STATE)
  6551. Return a sample from the uniform(0,1) distribution.
  6552. *** Function: double scm_c_normal01 (scm_rstate *STATE)
  6553. Return a sample from the normal(0,1) distribution.
  6554. *** Function: double scm_c_exp1 (scm_rstate *STATE)
  6555. Return a sample from the exp(1) distribution.
  6556. *** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
  6557. Return a sample from the discrete uniform(0,M) distribution.
  6558. *** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
  6559. Return a sample from the discrete uniform(0,M) distribution.
  6560. M must be a bignum object. The returned value may be an INUM.
  6561. Changes in Guile 1.3 (released Monday, October 19, 1998):
  6562. * Changes to the distribution
  6563. ** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
  6564. To avoid conflicts, programs should name environment variables after
  6565. themselves, except when there's a common practice establishing some
  6566. other convention.
  6567. For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
  6568. giving the former precedence, and printing a warning message if the
  6569. latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
  6570. ** The header files related to multi-byte characters have been removed.
  6571. They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
  6572. which referred to these explicitly will probably need to be rewritten,
  6573. since the support for the variant string types has been removed; see
  6574. below.
  6575. ** The header files append.h and sequences.h have been removed. These
  6576. files implemented non-R4RS operations which would encourage
  6577. non-portable programming style and less easy-to-read code.
  6578. * Changes to the stand-alone interpreter
  6579. ** New procedures have been added to implement a "batch mode":
  6580. *** Function: batch-mode?
  6581. Returns a boolean indicating whether the interpreter is in batch
  6582. mode.
  6583. *** Function: set-batch-mode?! ARG
  6584. If ARG is true, switches the interpreter to batch mode. The `#f'
  6585. case has not been implemented.
  6586. ** Guile now provides full command-line editing, when run interactively.
  6587. To use this feature, you must have the readline library installed.
  6588. The Guile build process will notice it, and automatically include
  6589. support for it.
  6590. The readline library is available via anonymous FTP from any GNU
  6591. mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
  6592. ** the-last-stack is now a fluid.
  6593. * Changes to the procedure for linking libguile with your programs
  6594. ** You can now use the `guile-config' utility to build programs that use Guile.
  6595. Guile now includes a command-line utility called `guile-config', which
  6596. can provide information about how to compile and link programs that
  6597. use Guile.
  6598. *** `guile-config compile' prints any C compiler flags needed to use Guile.
  6599. You should include this command's output on the command line you use
  6600. to compile C or C++ code that #includes the Guile header files. It's
  6601. usually just a `-I' flag to help the compiler find the Guile headers.
  6602. *** `guile-config link' prints any linker flags necessary to link with Guile.
  6603. This command writes to its standard output a list of flags which you
  6604. must pass to the linker to link your code against the Guile library.
  6605. The flags include '-lguile' itself, any other libraries the Guile
  6606. library depends upon, and any `-L' flags needed to help the linker
  6607. find those libraries.
  6608. For example, here is a Makefile rule that builds a program named 'foo'
  6609. from the object files ${FOO_OBJECTS}, and links them against Guile:
  6610. foo: ${FOO_OBJECTS}
  6611. ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
  6612. Previous Guile releases recommended that you use autoconf to detect
  6613. which of a predefined set of libraries were present on your system.
  6614. It is more robust to use `guile-config', since it records exactly which
  6615. libraries the installed Guile library requires.
  6616. This was originally called `build-guile', but was renamed to
  6617. `guile-config' before Guile 1.3 was released, to be consistent with
  6618. the analogous script for the GTK+ GUI toolkit, which is called
  6619. `gtk-config'.
  6620. ** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
  6621. If you are using the GNU autoconf package to configure your program,
  6622. you can use the GUILE_FLAGS autoconf macro to call `guile-config'
  6623. (described above) and gather the necessary values for use in your
  6624. Makefiles.
  6625. The GUILE_FLAGS macro expands to configure script code which runs the
  6626. `guile-config' script, to find out where Guile's header files and
  6627. libraries are installed. It sets two variables, marked for
  6628. substitution, as by AC_SUBST.
  6629. GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
  6630. code that uses Guile header files. This is almost always just a
  6631. -I flag.
  6632. GUILE_LDFLAGS --- flags to pass to the linker to link a
  6633. program against Guile. This includes `-lguile' for the Guile
  6634. library itself, any libraries that Guile itself requires (like
  6635. -lqthreads), and so on. It may also include a -L flag to tell the
  6636. compiler where to find the libraries.
  6637. GUILE_FLAGS is defined in the file guile.m4, in the top-level
  6638. directory of the Guile distribution. You can copy it into your
  6639. package's aclocal.m4 file, and then use it in your configure.in file.
  6640. If you are using the `aclocal' program, distributed with GNU automake,
  6641. to maintain your aclocal.m4 file, the Guile installation process
  6642. installs guile.m4 where aclocal will find it. All you need to do is
  6643. use GUILE_FLAGS in your configure.in file, and then run `aclocal';
  6644. this will copy the definition of GUILE_FLAGS into your aclocal.m4
  6645. file.
  6646. * Changes to Scheme functions and syntax
  6647. ** Multi-byte strings have been removed, as have multi-byte and wide
  6648. ports. We felt that these were the wrong approach to
  6649. internationalization support.
  6650. ** New function: readline [PROMPT]
  6651. Read a line from the terminal, and allow the user to edit it,
  6652. prompting with PROMPT. READLINE provides a large set of Emacs-like
  6653. editing commands, lets the user recall previously typed lines, and
  6654. works on almost every kind of terminal, including dumb terminals.
  6655. READLINE assumes that the cursor is at the beginning of the line when
  6656. it is invoked. Thus, you can't print a prompt yourself, and then call
  6657. READLINE; you need to package up your prompt as a string, pass it to
  6658. the function, and let READLINE print the prompt itself. This is
  6659. because READLINE needs to know the prompt's screen width.
  6660. For Guile to provide this function, you must have the readline
  6661. library, version 2.1 or later, installed on your system. Readline is
  6662. available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
  6663. any GNU mirror site.
  6664. See also ADD-HISTORY function.
  6665. ** New function: add-history STRING
  6666. Add STRING as the most recent line in the history used by the READLINE
  6667. command. READLINE does not add lines to the history itself; you must
  6668. call ADD-HISTORY to make previous input available to the user.
  6669. ** The behavior of the read-line function has changed.
  6670. This function now uses standard C library functions to read the line,
  6671. for speed. This means that it doesn not respect the value of
  6672. scm-line-incrementors; it assumes that lines are delimited with
  6673. #\newline.
  6674. (Note that this is read-line, the function that reads a line of text
  6675. from a port, not readline, the function that reads a line from a
  6676. terminal, providing full editing capabilities.)
  6677. ** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
  6678. This module provides some simple argument parsing. It exports one
  6679. function:
  6680. Function: getopt-gnu-style ARG-LS
  6681. Parse a list of program arguments into an alist of option
  6682. descriptions.
  6683. Each item in the list of program arguments is examined to see if
  6684. it meets the syntax of a GNU long-named option. An argument like
  6685. `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
  6686. returned alist, where MUMBLE is a keyword object with the same
  6687. name as the argument. An argument like `--MUMBLE=FROB' produces
  6688. an element of the form (MUMBLE . FROB), where FROB is a string.
  6689. As a special case, the returned alist also contains a pair whose
  6690. car is the symbol `rest'. The cdr of this pair is a list
  6691. containing all the items in the argument list that are not options
  6692. of the form mentioned above.
  6693. The argument `--' is treated specially: all items in the argument
  6694. list appearing after such an argument are not examined, and are
  6695. returned in the special `rest' list.
  6696. This function does not parse normal single-character switches.
  6697. You will need to parse them out of the `rest' list yourself.
  6698. ** The read syntax for byte vectors and short vectors has changed.
  6699. Instead of #bytes(...), write #y(...).
  6700. Instead of #short(...), write #h(...).
  6701. This may seem nutty, but, like the other uniform vectors, byte vectors
  6702. and short vectors want to have the same print and read syntax (and,
  6703. more basic, want to have read syntax!). Changing the read syntax to
  6704. use multiple characters after the hash sign breaks with the
  6705. conventions used in R5RS and the conventions used for the other
  6706. uniform vectors. It also introduces complexity in the current reader,
  6707. both on the C and Scheme levels. (The Right solution is probably to
  6708. change the syntax and prototypes for uniform vectors entirely.)
  6709. ** The new module (ice-9 session) provides useful interactive functions.
  6710. *** New procedure: (apropos REGEXP OPTION ...)
  6711. Display a list of top-level variables whose names match REGEXP, and
  6712. the modules they are imported from. Each OPTION should be one of the
  6713. following symbols:
  6714. value --- Show the value of each matching variable.
  6715. shadow --- Show bindings shadowed by subsequently imported modules.
  6716. full --- Same as both `shadow' and `value'.
  6717. For example:
  6718. guile> (apropos "trace" 'full)
  6719. debug: trace #<procedure trace args>
  6720. debug: untrace #<procedure untrace args>
  6721. the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
  6722. the-scm-module: before-backtrace-hook ()
  6723. the-scm-module: backtrace #<primitive-procedure backtrace>
  6724. the-scm-module: after-backtrace-hook ()
  6725. the-scm-module: has-shown-backtrace-hint? #f
  6726. guile>
  6727. ** There are new functions and syntax for working with macros.
  6728. Guile implements macros as a special object type. Any variable whose
  6729. top-level binding is a macro object acts as a macro. The macro object
  6730. specifies how the expression should be transformed before evaluation.
  6731. *** Macro objects now print in a reasonable way, resembling procedures.
  6732. *** New function: (macro? OBJ)
  6733. True iff OBJ is a macro object.
  6734. *** New function: (primitive-macro? OBJ)
  6735. Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
  6736. macro transformers, implemented in eval.c rather than Scheme code.
  6737. Why do we have this function?
  6738. - For symmetry with procedure? and primitive-procedure?,
  6739. - to allow custom print procedures to tell whether a macro is
  6740. primitive, and display it differently, and
  6741. - to allow compilers and user-written evaluators to distinguish
  6742. builtin special forms from user-defined ones, which could be
  6743. compiled.
  6744. *** New function: (macro-type OBJ)
  6745. Return a value indicating what kind of macro OBJ is. Possible return
  6746. values are:
  6747. The symbol `syntax' --- a macro created by procedure->syntax.
  6748. The symbol `macro' --- a macro created by procedure->macro.
  6749. The symbol `macro!' --- a macro created by procedure->memoizing-macro.
  6750. The boolean #f --- if OBJ is not a macro object.
  6751. *** New function: (macro-name MACRO)
  6752. Return the name of the macro object MACRO's procedure, as returned by
  6753. procedure-name.
  6754. *** New function: (macro-transformer MACRO)
  6755. Return the transformer procedure for MACRO.
  6756. *** New syntax: (use-syntax MODULE ... TRANSFORMER)
  6757. Specify a new macro expander to use in the current module. Each
  6758. MODULE is a module name, with the same meaning as in the `use-modules'
  6759. form; each named module's exported bindings are added to the current
  6760. top-level environment. TRANSFORMER is an expression evaluated in the
  6761. resulting environment which must yield a procedure to use as the
  6762. module's eval transformer: every expression evaluated in this module
  6763. is passed to this function, and the result passed to the Guile
  6764. interpreter.
  6765. *** macro-eval! is removed. Use local-eval instead.
  6766. ** Some magic has been added to the printer to better handle user
  6767. written printing routines (like record printers, closure printers).
  6768. The problem is that these user written routines must have access to
  6769. the current `print-state' to be able to handle fancy things like
  6770. detection of circular references. These print-states have to be
  6771. passed to the builtin printing routines (display, write, etc) to
  6772. properly continue the print chain.
  6773. We didn't want to change all existing print code so that it
  6774. explicitly passes thru a print state in addition to a port. Instead,
  6775. we extented the possible values that the builtin printing routines
  6776. accept as a `port'. In addition to a normal port, they now also take
  6777. a pair of a normal port and a print-state. Printing will go to the
  6778. port and the print-state will be used to control the detection of
  6779. circular references, etc. If the builtin function does not care for a
  6780. print-state, it is simply ignored.
  6781. User written callbacks are now called with such a pair as their
  6782. `port', but because every function now accepts this pair as a PORT
  6783. argument, you don't have to worry about that. In fact, it is probably
  6784. safest to not check for these pairs.
  6785. However, it is sometimes necessary to continue a print chain on a
  6786. different port, for example to get a intermediate string
  6787. representation of the printed value, mangle that string somehow, and
  6788. then to finally print the mangled string. Use the new function
  6789. inherit-print-state OLD-PORT NEW-PORT
  6790. for this. It constructs a new `port' that prints to NEW-PORT but
  6791. inherits the print-state of OLD-PORT.
  6792. ** struct-vtable-offset renamed to vtable-offset-user
  6793. ** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
  6794. ** There is now a third optional argument to make-vtable-vtable
  6795. (and fourth to make-struct) when constructing new types (vtables).
  6796. This argument initializes field vtable-index-printer of the vtable.
  6797. ** The detection of circular references has been extended to structs.
  6798. That is, a structure that -- in the process of being printed -- prints
  6799. itself does not lead to infinite recursion.
  6800. ** There is now some basic support for fluids. Please read
  6801. "libguile/fluid.h" to find out more. It is accessible from Scheme with
  6802. the following functions and macros:
  6803. Function: make-fluid
  6804. Create a new fluid object. Fluids are not special variables or
  6805. some other extension to the semantics of Scheme, but rather
  6806. ordinary Scheme objects. You can store them into variables (that
  6807. are still lexically scoped, of course) or into any other place you
  6808. like. Every fluid has a initial value of `#f'.
  6809. Function: fluid? OBJ
  6810. Test whether OBJ is a fluid.
  6811. Function: fluid-ref FLUID
  6812. Function: fluid-set! FLUID VAL
  6813. Access/modify the fluid FLUID. Modifications are only visible
  6814. within the current dynamic root (that includes threads).
  6815. Function: with-fluids* FLUIDS VALUES THUNK
  6816. FLUIDS is a list of fluids and VALUES a corresponding list of
  6817. values for these fluids. Before THUNK gets called the values are
  6818. installed in the fluids and the old values of the fluids are
  6819. saved in the VALUES list. When the flow of control leaves THUNK
  6820. or reenters it, the values get swapped again. You might think of
  6821. this as a `safe-fluid-excursion'. Note that the VALUES list is
  6822. modified by `with-fluids*'.
  6823. Macro: with-fluids ((FLUID VALUE) ...) FORM ...
  6824. The same as `with-fluids*' but with a different syntax. It looks
  6825. just like `let', but both FLUID and VALUE are evaluated. Remember,
  6826. fluids are not special variables but ordinary objects. FLUID
  6827. should evaluate to a fluid.
  6828. ** Changes to system call interfaces:
  6829. *** close-port, close-input-port and close-output-port now return a
  6830. boolean instead of an `unspecified' object. #t means that the port
  6831. was successfully closed, while #f means it was already closed. It is
  6832. also now possible for these procedures to raise an exception if an
  6833. error occurs (some errors from write can be delayed until close.)
  6834. *** the first argument to chmod, fcntl, ftell and fseek can now be a
  6835. file descriptor.
  6836. *** the third argument to fcntl is now optional.
  6837. *** the first argument to chown can now be a file descriptor or a port.
  6838. *** the argument to stat can now be a port.
  6839. *** The following new procedures have been added (most use scsh
  6840. interfaces):
  6841. *** procedure: close PORT/FD
  6842. Similar to close-port (*note close-port: Closing Ports.), but also
  6843. works on file descriptors. A side effect of closing a file
  6844. descriptor is that any ports using that file descriptor are moved
  6845. to a different file descriptor and have their revealed counts set
  6846. to zero.
  6847. *** procedure: port->fdes PORT
  6848. Returns the integer file descriptor underlying PORT. As a side
  6849. effect the revealed count of PORT is incremented.
  6850. *** procedure: fdes->ports FDES
  6851. Returns a list of existing ports which have FDES as an underlying
  6852. file descriptor, without changing their revealed counts.
  6853. *** procedure: fdes->inport FDES
  6854. Returns an existing input port which has FDES as its underlying
  6855. file descriptor, if one exists, and increments its revealed count.
  6856. Otherwise, returns a new input port with a revealed count of 1.
  6857. *** procedure: fdes->outport FDES
  6858. Returns an existing output port which has FDES as its underlying
  6859. file descriptor, if one exists, and increments its revealed count.
  6860. Otherwise, returns a new output port with a revealed count of 1.
  6861. The next group of procedures perform a `dup2' system call, if NEWFD
  6862. (an integer) is supplied, otherwise a `dup'. The file descriptor to be
  6863. duplicated can be supplied as an integer or contained in a port. The
  6864. type of value returned varies depending on which procedure is used.
  6865. All procedures also have the side effect when performing `dup2' that
  6866. any ports using NEWFD are moved to a different file descriptor and have
  6867. their revealed counts set to zero.
  6868. *** procedure: dup->fdes PORT/FD [NEWFD]
  6869. Returns an integer file descriptor.
  6870. *** procedure: dup->inport PORT/FD [NEWFD]
  6871. Returns a new input port using the new file descriptor.
  6872. *** procedure: dup->outport PORT/FD [NEWFD]
  6873. Returns a new output port using the new file descriptor.
  6874. *** procedure: dup PORT/FD [NEWFD]
  6875. Returns a new port if PORT/FD is a port, with the same mode as the
  6876. supplied port, otherwise returns an integer file descriptor.
  6877. *** procedure: dup->port PORT/FD MODE [NEWFD]
  6878. Returns a new port using the new file descriptor. MODE supplies a
  6879. mode string for the port (*note open-file: File Ports.).
  6880. *** procedure: setenv NAME VALUE
  6881. Modifies the environment of the current process, which is also the
  6882. default environment inherited by child processes.
  6883. If VALUE is `#f', then NAME is removed from the environment.
  6884. Otherwise, the string NAME=VALUE is added to the environment,
  6885. replacing any existing string with name matching NAME.
  6886. The return value is unspecified.
  6887. *** procedure: truncate-file OBJ SIZE
  6888. Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
  6889. can be a string containing a file name or an integer file
  6890. descriptor or port open for output on the file. The underlying
  6891. system calls are `truncate' and `ftruncate'.
  6892. The return value is unspecified.
  6893. *** procedure: setvbuf PORT MODE [SIZE]
  6894. Set the buffering mode for PORT. MODE can be:
  6895. `_IONBF'
  6896. non-buffered
  6897. `_IOLBF'
  6898. line buffered
  6899. `_IOFBF'
  6900. block buffered, using a newly allocated buffer of SIZE bytes.
  6901. However if SIZE is zero or unspecified, the port will be made
  6902. non-buffered.
  6903. This procedure should not be used after I/O has been performed with
  6904. the port.
  6905. Ports are usually block buffered by default, with a default buffer
  6906. size. Procedures e.g., *Note open-file: File Ports, which accept a
  6907. mode string allow `0' to be added to request an unbuffered port.
  6908. *** procedure: fsync PORT/FD
  6909. Copies any unwritten data for the specified output file descriptor
  6910. to disk. If PORT/FD is a port, its buffer is flushed before the
  6911. underlying file descriptor is fsync'd. The return value is
  6912. unspecified.
  6913. *** procedure: open-fdes PATH FLAGS [MODES]
  6914. Similar to `open' but returns a file descriptor instead of a port.
  6915. *** procedure: execle PATH ENV [ARG] ...
  6916. Similar to `execl', but the environment of the new process is
  6917. specified by ENV, which must be a list of strings as returned by
  6918. the `environ' procedure.
  6919. This procedure is currently implemented using the `execve' system
  6920. call, but we call it `execle' because of its Scheme calling
  6921. interface.
  6922. *** procedure: strerror ERRNO
  6923. Returns the Unix error message corresponding to ERRNO, an integer.
  6924. *** procedure: primitive-exit [STATUS]
  6925. Terminate the current process without unwinding the Scheme stack.
  6926. This is would typically be useful after a fork. The exit status
  6927. is STATUS if supplied, otherwise zero.
  6928. *** procedure: times
  6929. Returns an object with information about real and processor time.
  6930. The following procedures accept such an object as an argument and
  6931. return a selected component:
  6932. `tms:clock'
  6933. The current real time, expressed as time units relative to an
  6934. arbitrary base.
  6935. `tms:utime'
  6936. The CPU time units used by the calling process.
  6937. `tms:stime'
  6938. The CPU time units used by the system on behalf of the
  6939. calling process.
  6940. `tms:cutime'
  6941. The CPU time units used by terminated child processes of the
  6942. calling process, whose status has been collected (e.g., using
  6943. `waitpid').
  6944. `tms:cstime'
  6945. Similarly, the CPU times units used by the system on behalf of
  6946. terminated child processes.
  6947. ** Removed: list-length
  6948. ** Removed: list-append, list-append!
  6949. ** Removed: list-reverse, list-reverse!
  6950. ** array-map renamed to array-map!
  6951. ** serial-array-map renamed to serial-array-map!
  6952. ** catch doesn't take #f as first argument any longer
  6953. Previously, it was possible to pass #f instead of a key to `catch'.
  6954. That would cause `catch' to pass a jump buffer object to the procedure
  6955. passed as second argument. The procedure could then use this jump
  6956. buffer objekt as an argument to throw.
  6957. This mechanism has been removed since its utility doesn't motivate the
  6958. extra complexity it introduces.
  6959. ** The `#/' notation for lists now provokes a warning message from Guile.
  6960. This syntax will be removed from Guile in the near future.
  6961. To disable the warning message, set the GUILE_HUSH environment
  6962. variable to any non-empty value.
  6963. ** The newline character now prints as `#\newline', following the
  6964. normal Scheme notation, not `#\nl'.
  6965. * Changes to the gh_ interface
  6966. ** The gh_enter function now takes care of loading the Guile startup files.
  6967. gh_enter works by calling scm_boot_guile; see the remarks below.
  6968. ** Function: void gh_write (SCM x)
  6969. Write the printed representation of the scheme object x to the current
  6970. output port. Corresponds to the scheme level `write'.
  6971. ** gh_list_length renamed to gh_length.
  6972. ** vector handling routines
  6973. Several major changes. In particular, gh_vector() now resembles
  6974. (vector ...) (with a caveat -- see manual), and gh_make_vector() now
  6975. exists and behaves like (make-vector ...). gh_vset() and gh_vref()
  6976. have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
  6977. vector-related gh_ functions have been implemented.
  6978. ** pair and list routines
  6979. Implemented several of the R4RS pair and list functions that were
  6980. missing.
  6981. ** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
  6982. New function. Converts double arrays back and forth between Scheme
  6983. and C.
  6984. * Changes to the scm_ interface
  6985. ** The function scm_boot_guile now takes care of loading the startup files.
  6986. Guile's primary initialization function, scm_boot_guile, now takes
  6987. care of loading `boot-9.scm', in the `ice-9' module, to initialize
  6988. Guile, define the module system, and put together some standard
  6989. bindings. It also loads `init.scm', which is intended to hold
  6990. site-specific initialization code.
  6991. Since Guile cannot operate properly until boot-9.scm is loaded, there
  6992. is no reason to separate loading boot-9.scm from Guile's other
  6993. initialization processes.
  6994. This job used to be done by scm_compile_shell_switches, which didn't
  6995. make much sense; in particular, it meant that people using Guile for
  6996. non-shell-like applications had to jump through hoops to get Guile
  6997. initialized properly.
  6998. ** The function scm_compile_shell_switches no longer loads the startup files.
  6999. Now, Guile always loads the startup files, whenever it is initialized;
  7000. see the notes above for scm_boot_guile and scm_load_startup_files.
  7001. ** Function: scm_load_startup_files
  7002. This new function takes care of loading Guile's initialization file
  7003. (`boot-9.scm'), and the site initialization file, `init.scm'. Since
  7004. this is always called by the Guile initialization process, it's
  7005. probably not too useful to call this yourself, but it's there anyway.
  7006. ** The semantics of smob marking have changed slightly.
  7007. The smob marking function (the `mark' member of the scm_smobfuns
  7008. structure) is no longer responsible for setting the mark bit on the
  7009. smob. The generic smob handling code in the garbage collector will
  7010. set this bit. The mark function need only ensure that any other
  7011. objects the smob refers to get marked.
  7012. Note that this change means that the smob's GC8MARK bit is typically
  7013. already set upon entry to the mark function. Thus, marking functions
  7014. which look like this:
  7015. {
  7016. if (SCM_GC8MARKP (ptr))
  7017. return SCM_BOOL_F;
  7018. SCM_SETGC8MARK (ptr);
  7019. ... mark objects to which the smob refers ...
  7020. }
  7021. are now incorrect, since they will return early, and fail to mark any
  7022. other objects the smob refers to. Some code in the Guile library used
  7023. to work this way.
  7024. ** The semantics of the I/O port functions in scm_ptobfuns have changed.
  7025. If you have implemented your own I/O port type, by writing the
  7026. functions required by the scm_ptobfuns and then calling scm_newptob,
  7027. you will need to change your functions slightly.
  7028. The functions in a scm_ptobfuns structure now expect the port itself
  7029. as their argument; they used to expect the `stream' member of the
  7030. port's scm_port_table structure. This allows functions in an
  7031. scm_ptobfuns structure to easily access the port's cell (and any flags
  7032. it its CAR), and the port's scm_port_table structure.
  7033. Guile now passes the I/O port itself as the `port' argument in the
  7034. following scm_ptobfuns functions:
  7035. int (*free) (SCM port);
  7036. int (*fputc) (int, SCM port);
  7037. int (*fputs) (char *, SCM port);
  7038. scm_sizet (*fwrite) SCM_P ((char *ptr,
  7039. scm_sizet size,
  7040. scm_sizet nitems,
  7041. SCM port));
  7042. int (*fflush) (SCM port);
  7043. int (*fgetc) (SCM port);
  7044. int (*fclose) (SCM port);
  7045. The interfaces to the `mark', `print', `equalp', and `fgets' methods
  7046. are unchanged.
  7047. If you have existing code which defines its own port types, it is easy
  7048. to convert your code to the new interface; simply apply SCM_STREAM to
  7049. the port argument to yield the value you code used to expect.
  7050. Note that since both the port and the stream have the same type in the
  7051. C code --- they are both SCM values --- the C compiler will not remind
  7052. you if you forget to update your scm_ptobfuns functions.
  7053. ** Function: int scm_internal_select (int fds,
  7054. SELECT_TYPE *rfds,
  7055. SELECT_TYPE *wfds,
  7056. SELECT_TYPE *efds,
  7057. struct timeval *timeout);
  7058. This is a replacement for the `select' function provided by the OS.
  7059. It enables I/O blocking and sleeping to happen for one cooperative
  7060. thread without blocking other threads. It also avoids busy-loops in
  7061. these situations. It is intended that all I/O blocking and sleeping
  7062. will finally go through this function. Currently, this function is
  7063. only available on systems providing `gettimeofday' and `select'.
  7064. ** Function: SCM scm_internal_stack_catch (SCM tag,
  7065. scm_catch_body_t body,
  7066. void *body_data,
  7067. scm_catch_handler_t handler,
  7068. void *handler_data)
  7069. A new sibling to the other two C level `catch' functions
  7070. scm_internal_catch and scm_internal_lazy_catch. Use it if you want
  7071. the stack to be saved automatically into the variable `the-last-stack'
  7072. (scm_the_last_stack_var) on error. This is necessary if you want to
  7073. use advanced error reporting, such as calling scm_display_error and
  7074. scm_display_backtrace. (They both take a stack object as argument.)
  7075. ** Function: SCM scm_spawn_thread (scm_catch_body_t body,
  7076. void *body_data,
  7077. scm_catch_handler_t handler,
  7078. void *handler_data)
  7079. Spawns a new thread. It does a job similar to
  7080. scm_call_with_new_thread but takes arguments more suitable when
  7081. spawning threads from application C code.
  7082. ** The hook scm_error_callback has been removed. It was originally
  7083. intended as a way for the user to install his own error handler. But
  7084. that method works badly since it intervenes between throw and catch,
  7085. thereby changing the semantics of expressions like (catch #t ...).
  7086. The correct way to do it is to use one of the C level catch functions
  7087. in throw.c: scm_internal_catch/lazy_catch/stack_catch.
  7088. ** Removed functions:
  7089. scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
  7090. scm_list_reverse, scm_list_reverse_x
  7091. ** New macros: SCM_LISTn where n is one of the integers 0-9.
  7092. These can be used for pretty list creation from C. The idea is taken
  7093. from Erick Gallesio's STk.
  7094. ** scm_array_map renamed to scm_array_map_x
  7095. ** mbstrings are now removed
  7096. This means that the type codes scm_tc7_mb_string and
  7097. scm_tc7_mb_substring has been removed.
  7098. ** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
  7099. Since we no longer support multi-byte strings, these I/O functions
  7100. have been simplified, and renamed. Here are their old names, and
  7101. their new names and arguments:
  7102. scm_gen_putc -> void scm_putc (int c, SCM port);
  7103. scm_gen_puts -> void scm_puts (char *s, SCM port);
  7104. scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
  7105. scm_gen_getc -> void scm_getc (SCM port);
  7106. ** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
  7107. ** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
  7108. SCM_TYP7S now masks away the bit which distinguishes substrings from
  7109. strings.
  7110. ** scm_catch_body_t: Backward incompatible change!
  7111. Body functions to scm_internal_catch and friends do not any longer
  7112. take a second argument. This is because it is no longer possible to
  7113. pass a #f arg to catch.
  7114. ** Calls to scm_protect_object and scm_unprotect now nest properly.
  7115. The function scm_protect_object protects its argument from being freed
  7116. by the garbage collector. scm_unprotect_object removes that
  7117. protection.
  7118. These functions now nest properly. That is, for every object O, there
  7119. is a counter which scm_protect_object(O) increments and
  7120. scm_unprotect_object(O) decrements, if the counter is greater than
  7121. zero. Every object's counter is zero when it is first created. If an
  7122. object's counter is greater than zero, the garbage collector will not
  7123. reclaim its storage.
  7124. This allows you to use scm_protect_object in your code without
  7125. worrying that some other function you call will call
  7126. scm_unprotect_object, and allow it to be freed. Assuming that the
  7127. functions you call are well-behaved, and unprotect only those objects
  7128. they protect, you can follow the same rule and have confidence that
  7129. objects will be freed only at appropriate times.
  7130. Changes in Guile 1.2 (released Tuesday, June 24 1997):
  7131. * Changes to the distribution
  7132. ** Nightly snapshots are now available from ftp.red-bean.com.
  7133. The old server, ftp.cyclic.com, has been relinquished to its rightful
  7134. owner.
  7135. Nightly snapshots of the Guile development sources are now available via
  7136. anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
  7137. Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
  7138. For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
  7139. ** To run Guile without installing it, the procedure has changed a bit.
  7140. If you used a separate build directory to compile Guile, you'll need
  7141. to include the build directory in SCHEME_LOAD_PATH, as well as the
  7142. source directory. See the `INSTALL' file for examples.
  7143. * Changes to the procedure for linking libguile with your programs
  7144. ** The standard Guile load path for Scheme code now includes
  7145. $(datadir)/guile (usually /usr/local/share/guile). This means that
  7146. you can install your own Scheme files there, and Guile will find them.
  7147. (Previous versions of Guile only checked a directory whose name
  7148. contained the Guile version number, so you had to re-install or move
  7149. your Scheme sources each time you installed a fresh version of Guile.)
  7150. The load path also includes $(datadir)/guile/site; we recommend
  7151. putting individual Scheme files there. If you want to install a
  7152. package with multiple source files, create a directory for them under
  7153. $(datadir)/guile.
  7154. ** Guile 1.2 will now use the Rx regular expression library, if it is
  7155. installed on your system. When you are linking libguile into your own
  7156. programs, this means you will have to link against -lguile, -lqt (if
  7157. you configured Guile with thread support), and -lrx.
  7158. If you are using autoconf to generate configuration scripts for your
  7159. application, the following lines should suffice to add the appropriate
  7160. libraries to your link command:
  7161. ### Find Rx, quickthreads and libguile.
  7162. AC_CHECK_LIB(rx, main)
  7163. AC_CHECK_LIB(qt, main)
  7164. AC_CHECK_LIB(guile, scm_shell)
  7165. The Guile 1.2 distribution does not contain sources for the Rx
  7166. library, as Guile 1.0 did. If you want to use Rx, you'll need to
  7167. retrieve it from a GNU FTP site and install it separately.
  7168. * Changes to Scheme functions and syntax
  7169. ** The dynamic linking features of Guile are now enabled by default.
  7170. You can disable them by giving the `--disable-dynamic-linking' option
  7171. to configure.
  7172. (dynamic-link FILENAME)
  7173. Find the object file denoted by FILENAME (a string) and link it
  7174. into the running Guile application. When everything works out,
  7175. return a Scheme object suitable for representing the linked object
  7176. file. Otherwise an error is thrown. How object files are
  7177. searched is system dependent.
  7178. (dynamic-object? VAL)
  7179. Determine whether VAL represents a dynamically linked object file.
  7180. (dynamic-unlink DYNOBJ)
  7181. Unlink the indicated object file from the application. DYNOBJ
  7182. should be one of the values returned by `dynamic-link'.
  7183. (dynamic-func FUNCTION DYNOBJ)
  7184. Search the C function indicated by FUNCTION (a string or symbol)
  7185. in DYNOBJ and return some Scheme object that can later be used
  7186. with `dynamic-call' to actually call this function. Right now,
  7187. these Scheme objects are formed by casting the address of the
  7188. function to `long' and converting this number to its Scheme
  7189. representation.
  7190. (dynamic-call FUNCTION DYNOBJ)
  7191. Call the C function indicated by FUNCTION and DYNOBJ. The
  7192. function is passed no arguments and its return value is ignored.
  7193. When FUNCTION is something returned by `dynamic-func', call that
  7194. function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
  7195. etc.), look it up in DYNOBJ; this is equivalent to
  7196. (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
  7197. Interrupts are deferred while the C function is executing (with
  7198. SCM_DEFER_INTS/SCM_ALLOW_INTS).
  7199. (dynamic-args-call FUNCTION DYNOBJ ARGS)
  7200. Call the C function indicated by FUNCTION and DYNOBJ, but pass it
  7201. some arguments and return its return value. The C function is
  7202. expected to take two arguments and return an `int', just like
  7203. `main':
  7204. int c_func (int argc, char **argv);
  7205. ARGS must be a list of strings and is converted into an array of
  7206. `char *'. The array is passed in ARGV and its size in ARGC. The
  7207. return value is converted to a Scheme number and returned from the
  7208. call to `dynamic-args-call'.
  7209. When dynamic linking is disabled or not supported on your system,
  7210. the above functions throw errors, but they are still available.
  7211. Here is a small example that works on GNU/Linux:
  7212. (define libc-obj (dynamic-link "libc.so"))
  7213. (dynamic-args-call 'rand libc-obj '())
  7214. See the file `libguile/DYNAMIC-LINKING' for additional comments.
  7215. ** The #/ syntax for module names is depreciated, and will be removed
  7216. in a future version of Guile. Instead of
  7217. #/foo/bar/baz
  7218. instead write
  7219. (foo bar baz)
  7220. The latter syntax is more consistent with existing Lisp practice.
  7221. ** Guile now does fancier printing of structures. Structures are the
  7222. underlying implementation for records, which in turn are used to
  7223. implement modules, so all of these object now print differently and in
  7224. a more informative way.
  7225. The Scheme printer will examine the builtin variable *struct-printer*
  7226. whenever it needs to print a structure object. When this variable is
  7227. not `#f' it is deemed to be a procedure and will be applied to the
  7228. structure object and the output port. When *struct-printer* is `#f'
  7229. or the procedure return `#f' the structure object will be printed in
  7230. the boring #<struct 80458270> form.
  7231. This hook is used by some routines in ice-9/boot-9.scm to implement
  7232. type specific printing routines. Please read the comments there about
  7233. "printing structs".
  7234. One of the more specific uses of structs are records. The printing
  7235. procedure that could be passed to MAKE-RECORD-TYPE is now actually
  7236. called. It should behave like a *struct-printer* procedure (described
  7237. above).
  7238. ** Guile now supports a new R4RS-compliant syntax for keywords. A
  7239. token of the form #:NAME, where NAME has the same syntax as a Scheme
  7240. symbol, is the external representation of the keyword named NAME.
  7241. Keyword objects print using this syntax as well, so values containing
  7242. keyword objects can be read back into Guile. When used in an
  7243. expression, keywords are self-quoting objects.
  7244. Guile suports this read syntax, and uses this print syntax, regardless
  7245. of the current setting of the `keyword' read option. The `keyword'
  7246. read option only controls whether Guile recognizes the `:NAME' syntax,
  7247. which is incompatible with R4RS. (R4RS says such token represent
  7248. symbols.)
  7249. ** Guile has regular expression support again. Guile 1.0 included
  7250. functions for matching regular expressions, based on the Rx library.
  7251. In Guile 1.1, the Guile/Rx interface was removed to simplify the
  7252. distribution, and thus Guile had no regular expression support. Guile
  7253. 1.2 again supports the most commonly used functions, and supports all
  7254. of SCSH's regular expression functions.
  7255. If your system does not include a POSIX regular expression library,
  7256. and you have not linked Guile with a third-party regexp library such as
  7257. Rx, these functions will not be available. You can tell whether your
  7258. Guile installation includes regular expression support by checking
  7259. whether the `*features*' list includes the `regex' symbol.
  7260. *** regexp functions
  7261. By default, Guile supports POSIX extended regular expressions. That
  7262. means that the characters `(', `)', `+' and `?' are special, and must
  7263. be escaped if you wish to match the literal characters.
  7264. This regular expression interface was modeled after that implemented
  7265. by SCSH, the Scheme Shell. It is intended to be upwardly compatible
  7266. with SCSH regular expressions.
  7267. **** Function: string-match PATTERN STR [START]
  7268. Compile the string PATTERN into a regular expression and compare
  7269. it with STR. The optional numeric argument START specifies the
  7270. position of STR at which to begin matching.
  7271. `string-match' returns a "match structure" which describes what,
  7272. if anything, was matched by the regular expression. *Note Match
  7273. Structures::. If STR does not match PATTERN at all,
  7274. `string-match' returns `#f'.
  7275. Each time `string-match' is called, it must compile its PATTERN
  7276. argument into a regular expression structure. This operation is
  7277. expensive, which makes `string-match' inefficient if the same regular
  7278. expression is used several times (for example, in a loop). For better
  7279. performance, you can compile a regular expression in advance and then
  7280. match strings against the compiled regexp.
  7281. **** Function: make-regexp STR [FLAGS]
  7282. Compile the regular expression described by STR, and return the
  7283. compiled regexp structure. If STR does not describe a legal
  7284. regular expression, `make-regexp' throws a
  7285. `regular-expression-syntax' error.
  7286. FLAGS may be the bitwise-or of one or more of the following:
  7287. **** Constant: regexp/extended
  7288. Use POSIX Extended Regular Expression syntax when interpreting
  7289. STR. If not set, POSIX Basic Regular Expression syntax is used.
  7290. If the FLAGS argument is omitted, we assume regexp/extended.
  7291. **** Constant: regexp/icase
  7292. Do not differentiate case. Subsequent searches using the
  7293. returned regular expression will be case insensitive.
  7294. **** Constant: regexp/newline
  7295. Match-any-character operators don't match a newline.
  7296. A non-matching list ([^...]) not containing a newline matches a
  7297. newline.
  7298. Match-beginning-of-line operator (^) matches the empty string
  7299. immediately after a newline, regardless of whether the FLAGS
  7300. passed to regexp-exec contain regexp/notbol.
  7301. Match-end-of-line operator ($) matches the empty string
  7302. immediately before a newline, regardless of whether the FLAGS
  7303. passed to regexp-exec contain regexp/noteol.
  7304. **** Function: regexp-exec REGEXP STR [START [FLAGS]]
  7305. Match the compiled regular expression REGEXP against `str'. If
  7306. the optional integer START argument is provided, begin matching
  7307. from that position in the string. Return a match structure
  7308. describing the results of the match, or `#f' if no match could be
  7309. found.
  7310. FLAGS may be the bitwise-or of one or more of the following:
  7311. **** Constant: regexp/notbol
  7312. The match-beginning-of-line operator always fails to match (but
  7313. see the compilation flag regexp/newline above) This flag may be
  7314. used when different portions of a string are passed to
  7315. regexp-exec and the beginning of the string should not be
  7316. interpreted as the beginning of the line.
  7317. **** Constant: regexp/noteol
  7318. The match-end-of-line operator always fails to match (but see the
  7319. compilation flag regexp/newline above)
  7320. **** Function: regexp? OBJ
  7321. Return `#t' if OBJ is a compiled regular expression, or `#f'
  7322. otherwise.
  7323. Regular expressions are commonly used to find patterns in one string
  7324. and replace them with the contents of another string.
  7325. **** Function: regexp-substitute PORT MATCH [ITEM...]
  7326. Write to the output port PORT selected contents of the match
  7327. structure MATCH. Each ITEM specifies what should be written, and
  7328. may be one of the following arguments:
  7329. * A string. String arguments are written out verbatim.
  7330. * An integer. The submatch with that number is written.
  7331. * The symbol `pre'. The portion of the matched string preceding
  7332. the regexp match is written.
  7333. * The symbol `post'. The portion of the matched string
  7334. following the regexp match is written.
  7335. PORT may be `#f', in which case nothing is written; instead,
  7336. `regexp-substitute' constructs a string from the specified ITEMs
  7337. and returns that.
  7338. **** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
  7339. Similar to `regexp-substitute', but can be used to perform global
  7340. substitutions on STR. Instead of taking a match structure as an
  7341. argument, `regexp-substitute/global' takes two string arguments: a
  7342. REGEXP string describing a regular expression, and a TARGET string
  7343. which should be matched against this regular expression.
  7344. Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
  7345. exceptions:
  7346. * A function may be supplied. When this function is called, it
  7347. will be passed one argument: a match structure for a given
  7348. regular expression match. It should return a string to be
  7349. written out to PORT.
  7350. * The `post' symbol causes `regexp-substitute/global' to recurse
  7351. on the unmatched portion of STR. This *must* be supplied in
  7352. order to perform global search-and-replace on STR; if it is
  7353. not present among the ITEMs, then `regexp-substitute/global'
  7354. will return after processing a single match.
  7355. *** Match Structures
  7356. A "match structure" is the object returned by `string-match' and
  7357. `regexp-exec'. It describes which portion of a string, if any, matched
  7358. the given regular expression. Match structures include: a reference to
  7359. the string that was checked for matches; the starting and ending
  7360. positions of the regexp match; and, if the regexp included any
  7361. parenthesized subexpressions, the starting and ending positions of each
  7362. submatch.
  7363. In each of the regexp match functions described below, the `match'
  7364. argument must be a match structure returned by a previous call to
  7365. `string-match' or `regexp-exec'. Most of these functions return some
  7366. information about the original target string that was matched against a
  7367. regular expression; we will call that string TARGET for easy reference.
  7368. **** Function: regexp-match? OBJ
  7369. Return `#t' if OBJ is a match structure returned by a previous
  7370. call to `regexp-exec', or `#f' otherwise.
  7371. **** Function: match:substring MATCH [N]
  7372. Return the portion of TARGET matched by subexpression number N.
  7373. Submatch 0 (the default) represents the entire regexp match. If
  7374. the regular expression as a whole matched, but the subexpression
  7375. number N did not match, return `#f'.
  7376. **** Function: match:start MATCH [N]
  7377. Return the starting position of submatch number N.
  7378. **** Function: match:end MATCH [N]
  7379. Return the ending position of submatch number N.
  7380. **** Function: match:prefix MATCH
  7381. Return the unmatched portion of TARGET preceding the regexp match.
  7382. **** Function: match:suffix MATCH
  7383. Return the unmatched portion of TARGET following the regexp match.
  7384. **** Function: match:count MATCH
  7385. Return the number of parenthesized subexpressions from MATCH.
  7386. Note that the entire regular expression match itself counts as a
  7387. subexpression, and failed submatches are included in the count.
  7388. **** Function: match:string MATCH
  7389. Return the original TARGET string.
  7390. *** Backslash Escapes
  7391. Sometimes you will want a regexp to match characters like `*' or `$'
  7392. exactly. For example, to check whether a particular string represents
  7393. a menu entry from an Info node, it would be useful to match it against
  7394. a regexp like `^* [^:]*::'. However, this won't work; because the
  7395. asterisk is a metacharacter, it won't match the `*' at the beginning of
  7396. the string. In this case, we want to make the first asterisk un-magic.
  7397. You can do this by preceding the metacharacter with a backslash
  7398. character `\'. (This is also called "quoting" the metacharacter, and
  7399. is known as a "backslash escape".) When Guile sees a backslash in a
  7400. regular expression, it considers the following glyph to be an ordinary
  7401. character, no matter what special meaning it would ordinarily have.
  7402. Therefore, we can make the above example work by changing the regexp to
  7403. `^\* [^:]*::'. The `\*' sequence tells the regular expression engine
  7404. to match only a single asterisk in the target string.
  7405. Since the backslash is itself a metacharacter, you may force a
  7406. regexp to match a backslash in the target string by preceding the
  7407. backslash with itself. For example, to find variable references in a
  7408. TeX program, you might want to find occurrences of the string `\let\'
  7409. followed by any number of alphabetic characters. The regular expression
  7410. `\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
  7411. each match a single backslash in the target string.
  7412. **** Function: regexp-quote STR
  7413. Quote each special character found in STR with a backslash, and
  7414. return the resulting string.
  7415. *Very important:* Using backslash escapes in Guile source code (as
  7416. in Emacs Lisp or C) can be tricky, because the backslash character has
  7417. special meaning for the Guile reader. For example, if Guile encounters
  7418. the character sequence `\n' in the middle of a string while processing
  7419. Scheme code, it replaces those characters with a newline character.
  7420. Similarly, the character sequence `\t' is replaced by a horizontal tab.
  7421. Several of these "escape sequences" are processed by the Guile reader
  7422. before your code is executed. Unrecognized escape sequences are
  7423. ignored: if the characters `\*' appear in a string, they will be
  7424. translated to the single character `*'.
  7425. This translation is obviously undesirable for regular expressions,
  7426. since we want to be able to include backslashes in a string in order to
  7427. escape regexp metacharacters. Therefore, to make sure that a backslash
  7428. is preserved in a string in your Guile program, you must use *two*
  7429. consecutive backslashes:
  7430. (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
  7431. The string in this example is preprocessed by the Guile reader before
  7432. any code is executed. The resulting argument to `make-regexp' is the
  7433. string `^\* [^:]*', which is what we really want.
  7434. This also means that in order to write a regular expression that
  7435. matches a single backslash character, the regular expression string in
  7436. the source code must include *four* backslashes. Each consecutive pair
  7437. of backslashes gets translated by the Guile reader to a single
  7438. backslash, and the resulting double-backslash is interpreted by the
  7439. regexp engine as matching a single backslash character. Hence:
  7440. (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
  7441. The reason for the unwieldiness of this syntax is historical. Both
  7442. regular expression pattern matchers and Unix string processing systems
  7443. have traditionally used backslashes with the special meanings described
  7444. above. The POSIX regular expression specification and ANSI C standard
  7445. both require these semantics. Attempting to abandon either convention
  7446. would cause other kinds of compatibility problems, possibly more severe
  7447. ones. Therefore, without extending the Scheme reader to support
  7448. strings with different quoting conventions (an ungainly and confusing
  7449. extension when implemented in other languages), we must adhere to this
  7450. cumbersome escape syntax.
  7451. * Changes to the gh_ interface
  7452. * Changes to the scm_ interface
  7453. * Changes to system call interfaces:
  7454. ** The value returned by `raise' is now unspecified. It throws an exception
  7455. if an error occurs.
  7456. *** A new procedure `sigaction' can be used to install signal handlers
  7457. (sigaction signum [action] [flags])
  7458. signum is the signal number, which can be specified using the value
  7459. of SIGINT etc.
  7460. If action is omitted, sigaction returns a pair: the CAR is the current
  7461. signal hander, which will be either an integer with the value SIG_DFL
  7462. (default action) or SIG_IGN (ignore), or the Scheme procedure which
  7463. handles the signal, or #f if a non-Scheme procedure handles the
  7464. signal. The CDR contains the current sigaction flags for the handler.
  7465. If action is provided, it is installed as the new handler for signum.
  7466. action can be a Scheme procedure taking one argument, or the value of
  7467. SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
  7468. whatever signal handler was installed before sigaction was first used.
  7469. Flags can optionally be specified for the new handler (SA_RESTART is
  7470. always used if the system provides it, so need not be specified.) The
  7471. return value is a pair with information about the old handler as
  7472. described above.
  7473. This interface does not provide access to the "signal blocking"
  7474. facility. Maybe this is not needed, since the thread support may
  7475. provide solutions to the problem of consistent access to data
  7476. structures.
  7477. *** A new procedure `flush-all-ports' is equivalent to running
  7478. `force-output' on every port open for output.
  7479. ** Guile now provides information on how it was built, via the new
  7480. global variable, %guile-build-info. This variable records the values
  7481. of the standard GNU makefile directory variables as an assocation
  7482. list, mapping variable names (symbols) onto directory paths (strings).
  7483. For example, to find out where the Guile link libraries were
  7484. installed, you can say:
  7485. guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
  7486. * Changes to the scm_ interface
  7487. ** The new function scm_handle_by_message_noexit is just like the
  7488. existing scm_handle_by_message function, except that it doesn't call
  7489. exit to terminate the process. Instead, it prints a message and just
  7490. returns #f. This might be a more appropriate catch-all handler for
  7491. new dynamic roots and threads.
  7492. Changes in Guile 1.1 (released Friday, May 16 1997):
  7493. * Changes to the distribution.
  7494. The Guile 1.0 distribution has been split up into several smaller
  7495. pieces:
  7496. guile-core --- the Guile interpreter itself.
  7497. guile-tcltk --- the interface between the Guile interpreter and
  7498. Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
  7499. is a toolkit for building graphical user interfaces.
  7500. guile-rgx-ctax --- the interface between Guile and the Rx regular
  7501. expression matcher, and the translator for the Ctax
  7502. programming language. These are packaged together because the
  7503. Ctax translator uses Rx to parse Ctax source code.
  7504. This NEWS file describes the changes made to guile-core since the 1.0
  7505. release.
  7506. We no longer distribute the documentation, since it was either out of
  7507. date, or incomplete. As soon as we have current documentation, we
  7508. will distribute it.
  7509. * Changes to the stand-alone interpreter
  7510. ** guile now accepts command-line arguments compatible with SCSH, Olin
  7511. Shivers' Scheme Shell.
  7512. In general, arguments are evaluated from left to right, but there are
  7513. exceptions. The following switches stop argument processing, and
  7514. stash all remaining command-line arguments as the value returned by
  7515. the (command-line) function.
  7516. -s SCRIPT load Scheme source code from FILE, and exit
  7517. -c EXPR evalute Scheme expression EXPR, and exit
  7518. -- stop scanning arguments; run interactively
  7519. The switches below are processed as they are encountered.
  7520. -l FILE load Scheme source code from FILE
  7521. -e FUNCTION after reading script, apply FUNCTION to
  7522. command line arguments
  7523. -ds do -s script at this point
  7524. --emacs enable Emacs protocol (experimental)
  7525. -h, --help display this help and exit
  7526. -v, --version display version information and exit
  7527. \ read arguments from following script lines
  7528. So, for example, here is a Guile script named `ekko' (thanks, Olin)
  7529. which re-implements the traditional "echo" command:
  7530. #!/usr/local/bin/guile -s
  7531. !#
  7532. (define (main args)
  7533. (map (lambda (arg) (display arg) (display " "))
  7534. (cdr args))
  7535. (newline))
  7536. (main (command-line))
  7537. Suppose we invoke this script as follows:
  7538. ekko a speckled gecko
  7539. Through the magic of Unix script processing (triggered by the `#!'
  7540. token at the top of the file), /usr/local/bin/guile receives the
  7541. following list of command-line arguments:
  7542. ("-s" "./ekko" "a" "speckled" "gecko")
  7543. Unix inserts the name of the script after the argument specified on
  7544. the first line of the file (in this case, "-s"), and then follows that
  7545. with the arguments given to the script. Guile loads the script, which
  7546. defines the `main' function, and then applies it to the list of
  7547. remaining command-line arguments, ("a" "speckled" "gecko").
  7548. In Unix, the first line of a script file must take the following form:
  7549. #!INTERPRETER ARGUMENT
  7550. where INTERPRETER is the absolute filename of the interpreter
  7551. executable, and ARGUMENT is a single command-line argument to pass to
  7552. the interpreter.
  7553. You may only pass one argument to the interpreter, and its length is
  7554. limited. These restrictions can be annoying to work around, so Guile
  7555. provides a general mechanism (borrowed from, and compatible with,
  7556. SCSH) for circumventing them.
  7557. If the ARGUMENT in a Guile script is a single backslash character,
  7558. `\', Guile will open the script file, parse arguments from its second
  7559. and subsequent lines, and replace the `\' with them. So, for example,
  7560. here is another implementation of the `ekko' script:
  7561. #!/usr/local/bin/guile \
  7562. -e main -s
  7563. !#
  7564. (define (main args)
  7565. (for-each (lambda (arg) (display arg) (display " "))
  7566. (cdr args))
  7567. (newline))
  7568. If the user invokes this script as follows:
  7569. ekko a speckled gecko
  7570. Unix expands this into
  7571. /usr/local/bin/guile \ ekko a speckled gecko
  7572. When Guile sees the `\' argument, it replaces it with the arguments
  7573. read from the second line of the script, producing:
  7574. /usr/local/bin/guile -e main -s ekko a speckled gecko
  7575. This tells Guile to load the `ekko' script, and apply the function
  7576. `main' to the argument list ("a" "speckled" "gecko").
  7577. Here is how Guile parses the command-line arguments:
  7578. - Each space character terminates an argument. This means that two
  7579. spaces in a row introduce an empty-string argument.
  7580. - The tab character is not permitted (unless you quote it with the
  7581. backslash character, as described below), to avoid confusion.
  7582. - The newline character terminates the sequence of arguments, and will
  7583. also terminate a final non-empty argument. (However, a newline
  7584. following a space will not introduce a final empty-string argument;
  7585. it only terminates the argument list.)
  7586. - The backslash character is the escape character. It escapes
  7587. backslash, space, tab, and newline. The ANSI C escape sequences
  7588. like \n and \t are also supported. These produce argument
  7589. constituents; the two-character combination \n doesn't act like a
  7590. terminating newline. The escape sequence \NNN for exactly three
  7591. octal digits reads as the character whose ASCII code is NNN. As
  7592. above, characters produced this way are argument constituents.
  7593. Backslash followed by other characters is not allowed.
  7594. * Changes to the procedure for linking libguile with your programs
  7595. ** Guile now builds and installs a shared guile library, if your
  7596. system support shared libraries. (It still builds a static library on
  7597. all systems.) Guile automatically detects whether your system
  7598. supports shared libraries. To prevent Guile from buildisg shared
  7599. libraries, pass the `--disable-shared' flag to the configure script.
  7600. Guile takes longer to compile when it builds shared libraries, because
  7601. it must compile every file twice --- once to produce position-
  7602. independent object code, and once to produce normal object code.
  7603. ** The libthreads library has been merged into libguile.
  7604. To link a program against Guile, you now need only link against
  7605. -lguile and -lqt; -lthreads is no longer needed. If you are using
  7606. autoconf to generate configuration scripts for your application, the
  7607. following lines should suffice to add the appropriate libraries to
  7608. your link command:
  7609. ### Find quickthreads and libguile.
  7610. AC_CHECK_LIB(qt, main)
  7611. AC_CHECK_LIB(guile, scm_shell)
  7612. * Changes to Scheme functions
  7613. ** Guile Scheme's special syntax for keyword objects is now optional,
  7614. and disabled by default.
  7615. The syntax variation from R4RS made it difficult to port some
  7616. interesting packages to Guile. The routines which accepted keyword
  7617. arguments (mostly in the module system) have been modified to also
  7618. accept symbols whose names begin with `:'.
  7619. To change the keyword syntax, you must first import the (ice-9 debug)
  7620. module:
  7621. (use-modules (ice-9 debug))
  7622. Then you can enable the keyword syntax as follows:
  7623. (read-set! keywords 'prefix)
  7624. To disable keyword syntax, do this:
  7625. (read-set! keywords #f)
  7626. ** Many more primitive functions accept shared substrings as
  7627. arguments. In the past, these functions required normal, mutable
  7628. strings as arguments, although they never made use of this
  7629. restriction.
  7630. ** The uniform array functions now operate on byte vectors. These
  7631. functions are `array-fill!', `serial-array-copy!', `array-copy!',
  7632. `serial-array-map', `array-map', `array-for-each', and
  7633. `array-index-map!'.
  7634. ** The new functions `trace' and `untrace' implement simple debugging
  7635. support for Scheme functions.
  7636. The `trace' function accepts any number of procedures as arguments,
  7637. and tells the Guile interpreter to display each procedure's name and
  7638. arguments each time the procedure is invoked. When invoked with no
  7639. arguments, `trace' returns the list of procedures currently being
  7640. traced.
  7641. The `untrace' function accepts any number of procedures as arguments,
  7642. and tells the Guile interpreter not to trace them any more. When
  7643. invoked with no arguments, `untrace' untraces all curretly traced
  7644. procedures.
  7645. The tracing in Guile has an advantage over most other systems: we
  7646. don't create new procedure objects, but mark the procedure objects
  7647. themselves. This means that anonymous and internal procedures can be
  7648. traced.
  7649. ** The function `assert-repl-prompt' has been renamed to
  7650. `set-repl-prompt!'. It takes one argument, PROMPT.
  7651. - If PROMPT is #f, the Guile read-eval-print loop will not prompt.
  7652. - If PROMPT is a string, we use it as a prompt.
  7653. - If PROMPT is a procedure accepting no arguments, we call it, and
  7654. display the result as a prompt.
  7655. - Otherwise, we display "> ".
  7656. ** The new function `eval-string' reads Scheme expressions from a
  7657. string and evaluates them, returning the value of the last expression
  7658. in the string. If the string contains no expressions, it returns an
  7659. unspecified value.
  7660. ** The new function `thunk?' returns true iff its argument is a
  7661. procedure of zero arguments.
  7662. ** `defined?' is now a builtin function, instead of syntax. This
  7663. means that its argument should be quoted. It returns #t iff its
  7664. argument is bound in the current module.
  7665. ** The new syntax `use-modules' allows you to add new modules to your
  7666. environment without re-typing a complete `define-module' form. It
  7667. accepts any number of module names as arguments, and imports their
  7668. public bindings into the current module.
  7669. ** The new function (module-defined? NAME MODULE) returns true iff
  7670. NAME, a symbol, is defined in MODULE, a module object.
  7671. ** The new function `builtin-bindings' creates and returns a hash
  7672. table containing copies of all the root module's bindings.
  7673. ** The new function `builtin-weak-bindings' does the same as
  7674. `builtin-bindings', but creates a doubly-weak hash table.
  7675. ** The `equal?' function now considers variable objects to be
  7676. equivalent if they have the same name and the same value.
  7677. ** The new function `command-line' returns the command-line arguments
  7678. given to Guile, as a list of strings.
  7679. When using guile as a script interpreter, `command-line' returns the
  7680. script's arguments; those processed by the interpreter (like `-s' or
  7681. `-c') are omitted. (In other words, you get the normal, expected
  7682. behavior.) Any application that uses scm_shell to process its
  7683. command-line arguments gets this behavior as well.
  7684. ** The new function `load-user-init' looks for a file called `.guile'
  7685. in the user's home directory, and loads it if it exists. This is
  7686. mostly for use by the code generated by scm_compile_shell_switches,
  7687. but we thought it might also be useful in other circumstances.
  7688. ** The new function `log10' returns the base-10 logarithm of its
  7689. argument.
  7690. ** Changes to I/O functions
  7691. *** The functions `read', `primitive-load', `read-and-eval!', and
  7692. `primitive-load-path' no longer take optional arguments controlling
  7693. case insensitivity and a `#' parser.
  7694. Case sensitivity is now controlled by a read option called
  7695. `case-insensitive'. The user can add new `#' syntaxes with the
  7696. `read-hash-extend' function (see below).
  7697. *** The new function `read-hash-extend' allows the user to change the
  7698. syntax of Guile Scheme in a somewhat controlled way.
  7699. (read-hash-extend CHAR PROC)
  7700. When parsing S-expressions, if we read a `#' character followed by
  7701. the character CHAR, use PROC to parse an object from the stream.
  7702. If PROC is #f, remove any parsing procedure registered for CHAR.
  7703. The reader applies PROC to two arguments: CHAR and an input port.
  7704. *** The new functions read-delimited and read-delimited! provide a
  7705. general mechanism for doing delimited input on streams.
  7706. (read-delimited DELIMS [PORT HANDLE-DELIM])
  7707. Read until we encounter one of the characters in DELIMS (a string),
  7708. or end-of-file. PORT is the input port to read from; it defaults to
  7709. the current input port. The HANDLE-DELIM parameter determines how
  7710. the terminating character is handled; it should be one of the
  7711. following symbols:
  7712. 'trim omit delimiter from result
  7713. 'peek leave delimiter character in input stream
  7714. 'concat append delimiter character to returned value
  7715. 'split return a pair: (RESULT . TERMINATOR)
  7716. HANDLE-DELIM defaults to 'peek.
  7717. (read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
  7718. A side-effecting variant of `read-delimited'.
  7719. The data is written into the string BUF at the indices in the
  7720. half-open interval [START, END); the default interval is the whole
  7721. string: START = 0 and END = (string-length BUF). The values of
  7722. START and END must specify a well-defined interval in BUF, i.e.
  7723. 0 <= START <= END <= (string-length BUF).
  7724. It returns NBYTES, the number of bytes read. If the buffer filled
  7725. up without a delimiter character being found, it returns #f. If the
  7726. port is at EOF when the read starts, it returns the EOF object.
  7727. If an integer is returned (i.e., the read is successfully terminated
  7728. by reading a delimiter character), then the HANDLE-DELIM parameter
  7729. determines how to handle the terminating character. It is described
  7730. above, and defaults to 'peek.
  7731. (The descriptions of these functions were borrowed from the SCSH
  7732. manual, by Olin Shivers and Brian Carlstrom.)
  7733. *** The `%read-delimited!' function is the primitive used to implement
  7734. `read-delimited' and `read-delimited!'.
  7735. (%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
  7736. This returns a pair of values: (TERMINATOR . NUM-READ).
  7737. - TERMINATOR describes why the read was terminated. If it is a
  7738. character or the eof object, then that is the value that terminated
  7739. the read. If it is #f, the function filled the buffer without finding
  7740. a delimiting character.
  7741. - NUM-READ is the number of characters read into BUF.
  7742. If the read is successfully terminated by reading a delimiter
  7743. character, then the gobble? parameter determines what to do with the
  7744. terminating character. If true, the character is removed from the
  7745. input stream; if false, the character is left in the input stream
  7746. where a subsequent read operation will retrieve it. In either case,
  7747. the character is also the first value returned by the procedure call.
  7748. (The descriptions of this function was borrowed from the SCSH manual,
  7749. by Olin Shivers and Brian Carlstrom.)
  7750. *** The `read-line' and `read-line!' functions have changed; they now
  7751. trim the terminator by default; previously they appended it to the
  7752. returned string. For the old behavior, use (read-line PORT 'concat).
  7753. *** The functions `uniform-array-read!' and `uniform-array-write!' now
  7754. take new optional START and END arguments, specifying the region of
  7755. the array to read and write.
  7756. *** The `ungetc-char-ready?' function has been removed. We feel it's
  7757. inappropriate for an interface to expose implementation details this
  7758. way.
  7759. ** Changes to the Unix library and system call interface
  7760. *** The new fcntl function provides access to the Unix `fcntl' system
  7761. call.
  7762. (fcntl PORT COMMAND VALUE)
  7763. Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
  7764. Values for COMMAND are:
  7765. F_DUPFD duplicate a file descriptor
  7766. F_GETFD read the descriptor's close-on-exec flag
  7767. F_SETFD set the descriptor's close-on-exec flag to VALUE
  7768. F_GETFL read the descriptor's flags, as set on open
  7769. F_SETFL set the descriptor's flags, as set on open to VALUE
  7770. F_GETOWN return the process ID of a socket's owner, for SIGIO
  7771. F_SETOWN set the process that owns a socket to VALUE, for SIGIO
  7772. FD_CLOEXEC not sure what this is
  7773. For details, see the documentation for the fcntl system call.
  7774. *** The arguments to `select' have changed, for compatibility with
  7775. SCSH. The TIMEOUT parameter may now be non-integral, yielding the
  7776. expected behavior. The MILLISECONDS parameter has been changed to
  7777. MICROSECONDS, to more closely resemble the underlying system call.
  7778. The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
  7779. corresponding return set will be the same.
  7780. *** The arguments to the `mknod' system call have changed. They are
  7781. now:
  7782. (mknod PATH TYPE PERMS DEV)
  7783. Create a new file (`node') in the file system. PATH is the name of
  7784. the file to create. TYPE is the kind of file to create; it should
  7785. be 'fifo, 'block-special, or 'char-special. PERMS specifies the
  7786. permission bits to give the newly created file. If TYPE is
  7787. 'block-special or 'char-special, DEV specifies which device the
  7788. special file refers to; its interpretation depends on the kind of
  7789. special file being created.
  7790. *** The `fork' function has been renamed to `primitive-fork', to avoid
  7791. clashing with various SCSH forks.
  7792. *** The `recv' and `recvfrom' functions have been renamed to `recv!'
  7793. and `recvfrom!'. They no longer accept a size for a second argument;
  7794. you must pass a string to hold the received value. They no longer
  7795. return the buffer. Instead, `recv' returns the length of the message
  7796. received, and `recvfrom' returns a pair containing the packet's length
  7797. and originating address.
  7798. *** The file descriptor datatype has been removed, as have the
  7799. `read-fd', `write-fd', `close', `lseek', and `dup' functions.
  7800. We plan to replace these functions with a SCSH-compatible interface.
  7801. *** The `create' function has been removed; it's just a special case
  7802. of `open'.
  7803. *** There are new functions to break down process termination status
  7804. values. In the descriptions below, STATUS is a value returned by
  7805. `waitpid'.
  7806. (status:exit-val STATUS)
  7807. If the child process exited normally, this function returns the exit
  7808. code for the child process (i.e., the value passed to exit, or
  7809. returned from main). If the child process did not exit normally,
  7810. this function returns #f.
  7811. (status:stop-sig STATUS)
  7812. If the child process was suspended by a signal, this function
  7813. returns the signal that suspended the child. Otherwise, it returns
  7814. #f.
  7815. (status:term-sig STATUS)
  7816. If the child process terminated abnormally, this function returns
  7817. the signal that terminated the child. Otherwise, this function
  7818. returns false.
  7819. POSIX promises that exactly one of these functions will return true on
  7820. a valid STATUS value.
  7821. These functions are compatible with SCSH.
  7822. *** There are new accessors and setters for the broken-out time vectors
  7823. returned by `localtime', `gmtime', and that ilk. They are:
  7824. Component Accessor Setter
  7825. ========================= ============ ============
  7826. seconds tm:sec set-tm:sec
  7827. minutes tm:min set-tm:min
  7828. hours tm:hour set-tm:hour
  7829. day of the month tm:mday set-tm:mday
  7830. month tm:mon set-tm:mon
  7831. year tm:year set-tm:year
  7832. day of the week tm:wday set-tm:wday
  7833. day in the year tm:yday set-tm:yday
  7834. daylight saving time tm:isdst set-tm:isdst
  7835. GMT offset, seconds tm:gmtoff set-tm:gmtoff
  7836. name of time zone tm:zone set-tm:zone
  7837. *** There are new accessors for the vectors returned by `uname',
  7838. describing the host system:
  7839. Component Accessor
  7840. ============================================== ================
  7841. name of the operating system implementation utsname:sysname
  7842. network name of this machine utsname:nodename
  7843. release level of the operating system utsname:release
  7844. version level of the operating system utsname:version
  7845. machine hardware platform utsname:machine
  7846. *** There are new accessors for the vectors returned by `getpw',
  7847. `getpwnam', `getpwuid', and `getpwent', describing entries from the
  7848. system's user database:
  7849. Component Accessor
  7850. ====================== =================
  7851. user name passwd:name
  7852. user password passwd:passwd
  7853. user id passwd:uid
  7854. group id passwd:gid
  7855. real name passwd:gecos
  7856. home directory passwd:dir
  7857. shell program passwd:shell
  7858. *** There are new accessors for the vectors returned by `getgr',
  7859. `getgrnam', `getgrgid', and `getgrent', describing entries from the
  7860. system's group database:
  7861. Component Accessor
  7862. ======================= ============
  7863. group name group:name
  7864. group password group:passwd
  7865. group id group:gid
  7866. group members group:mem
  7867. *** There are new accessors for the vectors returned by `gethost',
  7868. `gethostbyaddr', `gethostbyname', and `gethostent', describing
  7869. internet hosts:
  7870. Component Accessor
  7871. ========================= ===============
  7872. official name of host hostent:name
  7873. alias list hostent:aliases
  7874. host address type hostent:addrtype
  7875. length of address hostent:length
  7876. list of addresses hostent:addr-list
  7877. *** There are new accessors for the vectors returned by `getnet',
  7878. `getnetbyaddr', `getnetbyname', and `getnetent', describing internet
  7879. networks:
  7880. Component Accessor
  7881. ========================= ===============
  7882. official name of net netent:name
  7883. alias list netent:aliases
  7884. net number type netent:addrtype
  7885. net number netent:net
  7886. *** There are new accessors for the vectors returned by `getproto',
  7887. `getprotobyname', `getprotobynumber', and `getprotoent', describing
  7888. internet protocols:
  7889. Component Accessor
  7890. ========================= ===============
  7891. official protocol name protoent:name
  7892. alias list protoent:aliases
  7893. protocol number protoent:proto
  7894. *** There are new accessors for the vectors returned by `getserv',
  7895. `getservbyname', `getservbyport', and `getservent', describing
  7896. internet protocols:
  7897. Component Accessor
  7898. ========================= ===============
  7899. official service name servent:name
  7900. alias list servent:aliases
  7901. port number servent:port
  7902. protocol to use servent:proto
  7903. *** There are new accessors for the sockaddr structures returned by
  7904. `accept', `getsockname', `getpeername', `recvfrom!':
  7905. Component Accessor
  7906. ======================================== ===============
  7907. address format (`family') sockaddr:fam
  7908. path, for file domain addresses sockaddr:path
  7909. address, for internet domain addresses sockaddr:addr
  7910. TCP or UDP port, for internet sockaddr:port
  7911. *** The `getpwent', `getgrent', `gethostent', `getnetent',
  7912. `getprotoent', and `getservent' functions now return #f at the end of
  7913. the user database. (They used to throw an exception.)
  7914. Note that calling MUMBLEent function is equivalent to calling the
  7915. corresponding MUMBLE function with no arguments.
  7916. *** The `setpwent', `setgrent', `sethostent', `setnetent',
  7917. `setprotoent', and `setservent' routines now take no arguments.
  7918. *** The `gethost', `getproto', `getnet', and `getserv' functions now
  7919. provide more useful information when they throw an exception.
  7920. *** The `lnaof' function has been renamed to `inet-lnaof'.
  7921. *** Guile now claims to have the `current-time' feature.
  7922. *** The `mktime' function now takes an optional second argument ZONE,
  7923. giving the time zone to use for the conversion. ZONE should be a
  7924. string, in the same format as expected for the "TZ" environment variable.
  7925. *** The `strptime' function now returns a pair (TIME . COUNT), where
  7926. TIME is the parsed time as a vector, and COUNT is the number of
  7927. characters from the string left unparsed. This function used to
  7928. return the remaining characters as a string.
  7929. *** The `gettimeofday' function has replaced the old `time+ticks' function.
  7930. The return value is now (SECONDS . MICROSECONDS); the fractional
  7931. component is no longer expressed in "ticks".
  7932. *** The `ticks/sec' constant has been removed, in light of the above change.
  7933. * Changes to the gh_ interface
  7934. ** gh_eval_str() now returns an SCM object which is the result of the
  7935. evaluation
  7936. ** gh_scm2str() now copies the Scheme data to a caller-provided C
  7937. array
  7938. ** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
  7939. and returns the array
  7940. ** gh_scm2str0() is gone: there is no need to distinguish
  7941. null-terminated from non-null-terminated, since gh_scm2newstr() allows
  7942. the user to interpret the data both ways.
  7943. * Changes to the scm_ interface
  7944. ** The new function scm_symbol_value0 provides an easy way to get a
  7945. symbol's value from C code:
  7946. SCM scm_symbol_value0 (char *NAME)
  7947. Return the value of the symbol named by the null-terminated string
  7948. NAME in the current module. If the symbol named NAME is unbound in
  7949. the current module, return SCM_UNDEFINED.
  7950. ** The new function scm_sysintern0 creates new top-level variables,
  7951. without assigning them a value.
  7952. SCM scm_sysintern0 (char *NAME)
  7953. Create a new Scheme top-level variable named NAME. NAME is a
  7954. null-terminated string. Return the variable's value cell.
  7955. ** The function scm_internal_catch is the guts of catch. It handles
  7956. all the mechanics of setting up a catch target, invoking the catch
  7957. body, and perhaps invoking the handler if the body does a throw.
  7958. The function is designed to be usable from C code, but is general
  7959. enough to implement all the semantics Guile Scheme expects from throw.
  7960. TAG is the catch tag. Typically, this is a symbol, but this function
  7961. doesn't actually care about that.
  7962. BODY is a pointer to a C function which runs the body of the catch;
  7963. this is the code you can throw from. We call it like this:
  7964. BODY (BODY_DATA, JMPBUF)
  7965. where:
  7966. BODY_DATA is just the BODY_DATA argument we received; we pass it
  7967. through to BODY as its first argument. The caller can make
  7968. BODY_DATA point to anything useful that BODY might need.
  7969. JMPBUF is the Scheme jmpbuf object corresponding to this catch,
  7970. which we have just created and initialized.
  7971. HANDLER is a pointer to a C function to deal with a throw to TAG,
  7972. should one occur. We call it like this:
  7973. HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
  7974. where
  7975. HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
  7976. same idea as BODY_DATA above.
  7977. THROWN_TAG is the tag that the user threw to; usually this is
  7978. TAG, but it could be something else if TAG was #t (i.e., a
  7979. catch-all), or the user threw to a jmpbuf.
  7980. THROW_ARGS is the list of arguments the user passed to the THROW
  7981. function.
  7982. BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
  7983. is just a pointer we pass through to HANDLER. We don't actually
  7984. use either of those pointers otherwise ourselves. The idea is
  7985. that, if our caller wants to communicate something to BODY or
  7986. HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
  7987. HANDLER can then use. Think of it as a way to make BODY and
  7988. HANDLER closures, not just functions; MUMBLE_DATA points to the
  7989. enclosed variables.
  7990. Of course, it's up to the caller to make sure that any data a
  7991. MUMBLE_DATA needs is protected from GC. A common way to do this is
  7992. to make MUMBLE_DATA a pointer to data stored in an automatic
  7993. structure variable; since the collector must scan the stack for
  7994. references anyway, this assures that any references in MUMBLE_DATA
  7995. will be found.
  7996. ** The new function scm_internal_lazy_catch is exactly like
  7997. scm_internal_catch, except:
  7998. - It does not unwind the stack (this is the major difference).
  7999. - If handler returns, its value is returned from the throw.
  8000. - BODY always receives #f as its JMPBUF argument (since there's no
  8001. jmpbuf associated with a lazy catch, because we don't unwind the
  8002. stack.)
  8003. ** scm_body_thunk is a new body function you can pass to
  8004. scm_internal_catch if you want the body to be like Scheme's `catch'
  8005. --- a thunk, or a function of one argument if the tag is #f.
  8006. BODY_DATA is a pointer to a scm_body_thunk_data structure, which
  8007. contains the Scheme procedure to invoke as the body, and the tag
  8008. we're catching. If the tag is #f, then we pass JMPBUF (created by
  8009. scm_internal_catch) to the body procedure; otherwise, the body gets
  8010. no arguments.
  8011. ** scm_handle_by_proc is a new handler function you can pass to
  8012. scm_internal_catch if you want the handler to act like Scheme's catch
  8013. --- call a procedure with the tag and the throw arguments.
  8014. If the user does a throw to this catch, this function runs a handler
  8015. procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
  8016. variable holding the Scheme procedure object to invoke. It ought to
  8017. be a pointer to an automatic variable (i.e., one living on the stack),
  8018. or the procedure object should be otherwise protected from GC.
  8019. ** scm_handle_by_message is a new handler function to use with
  8020. `scm_internal_catch' if you want Guile to print a message and die.
  8021. It's useful for dealing with throws to uncaught keys at the top level.
  8022. HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
  8023. message header to print; if zero, we use "guile" instead. That
  8024. text is followed by a colon, then the message described by ARGS.
  8025. ** The return type of scm_boot_guile is now void; the function does
  8026. not return a value, and indeed, never returns at all.
  8027. ** The new function scm_shell makes it easy for user applications to
  8028. process command-line arguments in a way that is compatible with the
  8029. stand-alone guile interpreter (which is in turn compatible with SCSH,
  8030. the Scheme shell).
  8031. To use the scm_shell function, first initialize any guile modules
  8032. linked into your application, and then call scm_shell with the values
  8033. of ARGC and ARGV your `main' function received. scm_shell will add
  8034. any SCSH-style meta-arguments from the top of the script file to the
  8035. argument vector, and then process the command-line arguments. This
  8036. generally means loading a script file or starting up an interactive
  8037. command interpreter. For details, see "Changes to the stand-alone
  8038. interpreter" above.
  8039. ** The new functions scm_get_meta_args and scm_count_argv help you
  8040. implement the SCSH-style meta-argument, `\'.
  8041. char **scm_get_meta_args (int ARGC, char **ARGV)
  8042. If the second element of ARGV is a string consisting of a single
  8043. backslash character (i.e. "\\" in Scheme notation), open the file
  8044. named by the following argument, parse arguments from it, and return
  8045. the spliced command line. The returned array is terminated by a
  8046. null pointer.
  8047. For details of argument parsing, see above, under "guile now accepts
  8048. command-line arguments compatible with SCSH..."
  8049. int scm_count_argv (char **ARGV)
  8050. Count the arguments in ARGV, assuming it is terminated by a null
  8051. pointer.
  8052. For an example of how these functions might be used, see the source
  8053. code for the function scm_shell in libguile/script.c.
  8054. You will usually want to use scm_shell instead of calling this
  8055. function yourself.
  8056. ** The new function scm_compile_shell_switches turns an array of
  8057. command-line arguments into Scheme code to carry out the actions they
  8058. describe. Given ARGC and ARGV, it returns a Scheme expression to
  8059. evaluate, and calls scm_set_program_arguments to make any remaining
  8060. command-line arguments available to the Scheme code. For example,
  8061. given the following arguments:
  8062. -e main -s ekko a speckled gecko
  8063. scm_set_program_arguments will return the following expression:
  8064. (begin (load "ekko") (main (command-line)) (quit))
  8065. You will usually want to use scm_shell instead of calling this
  8066. function yourself.
  8067. ** The function scm_shell_usage prints a usage message appropriate for
  8068. an interpreter that uses scm_compile_shell_switches to handle its
  8069. command-line arguments.
  8070. void scm_shell_usage (int FATAL, char *MESSAGE)
  8071. Print a usage message to the standard error output. If MESSAGE is
  8072. non-zero, write it before the usage message, followed by a newline.
  8073. If FATAL is non-zero, exit the process, using FATAL as the
  8074. termination status. (If you want to be compatible with Guile,
  8075. always use 1 as the exit status when terminating due to command-line
  8076. usage problems.)
  8077. You will usually want to use scm_shell instead of calling this
  8078. function yourself.
  8079. ** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
  8080. expressions. It used to return SCM_EOL. Earth-shattering.
  8081. ** The macros for declaring scheme objects in C code have been
  8082. rearranged slightly. They are now:
  8083. SCM_SYMBOL (C_NAME, SCHEME_NAME)
  8084. Declare a static SCM variable named C_NAME, and initialize it to
  8085. point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
  8086. be a C identifier, and SCHEME_NAME should be a C string.
  8087. SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
  8088. Just like SCM_SYMBOL, but make C_NAME globally visible.
  8089. SCM_VCELL (C_NAME, SCHEME_NAME)
  8090. Create a global variable at the Scheme level named SCHEME_NAME.
  8091. Declare a static SCM variable named C_NAME, and initialize it to
  8092. point to the Scheme variable's value cell.
  8093. SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
  8094. Just like SCM_VCELL, but make C_NAME globally visible.
  8095. The `guile-snarf' script writes initialization code for these macros
  8096. to its standard output, given C source code as input.
  8097. The SCM_GLOBAL macro is gone.
  8098. ** The scm_read_line and scm_read_line_x functions have been replaced
  8099. by Scheme code based on the %read-delimited! procedure (known to C
  8100. code as scm_read_delimited_x). See its description above for more
  8101. information.
  8102. ** The function scm_sys_open has been renamed to scm_open. It now
  8103. returns a port instead of an FD object.
  8104. * The dynamic linking support has changed. For more information, see
  8105. libguile/DYNAMIC-LINKING.
  8106. Guile 1.0b3
  8107. User-visible changes from Thursday, September 5, 1996 until Guile 1.0
  8108. (Sun 5 Jan 1997):
  8109. * Changes to the 'guile' program:
  8110. ** Guile now loads some new files when it starts up. Guile first
  8111. searches the load path for init.scm, and loads it if found. Then, if
  8112. Guile is not being used to execute a script, and the user's home
  8113. directory contains a file named `.guile', Guile loads that.
  8114. ** You can now use Guile as a shell script interpreter.
  8115. To paraphrase the SCSH manual:
  8116. When Unix tries to execute an executable file whose first two
  8117. characters are the `#!', it treats the file not as machine code to
  8118. be directly executed by the native processor, but as source code
  8119. to be executed by some interpreter. The interpreter to use is
  8120. specified immediately after the #! sequence on the first line of
  8121. the source file. The kernel reads in the name of the interpreter,
  8122. and executes that instead. It passes the interpreter the source
  8123. filename as its first argument, with the original arguments
  8124. following. Consult the Unix man page for the `exec' system call
  8125. for more information.
  8126. Now you can use Guile as an interpreter, using a mechanism which is a
  8127. compatible subset of that provided by SCSH.
  8128. Guile now recognizes a '-s' command line switch, whose argument is the
  8129. name of a file of Scheme code to load. It also treats the two
  8130. characters `#!' as the start of a comment, terminated by `!#'. Thus,
  8131. to make a file of Scheme code directly executable by Unix, insert the
  8132. following two lines at the top of the file:
  8133. #!/usr/local/bin/guile -s
  8134. !#
  8135. Guile treats the argument of the `-s' command-line switch as the name
  8136. of a file of Scheme code to load, and treats the sequence `#!' as the
  8137. start of a block comment, terminated by `!#'.
  8138. For example, here's a version of 'echo' written in Scheme:
  8139. #!/usr/local/bin/guile -s
  8140. !#
  8141. (let loop ((args (cdr (program-arguments))))
  8142. (if (pair? args)
  8143. (begin
  8144. (display (car args))
  8145. (if (pair? (cdr args))
  8146. (display " "))
  8147. (loop (cdr args)))))
  8148. (newline)
  8149. Why does `#!' start a block comment terminated by `!#', instead of the
  8150. end of the line? That is the notation SCSH uses, and although we
  8151. don't yet support the other SCSH features that motivate that choice,
  8152. we would like to be backward-compatible with any existing Guile
  8153. scripts once we do. Furthermore, if the path to Guile on your system
  8154. is too long for your kernel, you can start the script with this
  8155. horrible hack:
  8156. #!/bin/sh
  8157. exec /really/long/path/to/guile -s "$0" ${1+"$@"}
  8158. !#
  8159. Note that some very old Unix systems don't support the `#!' syntax.
  8160. ** You can now run Guile without installing it.
  8161. Previous versions of the interactive Guile interpreter (`guile')
  8162. couldn't start up unless Guile's Scheme library had been installed;
  8163. they used the value of the environment variable `SCHEME_LOAD_PATH'
  8164. later on in the startup process, but not to find the startup code
  8165. itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
  8166. code.
  8167. To run Guile without installing it, build it in the normal way, and
  8168. then set the environment variable `SCHEME_LOAD_PATH' to a
  8169. colon-separated list of directories, including the top-level directory
  8170. of the Guile sources. For example, if you unpacked Guile so that the
  8171. full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
  8172. you might say
  8173. export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
  8174. ** Guile's read-eval-print loop no longer prints #<unspecified>
  8175. results. If the user wants to see this, she can evaluate the
  8176. expression (assert-repl-print-unspecified #t), perhaps in her startup
  8177. file.
  8178. ** Guile no longer shows backtraces by default when an error occurs;
  8179. however, it does display a message saying how to get one, and how to
  8180. request that they be displayed by default. After an error, evaluate
  8181. (backtrace)
  8182. to see a backtrace, and
  8183. (debug-enable 'backtrace)
  8184. to see them by default.
  8185. * Changes to Guile Scheme:
  8186. ** Guile now distinguishes between #f and the empty list.
  8187. This is for compatibility with the IEEE standard, the (possibly)
  8188. upcoming Revised^5 Report on Scheme, and many extant Scheme
  8189. implementations.
  8190. Guile used to have #f and '() denote the same object, to make Scheme's
  8191. type system more compatible with Emacs Lisp's. However, the change
  8192. caused too much trouble for Scheme programmers, and we found another
  8193. way to reconcile Emacs Lisp with Scheme that didn't require this.
  8194. ** Guile's delq, delv, delete functions, and their destructive
  8195. counterparts, delq!, delv!, and delete!, now remove all matching
  8196. elements from the list, not just the first. This matches the behavior
  8197. of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
  8198. functions which inspired them.
  8199. I recognize that this change may break code in subtle ways, but it
  8200. seems best to make the change before the FSF's first Guile release,
  8201. rather than after.
  8202. ** The compiled-library-path function has been deleted from libguile.
  8203. ** The facilities for loading Scheme source files have changed.
  8204. *** The variable %load-path now tells Guile which directories to search
  8205. for Scheme code. Its value is a list of strings, each of which names
  8206. a directory.
  8207. *** The variable %load-extensions now tells Guile which extensions to
  8208. try appending to a filename when searching the load path. Its value
  8209. is a list of strings. Its default value is ("" ".scm").
  8210. *** (%search-load-path FILENAME) searches the directories listed in the
  8211. value of the %load-path variable for a Scheme file named FILENAME,
  8212. with all the extensions listed in %load-extensions. If it finds a
  8213. match, then it returns its full filename. If FILENAME is absolute, it
  8214. returns it unchanged. Otherwise, it returns #f.
  8215. %search-load-path will not return matches that refer to directories.
  8216. *** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
  8217. uses %seach-load-path to find a file named FILENAME, and loads it if
  8218. it finds it. If it can't read FILENAME for any reason, it throws an
  8219. error.
  8220. The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
  8221. `read' function.
  8222. *** load uses the same searching semantics as primitive-load.
  8223. *** The functions %try-load, try-load-with-path, %load, load-with-path,
  8224. basic-try-load-with-path, basic-load-with-path, try-load-module-with-
  8225. path, and load-module-with-path have been deleted. The functions
  8226. above should serve their purposes.
  8227. *** If the value of the variable %load-hook is a procedure,
  8228. `primitive-load' applies its value to the name of the file being
  8229. loaded (without the load path directory name prepended). If its value
  8230. is #f, it is ignored. Otherwise, an error occurs.
  8231. This is mostly useful for printing load notification messages.
  8232. ** The function `eval!' is no longer accessible from the scheme level.
  8233. We can't allow operations which introduce glocs into the scheme level,
  8234. because Guile's type system can't handle these as data. Use `eval' or
  8235. `read-and-eval!' (see below) as replacement.
  8236. ** The new function read-and-eval! reads an expression from PORT,
  8237. evaluates it, and returns the result. This is more efficient than
  8238. simply calling `read' and `eval', since it is not necessary to make a
  8239. copy of the expression for the evaluator to munge.
  8240. Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
  8241. for the `read' function.
  8242. ** The function `int?' has been removed; its definition was identical
  8243. to that of `integer?'.
  8244. ** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
  8245. use the R4RS names for these functions.
  8246. ** The function object-properties no longer returns the hash handle;
  8247. it simply returns the object's property list.
  8248. ** Many functions have been changed to throw errors, instead of
  8249. returning #f on failure. The point of providing exception handling in
  8250. the language is to simplify the logic of user code, but this is less
  8251. useful if Guile's primitives don't throw exceptions.
  8252. ** The function `fileno' has been renamed from `%fileno'.
  8253. ** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
  8254. * Changes to Guile's C interface:
  8255. ** The library's initialization procedure has been simplified.
  8256. scm_boot_guile now has the prototype:
  8257. void scm_boot_guile (int ARGC,
  8258. char **ARGV,
  8259. void (*main_func) (),
  8260. void *closure);
  8261. scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
  8262. MAIN_FUNC should do all the work of the program (initializing other
  8263. packages, reading user input, etc.) before returning. When MAIN_FUNC
  8264. returns, call exit (0); this function never returns. If you want some
  8265. other exit value, MAIN_FUNC may call exit itself.
  8266. scm_boot_guile arranges for program-arguments to return the strings
  8267. given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
  8268. scm_set_program_arguments with the final list, so Scheme code will
  8269. know which arguments have been processed.
  8270. scm_boot_guile establishes a catch-all catch handler which prints an
  8271. error message and exits the process. This means that Guile exits in a
  8272. coherent way when system errors occur and the user isn't prepared to
  8273. handle it. If the user doesn't like this behavior, they can establish
  8274. their own universal catcher in MAIN_FUNC to shadow this one.
  8275. Why must the caller do all the real work from MAIN_FUNC? The garbage
  8276. collector assumes that all local variables of type SCM will be above
  8277. scm_boot_guile's stack frame on the stack. If you try to manipulate
  8278. SCM values after this function returns, it's the luck of the draw
  8279. whether the GC will be able to find the objects you allocate. So,
  8280. scm_boot_guile function exits, rather than returning, to discourage
  8281. people from making that mistake.
  8282. The IN, OUT, and ERR arguments were removed; there are other
  8283. convenient ways to override these when desired.
  8284. The RESULT argument was deleted; this function should never return.
  8285. The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
  8286. general.
  8287. ** Guile's header files should no longer conflict with your system's
  8288. header files.
  8289. In order to compile code which #included <libguile.h>, previous
  8290. versions of Guile required you to add a directory containing all the
  8291. Guile header files to your #include path. This was a problem, since
  8292. Guile's header files have names which conflict with many systems'
  8293. header files.
  8294. Now only <libguile.h> need appear in your #include path; you must
  8295. refer to all Guile's other header files as <libguile/mumble.h>.
  8296. Guile's installation procedure puts libguile.h in $(includedir), and
  8297. the rest in $(includedir)/libguile.
  8298. ** Two new C functions, scm_protect_object and scm_unprotect_object,
  8299. have been added to the Guile library.
  8300. scm_protect_object (OBJ) protects OBJ from the garbage collector.
  8301. OBJ will not be freed, even if all other references are dropped,
  8302. until someone does scm_unprotect_object (OBJ). Both functions
  8303. return OBJ.
  8304. Note that calls to scm_protect_object do not nest. You can call
  8305. scm_protect_object any number of times on a given object, and the
  8306. next call to scm_unprotect_object will unprotect it completely.
  8307. Basically, scm_protect_object and scm_unprotect_object just
  8308. maintain a list of references to things. Since the GC knows about
  8309. this list, all objects it mentions stay alive. scm_protect_object
  8310. adds its argument to the list; scm_unprotect_object remove its
  8311. argument from the list.
  8312. ** scm_eval_0str now returns the value of the last expression
  8313. evaluated.
  8314. ** The new function scm_read_0str reads an s-expression from a
  8315. null-terminated string, and returns it.
  8316. ** The new function `scm_stdio_to_port' converts a STDIO file pointer
  8317. to a Scheme port object.
  8318. ** The new function `scm_set_program_arguments' allows C code to set
  8319. the value returned by the Scheme `program-arguments' function.
  8320. Older changes:
  8321. * Guile no longer includes sophisticated Tcl/Tk support.
  8322. The old Tcl/Tk support was unsatisfying to us, because it required the
  8323. user to link against the Tcl library, as well as Tk and Guile. The
  8324. interface was also un-lispy, in that it preserved Tcl/Tk's practice of
  8325. referring to widgets by names, rather than exporting widgets to Scheme
  8326. code as a special datatype.
  8327. In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
  8328. maintainers described some very interesting changes in progress to the
  8329. Tcl/Tk internals, which would facilitate clean interfaces between lone
  8330. Tk and other interpreters --- even for garbage-collected languages
  8331. like Scheme. They expected the new Tk to be publicly available in the
  8332. fall of 1996.
  8333. Since it seems that Guile might soon have a new, cleaner interface to
  8334. lone Tk, and that the old Guile/Tk glue code would probably need to be
  8335. completely rewritten, we (Jim Blandy and Richard Stallman) have
  8336. decided not to support the old code. We'll spend the time instead on
  8337. a good interface to the newer Tk, as soon as it is available.
  8338. Until then, gtcltk-lib provides trivial, low-maintenance functionality.
  8339. Copyright information:
  8340. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
  8341. Permission is granted to anyone to make or distribute verbatim copies
  8342. of this document as received, in any medium, provided that the
  8343. copyright notice and this permission notice are preserved,
  8344. thus giving the recipient permission to redistribute in turn.
  8345. Permission is granted to distribute modified versions
  8346. of this document, or of portions of it,
  8347. under the above conditions, provided also that they
  8348. carry prominent notices stating who last changed them.
  8349. Local variables:
  8350. mode: outline
  8351. paragraph-separate: "[ ]*$"
  8352. end: