NEWS 465 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508
  1. Guile NEWS --- history of user-visible changes.
  2. Copyright (C) 1996-2017 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.2.3 (since 2.2.2):
  6. * New interfaces
  7. ** (web uri) module has better support for RFC 3986
  8. The URI standard, RFC 3986, defines additional "relative-ref" and
  9. "URI-reference" data types. Thanks to Daniel Hartwig, Guile's support
  10. for these URI subtypes has been improved. See "Universal Resource
  11. Identifiers" in the manual, for more.
  12. * New deprecations
  13. ** Using `uri?' as a predicate on relative-refs deprecated
  14. If you don't care whether the URI is a relative-ref or not, use
  15. `uri-reference?'. If you do, use `uri-reference?' and `relative-ref?'.
  16. In the future `uri?' will return a true value only for URIs that specify
  17. a scheme.
  18. * Bug fixes
  19. ** Enable GNU Readline 7.0's support for "bracketed paste".
  20. Before, when pasting an expression that contained TAB characters into
  21. Guile's REPL with GNU Readline support enabled, the pasted TAB
  22. characters would trigger autocompletion in Readline. This was never
  23. what you wanted. Guile now sets the new "bracketed-paste" option in GNU
  24. Readline 7.0 to on by default, making readline treat pastes into the
  25. terminal as atomic units without control characters. See "Readline
  26. Options" in the manual for full details.
  27. ** Fix time-monotonic from SRFI-19; broken in 2.2.1.
  28. Changes in 2.2.2 (since 2.2.1):
  29. * Bug fixes
  30. ** Syntax objects are once more comparable with 'equal?'
  31. The syntax object change in 2.2.1 had the unintended effect of making
  32. syntax objects no longer comparable with equal?. This release restores
  33. the previous behavior.
  34. ** Restore libgc dependency
  35. The change to throw exceptions when mutating literal constants partly
  36. relied on an interface that was added to our garbage collector (BDW-GC)
  37. after its 7.2 release. Guile 2.2.2 adds a workaround to allow Guile to
  38. continue be used with libgc as old as 7.2.
  39. ** SRFI-37 bug fix to not error on empty-string arguments.
  40. Thanks to Thomas Danckaert for fixing this long-standing bug.
  41. Changes in 2.2.1 (since 2.2.0):
  42. * Notable changes
  43. ** New sandboxed evaluation facility
  44. Guile now has a way to execute untrusted code in a safe way. See
  45. "Sandboxed Evaluation" in the manual for full details, including some
  46. important notes on limitations on the sandbox's ability to prevent
  47. resource exhaustion.
  48. ** All literal constants are read-only
  49. According to the Scheme language definition, it is an error to attempt
  50. to mutate a "constant literal". A constant literal is data that is a
  51. literal quoted part of a program. For example, all of these are errors:
  52. (set-car! '(1 . 2) 42)
  53. (append! '(1 2 3) '(4 5 6))
  54. (vector-set! '#(a b c) 1 'B)
  55. Guile takes advantage of this provision of Scheme to deduplicate shared
  56. structure in constant literals within a compilation unit, and to
  57. allocate constant data directly in the compiled object file. If the
  58. data needs no relocation at run-time, as is the case for pairs or
  59. vectors that only contain immediate values, then the data can actually
  60. be shared between different Guile processes, using the operating
  61. system's virtual memory facilities.
  62. However, in Guile 2.2.0, constants that needed relocation were actually
  63. mutable -- though (vector-set! '#(a b c) 1 'B) was an error, Guile
  64. wouldn't actually cause an exception to be raised, silently allowing the
  65. mutation. This could affect future users of this constant, or indeed of
  66. any constant in the compilation unit that shared structure with the
  67. original vector.
  68. Additionally, attempting to mutate constant literals mapped in the
  69. read-only section of files would actually cause a segmentation fault, as
  70. the operating system prohibits writes to read-only memory. "Don't do
  71. that" isn't a very nice solution :)
  72. Both of these problems have been fixed. Any attempt to mutate a
  73. constant literal will now raise an exception, whether the constant needs
  74. relocation or not.
  75. ** Syntax objects are now a distinct type
  76. It used to be that syntax objects were represented as a tagged vector.
  77. These values could be forged by users to break scoping abstractions,
  78. preventing the implementation of sandboxing facilities in Guile. We are
  79. as embarrassed about the previous situation as we pleased are about the
  80. fact that we've fixed it.
  81. Unfortunately, during the 2.2 stable series (or at least during part of
  82. it), we need to support files compiled with Guile 2.2.0. These files
  83. may contain macros that contain legacy syntax object constants. See the
  84. discussion of "allow-legacy-syntax-objects?" in "Syntax Transformer
  85. Helpers" in the manual for full details.
  86. * Bug fixes
  87. *** Fix snarfing with -ggdb3 (#25803)
  88. *** Fix spurious snarf warnings for net_db.c
  89. *** Output statprof flat display to correct port
  90. *** Document guile-2.2 cond-expand feature
  91. *** Add --with-bdw-gc for BSDs that use bdw-gc-threaded (see README)
  92. *** Documentation typo fixes (#26188)
  93. *** Fix SRFI-9 date->string bugs with ~N and ~F (#26261, #26260, #26259)
  94. *** SRFI-19 current-time-monotonic returns time of right type (#26329)
  95. *** Avoid causing GC when looking up exception handler
  96. *** Increment objcode version, in a compatible way
  97. *** Fix compile warning in (system base types)
  98. *** Only run tests that require fork if it is provided
  99. *** Speed up procedure-minimum-arity for fixed arity
  100. *** REPL server tests catch ECONNABORTED
  101. *** Avoid deprecated argument to setvbuf in (web client)
  102. *** Remove non-existent 'open-connection-for-uri' export from (web client)
  103. Changes in 2.2.0 (changes since the 2.0.x stable release series):
  104. * Notable changes
  105. ** Speed
  106. The biggest change in Guile 2.2 is a complete rewrite of its virtual
  107. machine and compiler internals. The result is faster startup time,
  108. better memory usage, and faster execution of user code. See the
  109. "Performance improvements" section below for more details.
  110. ** Better thread-safety
  111. This new release series takes the ABI-break opportunity to fix some
  112. interfaces that were difficult to use correctly from multiple threads.
  113. Notably, weak hash tables and ports are now transparently thread-safe.
  114. See "Scheduling" in the manual, for updated documentation on threads and
  115. communications primitives.
  116. ** Better space-safety
  117. It used to be the case that, when calling a Scheme procedure, the
  118. procedure and arguments were always preserved against garbage
  119. collection. This is no longer the case; Guile is free to collect the
  120. procedure and arguments if they become unreachable, or to re-use their
  121. slots for other local variables. Guile still offers good-quality
  122. backtraces by determining the procedure being called from the
  123. instruction pointer instead of from the value in slot 0 of an
  124. application frame, and by using a live variable map that allows the
  125. debugger to know which locals are live at all points in a frame.
  126. ** Off-main-thread finalization
  127. Following Guile 2.0.6's change to invoke finalizers via asyncs, Guile
  128. 2.2 takes the additional step of invoking finalizers from a dedicated
  129. finalizer thread, if threads are enabled. This avoids concurrency
  130. issues between finalizers and application code, and also speeds up
  131. finalization. If your application's finalizers are not robust to the
  132. presence of threads, see "Foreign Objects" in the manual for information
  133. on how to disable automatic finalization and instead run finalizers
  134. manually.
  135. ** Better locale support in Guile scripts
  136. When Guile is invoked directly, either from the command line or via a
  137. hash-bang line (e.g. "#!/usr/bin/guile"), it now installs the current
  138. locale via a call to `(setlocale LC_ALL "")'. For users with a unicode
  139. locale, this makes all ports unicode-capable by default, without the
  140. need to call `setlocale' in your program. This behavior may be
  141. controlled via the GUILE_INSTALL_LOCALE environment variable; see
  142. "Environment Variables" in the manual, for more.
  143. ** Complete Emacs-compatible Elisp implementation
  144. Thanks to the work of Robin Templeton, Guile's Elisp implementation is
  145. now fully Emacs-compatible, implementing all of Elisp's features and
  146. quirks in the same way as the editor we know and love.
  147. ** Dynamically expandable stacks
  148. Instead of allocating fixed stack sizes for running Scheme code, Guile
  149. now starts off each thread with only one page of stack, and expands and
  150. shrinks it dynamically as needed. Guile will throw an exception for
  151. stack overflows if growing the stack fails. It is also possible to
  152. impose a stack limit during the extent of a function call. See "Stack
  153. Overflow" in the manual, for more.
  154. This change allows users to write programs that use the stack as a data
  155. structure for pending computations, as it was meant to be, without
  156. reifying that data out to the heap. Where you would previously make a
  157. loop that collect its results in reverse order only to re-reverse them
  158. at the end, now you can just recurse without worrying about stack
  159. overflows.
  160. Using the stack also allows more code to be continuation-safe. For
  161. example, returning multiple times from a `map' procedure in Guile 2.0
  162. would change the value of previously returned result lists, because
  163. `map' built its result list in reverse order then used `reverse!' to
  164. return the proper result. Now in Guile 2.2, `map' is implemented using
  165. straightforward recursion, which eliminates this bug while maintaining
  166. good performance as well as good space complexity.
  167. ** Out-of-memory improvements
  168. Instead of aborting, failures to allocate memory will now raise an
  169. unwind-only `out-of-memory' exception, and cause the corresponding
  170. `catch' expression to run garbage collection in order to free up memory.
  171. ** GOOPS core reimplemented in Scheme
  172. Guile's object orientation system, GOOPS, has been mostly reimplemented
  173. in Scheme. This decreases its maintenance burden on the rest of Guile,
  174. while also makes it possible to implement new features in the future,
  175. such as method combinations or `eqv?' specializers.
  176. ** Better handling of GUILE_LOAD_COMPILED_PATH
  177. It used to be that Guile would stop at the first .go file it found in
  178. the GUILE_LOAD_COMPILED_PATH. If that file turned out to be out of
  179. date, then no .go file would be loaded. Now Guile will continue to
  180. search the path for a file which is both present and up-to-date, with
  181. respect to the .scm file.
  182. ** C99 required
  183. Following Emacs, you must use a C99-capable compiler when building
  184. Guile. In the future we also expect require C99 to use Guile's C
  185. interface, at least for `stdint' support.
  186. ** Lightweight pre-emptive threading primitives
  187. The compiler now inserts special "handle-interrupts" opcodes before each
  188. call, return, and backwards jump target. This allows the user to
  189. interrupt any computation and to accurately profile code using
  190. interrupts. It used to be that interrupts were run by calling a C
  191. function from the VM; now interrupt thunks are run directly from the VM.
  192. This allows interrupts to save a delimited continuation and, if the
  193. continuation was established from the same VM invocation (the usual
  194. restriction), that continuation can then be resumed. In this way users
  195. can implement lightweight pre-emptive threading facilities.
  196. ** with-dynamic-state in VM
  197. Similarly, `with-dynamic-state' no longer recurses out of the VM,
  198. allowing captured delimited continuations that include a
  199. `with-dynamic-state' invocation to be resumed. This is a precondition
  200. to allow lightweight threading libraries to establish a dynamic state
  201. per lightweight fiber.
  202. * Performance improvements
  203. ** Faster programs via new virtual machine
  204. Guile now compiles programs to instructions for a new virtual machine.
  205. The new virtual machine's instructions can address their source and
  206. destination operands by "name" (slot). This makes access to named
  207. temporary values much faster than in Guile 2.0, and removes a lot of
  208. value-shuffling that the old virtual machine had to do. The end result
  209. is that loop-heavy code can be two or three times as fast with Guile 2.2
  210. as in 2.0. Your mileage may vary, of course; see "A Virtual Machine for
  211. Guile" in the manual for the nitties and the gritties.
  212. ** Better startup time, memory usage with ELF object file format
  213. Guile now uses the standard ELF format for its compiled code. (Guile
  214. has its own loader and linker, so this does not imply a dependency on
  215. any particular platform's ELF toolchain.) The benefit is that Guile is
  216. now able to statically allocate more data in the object files. ELF also
  217. enables more sharing of data between processes, and decreases startup
  218. time (about 40% faster than the already fast startup of the Guile 2.0
  219. series). Guile also uses DWARF for some of its debugging information.
  220. Much of the debugging information can be stripped from the object files
  221. as well. See "Object File Format" in the manual, for full details.
  222. ** Better optimizations via compiler rewrite
  223. Guile's compiler now uses a Continuation-Passing Style (CPS)
  224. intermediate language, allowing it to reason easily about temporary
  225. values and control flow. Examples of optimizations that this permits
  226. are optimal contification, optimal common subexpression elimination,
  227. dead code elimination, loop-invariant code motion, loop peeling, loop
  228. inversion, parallel moves with at most one temporary, allocation of
  229. stack slots using precise liveness information, unboxing of 64-bit
  230. integers and floating point values, and closure optimization. For more,
  231. see "Continuation-Passing Style" in the manual.
  232. ** Faster interpreter
  233. Combined with a number of optimizations to the interpreter itself,
  234. simply compiling `eval.scm' with the new compiler yields an interpreter
  235. that is consistently two or three times faster than the one in Guile
  236. 2.0.
  237. ** Allocation-free dynamic stack
  238. Guile now implements the dynamic stack with an actual stack instead of a
  239. list of heap objects, avoiding most allocation. This speeds up prompts,
  240. the `scm_dynwind_*' family of functions, fluids, and `dynamic-wind'.
  241. ** Optimized UTF-8 and Latin-1 ports, symbols, and strings
  242. Guile 2.2 is faster at reading and writing UTF-8 and Latin-1 strings
  243. from ports, and at converting symbols and strings to and from these
  244. encodings.
  245. ** Optimized hash functions
  246. Guile 2.2 now uses Bob Jenkins' `hashword2' (from his `lookup3.c') for
  247. its string hash, and Thomas Wang's integer hash function for `hashq' and
  248. `hashv'. These functions produce much better hash values across all
  249. available fixnum bits.
  250. ** Optimized generic array facility
  251. Thanks to work by Daniel Llorens, the generic array facility is much
  252. faster now, as it is internally better able to dispatch on the type of
  253. the underlying backing store.
  254. ** All ports are now buffered, can be targets of `setvbuf'
  255. See "Buffering" in the manual, for more. A port with a buffer size of 1
  256. is equivalent to an unbuffered port. Ports may set their default buffer
  257. sizes, and some ports (for example soft ports) are unbuffered by default
  258. for historical reasons.
  259. ** Mutexes are now faster under contention
  260. Guile implements its own mutexes, so that threads that are trying to
  261. acquire a mutex can be interrupted. These mutexes used to be quite
  262. inefficient when many threads were trying to acquire them, causing many
  263. spurious wakeups and contention. This has been fixed.
  264. * New interfaces
  265. ** New `cond-expand' feature: `guile-2.2'
  266. Use this feature if you need to check for Guile 2.2 from Scheme code.
  267. ** New predicate: `nil?'
  268. See "Nil" in the manual.
  269. ** New compiler modules
  270. Since the compiler was rewritten, there are new modules for the back-end
  271. of the compiler and the low-level loader and introspection interfaces.
  272. See the "Guile Implementation" chapter in the manual for all details.
  273. ** Add "tree" display mode for statprof.
  274. See the newly updated "Statprof" section of the manual, for more.
  275. ** Support for non-blocking I/O
  276. See "Non-Blocking I/O" in the manual, for more.
  277. ** Implement R6RS custom binary input/output ports
  278. See "Custom Ports" in the manual.
  279. ** Implement R6RS output-buffer-mode
  280. ** Implement R6RS bytevector->string, string->bytevector
  281. See "R6RS Transcoders" in the manual.
  282. ** `accept' now takes optional flags argument
  283. These flags can include `SOCK_NONBLOCK' and `SOCK_CLOEXEC', indicating
  284. options to apply to the returned socket, potentially removing the need
  285. for additional system calls to set these options. See "Network Sockets
  286. and Communication" in the manual, for more.
  287. ** Thread-safe atomic boxes (references)
  288. See "Atomics" in the manual.
  289. ** Thread-local fluids
  290. Guile now has support for fluids whose values are not captured by
  291. `current-dynamic-state' and not inheritied by child threads, and thus
  292. are local to the kernel thread they run on. See "Thread-Local
  293. Variables" in the manual, for more.
  294. ** suspendable-continuation?
  295. This predicate returns true if the delimited continuation captured by
  296. aborting to a prompt would be able to be resumed. See "Prompt
  297. Primitives" in the manual for more.
  298. ** scm_c_prepare_to_wait_on_fd, scm_c_prepare_to_wait_on_cond,
  299. ** scm_c_wait_finished
  300. See "Asyncs" in the manual for more.
  301. ** File descriptor finalizers
  302. See "Ports and File Descriptors" in the manual.
  303. ** New inline functions: `scm_new_smob', `scm_new_double_smob'
  304. These can replace many uses of SCM_NEWSMOB, SCM_RETURN_NEWSMOB2, and the
  305. like. See XXX in the manual, for more.
  306. ** New low-level type accessors
  307. For more on `SCM_HAS_TYP7', `SCM_HAS_TYP7S', `SCM_HAS_TYP16', see XXX.
  308. `SCM_HEAP_OBJECT_P' is now an alias for the inscrutable `SCM_NIMP'.
  309. `SCM_UNPACK_POINTER' and `SCM_PACK_POINTER' are better-named versions of
  310. the old `SCM2PTR' and `PTR2SCM'. Also, `SCM_UNPACK_POINTER' yields a
  311. void*.
  312. ** `TCP_NODELAY' and `TCP_CORK' socket options, if provided by the system
  313. ** `scm_c_put_latin1_chars', `scm_c_put_utf32_chars'
  314. Use these instead of `scm_lfwrite'. See the new "Using Ports from C"
  315. section of the manual, for more.
  316. ** <standard-vtable>, standard-vtable-fields
  317. See "Structures" in the manual for more on these.
  318. ** Convenience utilities for ports and strings.
  319. See "Conversion to/from C" for more on `scm_from_port_string',
  320. `scm_from_port_stringn', `scm_to_port_string', and
  321. `scm_to_port_stringn'.
  322. ** New expressive PEG parser
  323. See "PEG Parsing" in the manual for more. Thanks to Michael Lucy for
  324. originally writing these, and to Noah Lavine for integration work.
  325. ** `make-stack' now also works on delimited continuations
  326. ** Better URI-reference support
  327. The `(web uri)' module now has interfaces for handling URI references,
  328. which might not have a scheme. The Location header of a web request or
  329. response is now a URI reference instead of a URI. Also,
  330. `request-absolute-uri' now has an optional default scheme argument. See
  331. "Web" in the manual for full details.
  332. ** formal-name->char, char->formal-name
  333. See "Characters", in the manual.
  334. * Incompatible changes
  335. ** ASCII is not ISO-8859-1
  336. In Guile 2.0, if a user set "ASCII" or "ANSI_X3.4-1968" as the encoding
  337. of a port, Guile would treat it as ISO-8859-1. While these encodings
  338. are the same for codepoints 0 to 127, ASCII does not extend past that
  339. range, whereas ISO-8859-1 goes up to 255. Guile 2.2 no longer treats
  340. ASCII as ISO-8859-1. This is likely to be a problem only if the user's
  341. locale is set to ASCII, and the user or a program writes non-ASCII
  342. codepoints to a port.
  343. ** Decoding errors do not advance the read pointer before erroring
  344. When the user sets a port's conversion strategy to "error", indicating
  345. that Guile should throw an error if it tries to read from a port whose
  346. incoming bytes are not valid for the port's encoding, it used to be that
  347. Guile would advance the read pointer past the bad bytes, and then throw
  348. an error. This would allow the following `read-char' invocation to
  349. proceed after the bad bytes. This behavior is incompatible with the
  350. final R6RS standard, and besides contravenes the user's intention to
  351. raise an error on bad input. Guile now raises an error without
  352. advancing the read pointer. To skip over a bad encoding, set the port
  353. conversion strategy to "substitute" and read a substitute character.
  354. ** Decoding errors with `substitute' strategy return U+FFFD
  355. It used to be that decoding errors with the `substitute' conversion
  356. strategy would replace the bad bytes with a `?' character. This has
  357. been changed to use the standard U+FFFD REPLACEMENT CHARACTER, in
  358. accordance with the Unicode recommendations.
  359. ** API to define new port types from C has changed
  360. Guile's ports have been completely overhauled to allow Guile developers
  361. and eventually Guile users to write low-level input and output routines
  362. in Scheme. The new internals will eventually allow for user-space
  363. tasklets or green threads that suspend to a scheduler when they would
  364. cause blocking I/O, allowing users to write straightforward network
  365. services that parse their input and send their output as if it were
  366. blocking, while under the hood Guile can multiplex many active
  367. connections at once.
  368. At the same time, this change makes Guile's ports implementation much
  369. more maintainable, rationalizing the many legacy port internals and
  370. making sure that the abstractions between the user, Guile's core ports
  371. facility, and the port implementations result in a system that is as
  372. performant and expressive as possible.
  373. The interface to the user has no significant change, neither on the C
  374. side nor on the Scheme side. However this refactoring has changed the
  375. interface to the port implementor in an incompatible way. See the newly
  376. expanded "I/O Extensions" in the manual, for full details.
  377. *** Remove `scm_set_port_mark'
  378. Port mark functions have not been called since the switch to the BDW
  379. garbage collector.
  380. *** Remove `scm_set_port_equalp'
  381. Likewise port equal functions weren't being called. Given that ports
  382. have their own internal buffers, it doesn't make sense to hook them into
  383. equal? anyway.
  384. *** Remove `scm_set_port_free'
  385. It used to be that if an open port became unreachable, a special "free"
  386. function would be called instead of the "close" function. Now that the
  387. BDW-GC collector allows us to run arbitrary code in finalizers, we can
  388. simplify to just call "close" on the port and remove the separate free
  389. functions. Note that hooking into the garbage collector has some
  390. overhead. For that reason Guile exposes a new interface,
  391. `scm_set_port_needs_close_on_gc', allowing port implementations to
  392. indicate to Guile whether they need closing on GC or not.
  393. *** Remove `scm_set_port_end_input', `scm_set_port_flush'
  394. As buffering is handled by Guile itself, these functions which were to
  395. manage an implementation-side buffer are no longer needed.
  396. *** Change prototype of `scm_make_port_type'
  397. The `read' (renamed from `fill_input') and `write' functions now operate
  398. on bytevectors. Also the `mode_bits' argument now inplicitly includes
  399. SCM_OPN, so you don't need to include these.
  400. *** Change prototype of port `close' function
  401. The port close function now returns void.
  402. *** Port and port type data structures are now opaque
  403. Port type implementations should now use API to access port state.
  404. However, since the change to handle port buffering centrally, port type
  405. implementations rarely need to access unrelated port state.
  406. *** Port types are now `scm_t_port_type*', not a tc16 value
  407. `scm_make_port_type' now returns an opaque pointer, not a tc16.
  408. Relatedly, the limitation that there only be 256 port types has been
  409. lifted.
  410. ** String ports default to UTF-8
  411. Guile 2.0 would use the `%default-port-encoding' when creating string
  412. ports. This resulted in ports that could only accept a subset of valid
  413. characters, which was surprising to users. Now string ports default to
  414. the UTF-8 encoding. Sneaky users can still play encoding conversion
  415. games with string ports by explicitly setting the encoding of a port
  416. after it is open. See "Ports" in the manual for more.
  417. ** `scm_from_stringn' and `scm_to_stringn' encoding arguments are never NULL
  418. These functions now require a valid `encoding' argument, and will abort
  419. if given `NULL'.
  420. ** All r6rs ports are both textual and binary
  421. Because R6RS ports are a thin layer on top of Guile's ports, and Guile's
  422. ports are both textual and binary, Guile's R6RS ports are also both
  423. textual and binary, and thus both kinds have port transcoders. This is
  424. an incompatibility with respect to R6RS.
  425. ** Threading facilities moved to (ice-9 threads)
  426. It used to be that call-with-new-thread and other threading primitives
  427. were available in the default environment. This is no longer the case;
  428. they have been moved to (ice-9 threads) instead. Existing code will not
  429. break, however; we used the deprecation facility to signal a warning
  430. message while also providing these bindings in the root environment for
  431. the duration of the 2.2 series.
  432. ** cancel-thread uses asynchronous interrupts, not pthread_cancel
  433. See "Asyncs" in the manual, for more on asynchronous interrupts.
  434. ** SRFI-18 threads, mutexes, cond vars disjoint from Guile
  435. When we added support for the SRFI-18 threading library in Guile 2.0, we
  436. did so in a way that made SRFI-18 mutexes the same as Guile mutexes.
  437. This was a mistake. In Guile our goal is to provide basic,
  438. well-thought-out, well-implemented, minimal primitives, on top of which
  439. we can build a variety of opinionated frameworks. Incorporating SRFI-18
  440. functionality into core Guile caused us to bloat and slow down our core
  441. threading primitives. Worse, they became very hard to describe; they
  442. did many things, did them poorly, and all that they did was never
  443. adequately specified.
  444. For all of these reasons we have returned to a situation where SRFI-18
  445. concepts are implemented only in the `(srfi srfi-18)' module. This
  446. means that SRFI-18 threads are built on Guile threads, but aren't the
  447. same as Guile threads; calling Guile `thread?' on a thread no longer
  448. returns true.
  449. We realize this causes inconvenience to users who use both Guile
  450. threading interfaces and SRFI-18 interfaces, and we lament the change --
  451. but we are better off now. We hope the newly revised "Scheduling"
  452. section in the manual compensates for the headache.
  453. ** Remove `lock-mutex' "owner" argument
  454. Mutex owners are a SRFI-18 concept; use SRFI-18 mutexes instead.
  455. Relatedly, `scm_lock_mutex_timed' taking the owner argument is now
  456. deprecated; use `scm_timed_lock_mutex' instead.
  457. ** Remove `unlock-mutex' cond var and timeout arguments
  458. It used to be that `unlock-mutex' included `wait-condition-variable'
  459. functionality. This has been deprecated; use SRFI-18 if you want this
  460. behavior from `mutex-unlock!'. Relatedly, `scm_unlock_mutex_timed' is
  461. deprecated; use `scm_unlock_mutex' instead.
  462. ** Removed `unchecked-unlock' mutex flag
  463. This flag was introduced for internal use by SRFI-18; use SRFI-18
  464. mutexes if you need this behaviour.
  465. ** SRFI-18 mutexes no longer recursive
  466. Contrary to specification, SRFI-18 mutexes in Guile were recursive.
  467. This is no longer the case.
  468. ** Thread cleanup handlers removed
  469. The `set-thread-cleanup!' and `thread-cleanup' functions that were added
  470. in Guile 2.0 to support cleanup after thread cancellation are no longer
  471. needed, since threads can declare cleanup handlers via `dynamic-wind'.
  472. ** Only threads created by Guile are joinable
  473. `join-thread' used to work on "foreign" threads that were not created by
  474. Guile itself, though their join value was always `#f'. This is no
  475. longer the case; attempting to join a foreign thread will throw an
  476. error.
  477. ** Dynamic states capture values, not locations
  478. Dynamic states used to capture the locations of fluid-value
  479. associations. Capturing the current dynamic state then setting a fluid
  480. would result in a mutation of that captured state. Now capturing a
  481. dynamic state simply captures the current values, and calling
  482. `with-dynamic-state' copies those values into the Guile virtual machine
  483. instead of aliasing them in a way that could allow them to be mutated in
  484. place. This change allows Guile's fluid variables to be thread-safe.
  485. To capture the locations of a dynamic state, capture a
  486. `with-dynamic-state' invocation using partial continuations instead.
  487. ** Remove `frame-procedure'
  488. Several optimizations in Guile make `frame-procedure' an interface that
  489. we can no longer support. For background, `frame-procedure' used to
  490. return the value at slot 0 in a frame, which usually corresponds to the
  491. SCM value of the procedure being applied. However it could be that this
  492. slot is re-used for some other value, because the closure was not needed
  493. in the function. Such a re-use might even be for an untagged value, in
  494. which case treating slot 0 as a SCM value is quite dangerous. It's also
  495. possible that so-called "well-known" closures (closures whose callers
  496. are all known) are optimized in such a way that slot 0 is not a
  497. procedure but some optimized representation of the procedure's free
  498. variables. Instead, developers building debugging tools that would like
  499. access to `frame-procedure' are invited to look at the source for the
  500. `(system vm frame)' module for alternate interfaces, including the new
  501. `frame-procedure-name'.
  502. ** Remove `,procedure' REPL command
  503. Not all procedures have values, so it doesn't make sense to expose this
  504. interface to the user. Instead, the `,locals' REPL command will include
  505. the callee, if it is live.
  506. ** Remove `frame-local-ref', `frame-local-set!', `frame-num-locals'
  507. These procedures reference values in a frame on the stack. Since we now
  508. have unboxed values of different kinds, it is now necessary to specify
  509. the type when reference locals, and once this incompatible change needs
  510. to be made, we might as well make these interfaces private. See
  511. "Frames' in the manual, for more information on the replacements for
  512. these low-level interfaces.
  513. ** Vtable hierarchy changes
  514. In an attempt to make Guile's structure and record types integrate
  515. better with GOOPS by unifying the vtable hierarchy, `make-vtable-vtable'
  516. is now deprecated. Instead, users should just use `make-vtable' with
  517. appropriate arguments. See "Structures" in the manual for all of the
  518. details. As such, `record-type-vtable' and `%condition-type-vtable' now
  519. have a parent vtable and are no longer roots of the vtable hierarchy.
  520. ** Syntax parameters are a distinct type
  521. Guile 2.0's transitional implementation of `syntax-parameterize' was
  522. based on the `fluid-let-syntax' interface inherited from the psyntax
  523. expander. This interface allowed any binding to be dynamically rebound
  524. -- even bindings like `lambda'. This is no longer the case in Guile
  525. 2.2. Syntax parameters must be defined via `define-syntax-parameter',
  526. and only such bindings may be parameterized. See "Syntax Parameters" in
  527. the manual for more.
  528. ** Defined identifiers scoped in the current module
  529. Sometimes Guile's expander would attach incorrect module scoping
  530. information for top-level bindings made by an expansion. For example,
  531. given the following R6RS library:
  532. (library (defconst)
  533. (export defconst)
  534. (import (guile))
  535. (define-syntax-rule (defconst name val)
  536. (begin
  537. (define t val)
  538. (define-syntax-rule (name) t))))
  539. Attempting to use it would produce an error:
  540. (import (defconst))
  541. (defconst foo 42)
  542. (foo)
  543. =| Unbound variable: t
  544. It wasn't clear that we could fix this in Guile 2.0 without breaking
  545. someone's delicate macros, so the fix is only coming out now.
  546. ** Pseudo-hygienically rename macro-introduced bindings
  547. Bindings introduced by macros, like `t' in the `defconst' example above,
  548. are now given pseudo-fresh names. This allows
  549. (defconst foo 42)
  550. (defconst bar 37)
  551. to introduce different bindings for `t'. These pseudo-fresh names are
  552. made in such a way that if the macro is expanded again, for example as
  553. part of a simple recompilation, the introduced identifiers get the same
  554. pseudo-fresh names. See "Hygiene and the Top-Level" in the manual, for
  555. details.
  556. ** Fix literal matching for module-bound literals
  557. `syntax-rules' and `syntax-case' macros can take a set of "literals":
  558. bound or unbound keywords that the syntax matcher treats specially.
  559. Before, literals were always matched symbolically (by name). Now they
  560. are matched by binding. This allows literals to be reliably bound to
  561. values, renamed by imports or exports, et cetera. See "Syntax-rules
  562. Macros" in the manual for more on literals.
  563. ** Fix bug importing specific bindings with #:select
  564. It used to be that if #:select didn't find a binding in the public
  565. interface of a module, it would actually grovel in the module's
  566. unexported private bindings. This was not intended and is now fixed.
  567. ** Statically scoped module duplicate handlers
  568. It used to be that if a module did not specify a #:duplicates handler,
  569. when a name was first referenced in that module and multiple imported
  570. modules provide that name, the value of the
  571. `default-duplicate-binding-handlers' parameter would be used to resolve
  572. the duplicate bindings. We have changed so that instead a module
  573. defaults to the set of handlers described in the manual. If the module
  574. specifies #:duplicates, of course we use that. The
  575. `default-duplicate-binding-handlers' parameter now simply accesses the
  576. handlers of the current module, instead of some global value.
  577. ** Fix too-broad capture of dynamic stack by delimited continuations
  578. Guile was using explicit stacks to represent, for example, the chain of
  579. current exception handlers. This means that a delimited continuation
  580. that captured a "catch" expression would capture the whole stack of
  581. exception handlers, not just the exception handler added by the "catch".
  582. This led to strangeness when resuming the continuation in some other
  583. context like other threads; "throw" could see an invalid stack of
  584. exception handlers. This has been fixed by the addition of the new
  585. "fluid-ref*" procedure that can access older values of fluids; in this
  586. way the exception handler stack is now implicit. See "Fluids and
  587. Dynamic States" in the manual, for more on fluid-ref*.
  588. ** `dynamic-wind' doesn't check that guards are thunks
  589. Checking that the dynamic-wind out-guard procedure was actually a thunk
  590. before doing the wind was slow, unreliable, and not strictly needed.
  591. ** All deprecated code removed
  592. All code deprecated in Guile 2.0 has been removed. See older NEWS, and
  593. check that your programs can compile without linker warnings and run
  594. without runtime warnings. See "Deprecation" in the manual.
  595. ** Remove miscellaneous unused interfaces
  596. We have removed accidentally public, undocumented interfaces that we
  597. think are not used, and not useful. This includes `scm_markstream',
  598. `SCM_FLUSH_REGISTER_WINDOWS', `SCM_THREAD_SWITCHING_CODE', `SCM_FENCE',
  599. `scm_call_generic_0', `scm_call_generic_1', `scm_call_generic_2'
  600. `scm_call_generic_3', `scm_apply_generic', and `scm_program_source'.
  601. `scm_async_click' was renamed to `scm_async_tick', and `SCM_ASYNC_TICK'
  602. was made private (use `SCM_TICK' instead).
  603. ** Many internal compiler / VM changes
  604. As the compiler and virtual machine were re-written, there are many
  605. changes in the back-end of Guile to interfaces that were introduced in
  606. Guile 2.0. These changes are only only of interest if you wrote a
  607. language on Guile 2.0 or a tool using Guile 2.0 internals. If this is
  608. the case, drop by the IRC channel to discuss the changes.
  609. ** Defining a SMOB or port type no longer mucks exports of `(oop goops)'
  610. It used to be that defining a SMOB or port type added an export to
  611. GOOPS, for the wrapper class of the smob type. This violated
  612. modularity, though, so we have removed this behavior.
  613. ** Bytecode replaces objcode as a target language
  614. One way in which people may have used details of Guile's runtime in
  615. Guile 2.0 is in compiling code to thunks for later invocation. Instead
  616. of compiling to objcode and then calling `make-program', now the way to
  617. do it is to compile to `bytecode' and then call `load-thunk-from-memory'
  618. from `(system vm loader)'.
  619. ** Weak pairs removed
  620. Weak pairs were not safe to access with `car' and `cdr', and so were
  621. removed.
  622. ** Weak alist vectors removed
  623. Use weak hash tables instead.
  624. ** Weak vectors may no longer be accessed via `vector-ref' et al
  625. Weak vectors may no longer be accessed with the vector interface. This
  626. was a source of bugs in the 2.0 Guile implementation, and a limitation
  627. on using vectors as building blocks for other abstractions. Vectors in
  628. Guile are now a concrete type; for an abstract interface, use the
  629. generic array facility (`array-ref' et al).
  630. ** scm_t_array_implementation removed
  631. This interface was introduced in 2.0 but never documented. It was a
  632. failed attempt to layer the array implementation that actually
  633. introduced too many layers, as it prevented the "vref" and "vset"
  634. members of scm_t_array_handle (called "ref" and "set" in 1.8, not
  635. present in 2.0) from specializing on array backing stores.
  636. Notably, the definition of scm_t_array_handle has now changed, to not
  637. include the (undocumented) "impl" member. We are sorry for any
  638. inconvenience this may cause.
  639. ** `scm_make' is now equivalent to Scheme `make'
  640. It used to be that `scm_make' only implemented a hard-wired object
  641. allocation and initialization protocol. This was because `scm_make' was
  642. used while GOOPS booted its own, more complete `make' implementation in
  643. Scheme. Now that we've re-implemented everything in Scheme, the C
  644. `scm_make' now dispatches directly to Scheme `make', which implements
  645. the full protocol. This change is incompatible in some ways, but on the
  646. whole is good news for GOOPS users.
  647. ** GOOPS slot definitions are now objects
  648. Slot definitions are now instances of a <slot> class, instead of being
  649. specially formatted lists. To most user code, this is transparent, as
  650. the slot definition accessors like `slot-definition-name' continue to
  651. work. However, code that for example uses `car' to get the name of a
  652. slot definition will need to be updated to use the accessors.
  653. ** Class slot changes
  654. Class objects no longer have a `default-slot-definition-class' slot,
  655. which was never used. They also no longer have slots for hashsets
  656. (`h0', `h1', and so on up to `h7'), which have been unused since Guile
  657. 2.0 and were not a great idea.
  658. There is a new class option, `#:static-slot-allocation?'. See the
  659. manual for details.
  660. ** Removal of internal, unintentionally exposed GOOPS C interfaces
  661. These include: `scm_sys_fast_slot_ref', `scm_sys_fast_slot_set_x'
  662. `scm_basic_basic_make_class', `scm_sys_compute_slots',
  663. `scm_sys_prep_layout_x' `scm_t_method', `SCM_METHOD',
  664. `scm_s_slot_set_x', `SCM_CLASS_CLASS_LAYOUT', `scm_si_slotdef_class',
  665. `scm_si_generic_function', `scm_si_specializers', `scm_si_procedure',
  666. `scm_si_formals', `scm_si_body', `scm_si_make_procedure',
  667. `SCM_CLASS_CLASS_LAYOUT', `SCM_INSTANCE_HASH', `SCM_SET_HASHSET', `union
  668. scm_t_debug_info', `scm_pure_generic_p', `SCM_PUREGENERICP',
  669. `SCM_VALIDATE_PUREGENERIC', `SCM_VTABLE_FLAG_GOOPS_PURE_GENERIC',
  670. `SCM_CLASSF_PURE_GENERIC', `scm_c_extend_primitive_generic',
  671. `scm_sys_initialize_object', `SCM_CLASS_CLASS_LAYOUT',
  672. `scm_si_redefined', `scm_si_direct_supers', `scm_si_direct_slots',
  673. `scm_si_direct_subclasses', `scm_si_direct_methods', `scm_si_cpl'
  674. `scm_si_slots', `scm_si_getters_n_setters', `SCM_N_CLASS_SLOTS',
  675. `SCM_OBJ_CLASS_REDEF', `SCM_INST', `SCM_ACCESSORS_OF',
  676. `scm_sys_allocate_instance', and `scm_sys_invalidate_class_x'.
  677. * New deprecations
  678. ** `SCM_FDES_RANDOM_P'
  679. Instead, use `lseek (fd, 0, SEEK_CUR)' directly.
  680. ** `_IONBF', `_IOLBF', and `_IOFBF'
  681. Instead, use the symbol values `none', `line', or `block', respectively,
  682. as arguments to the `setvbuf' function.
  683. ** `SCM_FDES_RANDOM_P'
  684. Instead, use `lseek (fd, 0, SEEK_CUR)' directly.
  685. ** Arbiters
  686. Arbiters were an experimental mutual exclusion facility from 20 years
  687. ago that didn't survive the test of time. Use mutexes or atomic boxes
  688. instead.
  689. ** User asyncs
  690. Guile had (and still has) "system asyncs", which are asynchronous
  691. interrupts, and also had this thing called "user asyncs", which was a
  692. trivial unused data structure. Now that we have deprecated the old
  693. `async', `async-mark', and `run-asyncs' procedures that comprised the
  694. "user async" facility, we have been able to clarify our documentation to
  695. only refer to "asyncs".
  696. ** Critical sections
  697. Critical sections have long been just a fancy way to lock a mutex and
  698. defer asynchronous interrupts. Instead of SCM_CRITICAL_SECTION_START,
  699. make sure you're in a "scm_dynwind_begin (0)" and use
  700. scm_dynwind_pthread_mutex_lock instead, possibly also with
  701. scm_dynwind_block_asyncs.
  702. ** `scm_make_mutex_with_flags'
  703. Use `scm_make_mutex_with_kind' instead. See "Mutexes and Condition
  704. Variables" in the manual, for more.
  705. ** Dynamic roots
  706. This was a facility that predated threads, was unused as far as we can
  707. tell, and was never documented. Still, a grep of your code for
  708. dynamic-root or dynamic_root would not be amiss.
  709. ** `make-dynamic-state'
  710. Use `current-dynamic-state' to get an immutable copy of the current
  711. fluid-value associations.
  712. ** `with-statprof' macro
  713. Use the `statprof' procedure instead.
  714. ** SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1, SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_N
  715. ** SCM_GASSERT0, SCM_GASSERT1, SCM_GASSERT2, SCM_GASSERTn
  716. ** SCM_WTA_DISPATCH_1_SUBR
  717. These macros were used in dispatching primitive generics. They can be
  718. replaced by using C functions (the same name but in lower case), if
  719. needed, but this is a hairy part of Guile that perhaps you shouldn't be
  720. using.
  721. ** scm_compute_applicable_methods and scm_find_method
  722. Use `compute-applicable-methods' from Scheme instead.
  723. ** scm_no_applicable_method
  724. Fetch no-applicable-method from the GOOPS exports if you need it.
  725. ** scm_class_boolean, scm_class_char, scm_class_pair
  726. ** scm_class_procedure, scm_class_string, scm_class_symbol
  727. ** scm_class_primitive_generic, scm_class_vector, scm_class_null
  728. ** scm_class_real, scm_class_complex, scm_class_integer
  729. ** scm_class_fraction, scm_class_unknown, scm_class_top
  730. ** scm_class_object, scm_class_class, scm_class_applicable
  731. ** scm_class_applicable_struct, scm_class_applicable_struct_with_setter
  732. ** scm_class_generic, scm_class_generic_with_setter, scm_class_accessor
  733. ** scm_class_extended_generic, scm_class_extended_generic_with_setter
  734. ** scm_class_extended_accessor, scm_class_method
  735. ** scm_class_accessor_method, scm_class_procedure_class
  736. ** scm_class_applicable_struct_class, scm_class_number, scm_class_list
  737. ** scm_class_keyword, scm_class_port, scm_class_input_output_port
  738. ** scm_class_input_port, scm_class_output_port, scm_class_foreign_slot
  739. ** scm_class_self, scm_class_protected, scm_class_hidden
  740. ** scm_class_opaque, scm_class_read_only, scm_class_protected_hidden
  741. ** scm_class_protected_opaque, scm_class_protected_read_only
  742. ** scm_class_scm, scm_class_int, scm_class_float, scm_class_double
  743. ** scm_port_class, scm_smob_class
  744. These class exports are now deprecated. Instead, look up the ones you
  745. need from the GOOPS module, or use `scm_class_of' on particular values.
  746. ** scm_get_keyword
  747. Instead from Scheme use kw-arg-ref or real keyword arguments, and from C
  748. use `scm_c_bind_keyword_arguments'.
  749. ** scm_slot_ref_using_class, scm_slot_set_using_class_x
  750. ** scm_slot_bound_using_class_p, scm_slot_exists_using_class_p
  751. Instead use the normal `scm_slot_ref' and similar procedures.
  752. * Changes to the distribution
  753. ** Pre-built binary files in the tarball
  754. Building Guile from a tarball can now take advantage of a "prebuilt/"
  755. tree of prebuilt .go files. These compiled files are created when a
  756. tarball is made, and are used to speed up the build for users of
  757. official releases.
  758. These pre-built binaries are not necessary, however: they are not stored
  759. in revision control and can always be re-created from the source, given
  760. that Guile can bootstrap itself from its minimal bootstrap C
  761. interpreter. If you do not want to depend on these pre-built binaries,
  762. you can "make -C prebuilt clean" before building.
  763. ** New minor version
  764. The "effective version" of Guile is now 2.2, which allows parallel
  765. installation with other effective versions (for example, the older Guile
  766. 2.0). See "Parallel Installations" in the manual for full details.
  767. Notably, the `pkg-config' file is now `guile-2.2'.
  768. ** Bump required libgc version to 7.2, released March 2012.
  769. ** GUILE_PROGS searches for versioned Guile
  770. The GUILE_PROGS autoconf macro can take a required version argument. As
  771. a new change, that version argument is additionally searched for as a
  772. suffix. For example, GUILE_PROGS(2.2) would look for guile-2.2,
  773. guile2.2, guile-2, guile2, and then guile. The found prefix is also
  774. applied to guild, guile-config, and the like. Thanks to Freja Nordsiek
  775. for this work.
  776. ** The readline extension is now installed in the extensionsdir
  777. The shared library that implements Guile's readline extension is no
  778. longer installed to the libdir. This change should be transparent to
  779. users, but packagers may be interested.
  780. Changes in 2.0.14 (since 2.0.13):
  781. * Bug fixes
  782. ** Builds of .go files and of Guile itself are now bit-reproducible
  783. (<http://bugs.gnu.org/20272>)
  784. ** 'number->locale-string' and 'monetary-amount->locale-string' fixes
  785. (<http://bugs.gnu.org/24990>)
  786. ** (system base target) now recognizes "sh3" as a cross-compilation target
  787. ** Fix race condition in '00-repl-server.test'
  788. (<http://bugs.gnu.org/24769>)
  789. ** 'scandir' from (ice-9 ftw) no longer calls 'stat' for each entry
  790. ** Several documentation improvements
  791. Changes in 2.0.13 (since 2.0.12):
  792. * Security fixes
  793. ** CVE-2016-8606: REPL server now protects against HTTP inter-protocol
  794. attacks
  795. Guile 2.x provides a "REPL server" started by the '--listen'
  796. command-line option or equivalent API (see "REPL Servers" in the
  797. manual).
  798. The REPL server is vulnerable to the HTTP inter-protocol attack as
  799. described at
  800. <https://en.wikipedia.org/wiki/Inter-protocol_exploitation>, notably the
  801. HTML form protocol attack described at
  802. <https://www.jochentopf.com/hfpa/hfpa.pdf>. A "DNS rebinding attack"
  803. can be combined with this attack and allow an attacker to send arbitrary
  804. Guile code to the REPL server through web pages accessed by the
  805. developer, even though the REPL server is listening to a loopback device
  806. ("localhost"). This was demonstrated in an article entitled "How to
  807. steal any developer's local database" available at
  808. <http://bouk.co/blog/hacking-developers/>.
  809. The REPL server in Guile 2.0.13 now detects attempts to exploit this
  810. vulnerability. It immediately closes the connection when it receives a
  811. line that looks like an HTTP request.
  812. Nevertheless, we recommend binding the REPL server to a Unix-domain
  813. socket, for instance by running:
  814. guile --listen=/tmp/guile-socket
  815. ** CVE-2016-8605: 'mkdir' procedure no longer calls umask(2)
  816. (<http://bugs.gnu.org/24659>)
  817. When the second argument to the 'mkdir' procedure was omitted, it would
  818. call umask(0) followed by umask(previous_umask) and apply the umask to
  819. mode #o777.
  820. This was unnecessary and a security issue for multi-threaded
  821. applications: during a small window the process' umask was set to zero,
  822. so other threads calling mkdir(2) or open(2) could end up creating
  823. world-readable/writable/executable directories or files.
  824. * New interfaces
  825. ** mkstemp! takes optional "mode" argument
  826. See "File System" in the manual, for more.
  827. ** New 'scm_to_uintptr_t' and 'scm_from_uintptr_t' C functions
  828. * Bug fixes
  829. ** Fix optimizer bug when compiling fixpoint operator
  830. ** Fix build error on MinGW
  831. ** Update 'uname' implementation on MinGW
  832. ** 'port-encoding' and 'set-port-encoding!' ensure they are passed an
  833. open port
  834. ** (system base target) now recognizes Alpha as a cross-compilation target
  835. Changes in 2.0.12 (since 2.0.11):
  836. * Notable changes
  837. ** FFI: Add support for functions that set 'errno'
  838. When accessing POSIX functions from a system's libc via Guile's dynamic
  839. FFI, you commonly want to access the 'errno' variable to be able to
  840. produce useful diagnostic messages.
  841. This is now possible using 'pointer->procedure' or
  842. 'scm_pointer_to_procedure_with_errno'. See "Dynamic FFI" in the manual.
  843. ** The #!r6rs directive now influences read syntax
  844. The #!r6rs directive now changes the per-port reader options to make
  845. Guile's reader conform more closely to the R6RS syntax. In particular:
  846. - It makes the reader case sensitive.
  847. - It disables the recognition of keyword syntax in conflict with the
  848. R6RS (and R5RS).
  849. - It enables the `square-brackets', `hungry-eol-escapes' and
  850. `r6rs-hex-escapes' reader options.
  851. ** 'read' now accepts "\(" as equivalent to "("
  852. This is indented for use at the beginning of lines in multi-line strings
  853. to avoid confusing Emacs' lisp modes. Previously "\(" was an error.
  854. ** SRFI-14 character data set upgraded to Unicode 8.0.0
  855. ** SRFI-19 table of leap seconds updated
  856. ** 'string-hash', 'read-string', and 'write' have been optimized
  857. ** GOOPS bug fix for inherited accessor methods
  858. In the port of GOOPS to Guile 2.0, we introduced a bug related to
  859. accessor methods. The bug resulted in GOOPS assuming that a slot S in
  860. an object whose class is C would always be present in instances of all
  861. subclasses C, and allocated to the same struct index. This is not the
  862. case for multiple inheritance. This behavior has been fixed to be as it
  863. was in 1.8.
  864. One aspect of this change may cause confusion among users. Previously
  865. if you defined a class C:
  866. (use-modules (oop goops))
  867. (define-class C ()
  868. (a #:getter get-a))
  869. And now you define a subclass, intending to provide an #:init-value for
  870. the slot A:
  871. (define-class D (A)
  872. (a #:init-value 42))
  873. Really what you have done is define in D a new slot with the same name,
  874. overriding the existing slot. The problem comes in that before fixing
  875. this bug (but not in 1.8), the getter 'get-a' would succeed for
  876. instances of D, even though 'get-a' should only work for the slot 'a'
  877. that is defined on class C, not any other slot that happens to have the
  878. same name and be in a class with C as a superclass.
  879. It would be possible to "merge" the slot definitions on C and D, but
  880. that part of the meta-object protocol (`compute-slots' et al) is not
  881. fully implemented.
  882. Somewhat relatedly, GOOPS also had a fix around #:init-value on
  883. class-allocated slots. GOOPS was re-initializing the value of slots
  884. with #:class or #:each-subclass allocation every time instances of that
  885. class was allocated. This has been fixed.
  886. * New interfaces
  887. ** New SRFI-28 string formatting implementation
  888. See "SRFI-28" in the manual.
  889. ** New (ice-9 unicode) module
  890. See "Characters" in the manual.
  891. ** Web server
  892. The (web server) module now exports 'make-server-impl', 'server-impl?',
  893. and related procedures. Likewise, (web server http) exports 'http'.
  894. ** New procedures: 'string-utf8-length' and 'scm_c_string_utf8_length'
  895. See "Bytevectors as Strings" in the manual, for more.
  896. ** New 'EXIT_SUCCESS' and 'EXIT_FAILURE' Scheme variables
  897. See "Processes" in the manual.
  898. ** New C functions to disable automatic SMOB finalization
  899. The new 'scm_set_automatic_finalization_enabled' C function allows you
  900. to choose whether automatic object finalization should be enabled (as
  901. was the case until now, and still is by default.) This is meant for
  902. applications that are not thread-safe nor async-safe; such applications
  903. can disable automatic finalization and call the new 'scm_run_finalizers'
  904. function when appropriate.
  905. See the "Garbage Collecting Smobs" and "Smobs" sections in the manual.
  906. ** Cross-compilation to ARM
  907. More ARM cross-compilation targets are supported: "arm.*eb",
  908. "^aarch64.*be", and "aarch64".
  909. * New deprecation
  910. ** The undocumented and unused C function 'scm_string_hash' is now deprecated
  911. * Bugs fixed
  912. ** Compiler
  913. *** 'call-with-prompt' does not truncate multiple-value returns
  914. (<http://bugs.gnu.org/14347>)
  915. *** Use permissions of source file for compiled file
  916. (<http://bugs.gnu.org/18477>)
  917. *** Fix bug when inlining some functions with optional arguments
  918. (<http://bugs.gnu.org/17634>)
  919. *** Avoid quadratic expansion time in 'and' and 'or' macros
  920. (<http://bugs.gnu.org/17147>)
  921. *** Fix expander bug introduced when adding support for tail patterns
  922. (<http://lists.gnu.org/archive/html/guile-user/2015-09/msg00017.html>)
  923. *** Handle ~p in 'format' warnings (<http://bugs.gnu.org/18299>)
  924. *** Fix bug that exposed `list' invocations to CSE
  925. (<http://bugs.gnu.org/21899>)
  926. *** Reduce eq? and eqv? over constants using equal?
  927. (<http://bugs.gnu.org/21855>)
  928. *** Skip invalid .go files found in GUILE_LOAD_COMPILED_PATH
  929. ** Threads
  930. *** Fix data races leading to corruption (<http://bugs.gnu.org/22152>)
  931. ** Memory management
  932. *** Fix race between SMOB marking and finalization
  933. (<http://bugs.gnu.org/19883>)
  934. ** Ports
  935. *** Fix port position handling on binary input ports
  936. (<http://bugs.gnu.org/20302>)
  937. *** Bytevector and custom binary ports to use ISO-8859-1
  938. (<http://bugs.gnu.org/20200>)
  939. *** Fix buffer overrun with unbuffered custom binary input ports
  940. (<http://bugs.gnu.org/19621>)
  941. *** Fix memory corruption that arose when using 'get-bytevector-n'
  942. (<http://bugs.gnu.org/17466>)
  943. ** System
  944. *** {get,set}sockopt now expect type 'int' for SO_SNDBUF/SO_RCVBUF
  945. *** 'system*' now available on MS-Windows
  946. *** 'open-pipe' now available on MS-Windows
  947. *** Better support for file names containing backslashes on Windows
  948. ** Web
  949. *** 'split-and-decode-uri-path' no longer decodes "+" to space
  950. *** HTTP: Support date strings with a leading space for hours
  951. (<http://bugs.gnu.org/23421>)
  952. *** HTTP: Accept empty reason phrases (<http://bugs.gnu.org/22273>)
  953. *** HTTP: 'Location' header can now contain URI references, not just
  954. absolute URIs
  955. *** HTTP: Improve chunked-mode support (<http://bugs.gnu.org/19939>)
  956. *** HTTP: 'open-socket-for-uri' now sets better OS buffering parameters
  957. (<http://bugs.gnu.org/15368>)
  958. ** Miscellaneous
  959. *** Fix 'atan' procedure when applied to complex numbers
  960. *** Fix Texinfo to HTML conversion for @itemize and @acronym
  961. (<http://bugs.gnu.org/21772>)
  962. *** 'bytevector-fill!' accepts fill arguments greater than 127
  963. (<http://bugs.gnu.org/19027>)
  964. *** 'bytevector-copy' correctly copies SRFI-4 homogeneous vectors
  965. (<http://bugs.gnu.org/18866>)
  966. *** 'strerror' no longer hangs when passed a non-integer argument
  967. (<http://bugs.gnu.org/18065>)
  968. *** 'scm_boot_guile' now gracefully handles argc == 0
  969. (<http://bugs.gnu.org/18680>)
  970. *** Fix 'SCM_SMOB_OBJECT_LOC' definition (<http://bugs.gnu.org/18495>)
  971. *** Fix bug where 'bit-count*' was not using its second argument
  972. *** SRFI-1 'length+' raises an error for non-lists and dotted lists
  973. (<http://bugs.gnu.org/17296>)
  974. *** Add documentation for SXPath (<http://bugs.gnu.org/19478>)
  975. Changes in 2.0.11 (since 2.0.10):
  976. This release fixes an embarrassing regression introduced in the C
  977. interface to SRFI-4 vectors. See
  978. <https://lists.gnu.org/archive/html/guile-devel/2014-03/msg00047.html>
  979. for details.
  980. Changes in 2.0.10 (since 2.0.9):
  981. * Notable changes
  982. ** New GDB extension to support Guile
  983. Guile now comes with an extension for GDB 7.8 or later (unreleased at
  984. the time of writing) that simplifies debugging of C code that uses
  985. Guile. See "GDB Support" in the manual.
  986. ** Improved integration between R6RS and native Guile exceptions
  987. R6RS exception handlers, established using 'with-exception-handler' or
  988. 'guard', are now able to catch native Guile exceptions, which are
  989. automatically converted into appropriate R6RS condition objects.
  990. ** Support for HTTP proxies
  991. Guile's built-in web client now honors the 'http_proxy' environment
  992. variable, as well as the new 'current-http-proxy' parameter. See
  993. "Web Client" in the manual for details.
  994. ** Lexical syntax improvements
  995. *** Support |...| symbol notation.
  996. Guile's core reader and printer now support the R7RS |...| notation
  997. for writing symbols with arbitrary characters, as a more portable and
  998. attractive alternative to Guile's native #{...}# notation. To enable
  999. this notation by default, put one or both of the following in your
  1000. ~/.guile:
  1001. (read-enable 'r7rs-symbols)
  1002. (print-enable 'r7rs-symbols)
  1003. *** Support '#true' and '#false' notation for booleans.
  1004. The booleans '#t' and '#f' may now be written as '#true' and '#false'
  1005. for improved readability, per R7RS.
  1006. *** Recognize '#\escape' character name.
  1007. The escape character '#\esc' may now be written as '#\escape', per R7RS.
  1008. *** Accept "\|" in string literals.
  1009. The pipe character may now be preceded by a backslash, per R7RS.
  1010. ** Custom binary input ports now support 'setvbuf'.
  1011. Until now, ports returned by 'make-custom-binary-input-port' were always
  1012. full-buffered. Now, their buffering mode can be changed using 'setvbuf'.
  1013. ** SRFI-4 predicates and length accessors no longer accept arrays.
  1014. Given that the SRFI-4 accessors don't work for arrays, the fact that the
  1015. predicates and length accessors returned true for arrays was a bug.
  1016. ** GUILE_PROGS now supports specifying a minimum required version.
  1017. The 'GUILE_PROGS' autoconf macro in guile.m4 now allows an optional
  1018. argument to specify a minimum required Guile version. By default, it
  1019. requires Guile >= 2.0. A micro version can also be specified, e.g.:
  1020. GUILE_PROGS([2.0.10])
  1021. ** Error reporting improvements
  1022. *** Improved run-time error reporting in (ice-9 match).
  1023. If no pattern matches in a 'match' form, the datum that failed to match
  1024. is printed along with the location of the failed 'match' invocation.
  1025. *** Print the faulty object upon invalid-keyword errors.
  1026. *** Improved error reporting of procedures defined by define-inlinable.
  1027. *** Improved error reporting for misplaced ellipses in macro definitions.
  1028. *** Improved error checking in 'define-public' and 'module-add!'.
  1029. *** Improved error when 'include' form with relative path is not in a file.
  1030. ** Speed improvements
  1031. *** 'scm_c_read' on ISO-8859-1 (e.g. binary) unbuffered ports is faster.
  1032. *** New inline asm for VM fixnum multiply, for faster overflow checking.
  1033. *** New inline asm for VM fixnum operations on ARM and 32-bit x86.
  1034. *** 'positive?' and 'negative?' are now compiled to VM primitives.
  1035. *** Numerical comparisons with more than 2 arguments are compiled to VM code.
  1036. *** Several R6RS bitwise operators have been optimized.
  1037. ** Miscellaneous
  1038. *** Web: 'content-disposition' headers are now supported.
  1039. *** Web: 'uri-encode' hexadecimal percent-encoding is now uppercase.
  1040. *** Size argument to 'make-doubly-weak-hash-table' is now optional.
  1041. *** Timeout for 'unlock-mutex' and SRFI-18 'mutex-unlock!' may now be #f.
  1042. ** Gnulib update
  1043. Guile's copy of Gnulib was updated to v0.1-92-g546ff82. The following
  1044. modules were imported from Gnulib: copysign, fsync, isfinite, link,
  1045. lstat, mkdir, mkstemp, readlink, rename, rmdir, and unistd.
  1046. * New interfaces
  1047. ** Cooperative REPL servers
  1048. This new facility supports REPLs that run at specified times within an
  1049. existing thread, for example in programs utilizing an event loop or in
  1050. single-threaded programs. This allows for safe access and mutation of
  1051. a program's data structures from the REPL without concern for thread
  1052. synchronization. See "Cooperative REPL Servers" in the manual for
  1053. details.
  1054. ** SRFI-43 (Vector Library)
  1055. Guile now includes SRFI-43, a comprehensive library of vector operations
  1056. analogous to the SRFI-1 list library. See "SRFI-43" in the manual for
  1057. details.
  1058. ** SRFI-64 (A Scheme API for test suites)
  1059. Guile now includes SRFI-64, a flexible framework for creating test
  1060. suites. The reference implementation of SRFI-64 has also been updated
  1061. to fully support earlier versions of Guile.
  1062. ** SRFI-111 (Boxes)
  1063. See "SRFI-111" in the manual.
  1064. ** 'define-values'
  1065. See "Binding multiple return values" in the manual.
  1066. ** Custom ellipsis identifiers using 'with-ellipsis' or SRFI-46.
  1067. Guile now allows macro definitions to use identifiers other than '...'
  1068. as the ellipsis. This is convenient when writing macros that generate
  1069. macro definitions. The desired ellipsis identifier can be given as the
  1070. first operand to 'syntax-rules', as specified in SRFI-46 and R7RS, or by
  1071. using the new 'with-ellipsis' special form in procedural macros. With
  1072. this addition, Guile now fully supports SRFI-46.
  1073. See "Specifying a Custom Ellipsis Identifier" and "Custom Ellipsis
  1074. Identifiers for syntax-case Macros" in the manual for details.
  1075. ** R7RS 'syntax-error'
  1076. Guile now supports 'syntax-error', as specified by R7RS, allowing for
  1077. improved compile-time error reporting from 'syntax-rules' macros. See
  1078. "Reporting Syntax Errors in Macros" in the manual for details.
  1079. ** New procedures to convert association lists into hash tables
  1080. Guile now includes the convenience procedures 'alist->hash-table',
  1081. 'alist->hashq-table', 'alist->hashv-table', and 'alist->hashx-table'.
  1082. See "Hash Table Reference" in the manual.
  1083. ** New predicates: 'exact-integer?' and 'scm_is_exact_integer'
  1084. See "Integers" in the manual.
  1085. ** 'weak-vector-length', 'weak-vector-ref', and 'weak-vector-set!'
  1086. These should now be used to access weak vectors, instead of
  1087. 'vector-length', 'vector-ref', and 'vector-set!'.
  1088. * Manual updates
  1089. ** Improve docs for 'eval-when'.
  1090. Each 'eval-when' condition is now explained in detail, including
  1091. 'expand' which was previously undocumented. (expand load eval) is now
  1092. the recommended set of conditions, instead of (compile load eval).
  1093. See "Eval When" in the manual, for details.
  1094. ** Update the section on SMOBs and memory management.
  1095. See "Defining New Types (Smobs)" in the manual.
  1096. ** Fixes
  1097. *** GOOPS: #:dsupers is the init keyword for the dsupers slot.
  1098. *** 'unfold-right' takes a tail, not a tail generator.
  1099. *** Clarify that 'append!' and 'reverse!' might not mutate.
  1100. *** Fix doc that incorrectly claimed (integer? +inf.0) => #t.
  1101. (http://bugs.gnu.org/16356)
  1102. *** Document that we support SRFI-62 (S-expression comments).
  1103. *** Document that we support SRFI-87 (=> in case clauses).
  1104. *** Document 'equal?' in the list of R6RS incompatibilities.
  1105. *** Remove outdated documentation of LTDL_LIBRARY_PATH.
  1106. *** Fix 'weak-vector?' doc: Weak hash tables are not weak vectors.
  1107. *** Fix 'my-or' examples to use let-bound variable.
  1108. (http://bugs.gnu.org/14203)
  1109. * New deprecations
  1110. ** General 'uniform-vector' interface
  1111. This interface lacked both generality and specificity. The general
  1112. replacements are 'array-length', 'array-ref', and friends on the scheme
  1113. side, and the array handle interface on the C side. On the specific
  1114. side of things, there are the specific bytevector, SRFI-4, and bitvector
  1115. interfaces.
  1116. ** Use of the vector interface on arrays
  1117. ** 'vector-length', 'vector-ref', and 'vector-set!' on weak vectors
  1118. ** 'vector-length', 'vector-ref', and 'vector-set!' as primitive-generics
  1119. Making the vector interface operate only on a single representation will
  1120. allow future versions of Guile to compile loops involving vectors to
  1121. more efficient native code.
  1122. ** 'htons', 'htonl', 'ntohs', 'ntohl'
  1123. These procedures, like their C counterpart, were used to convert numbers
  1124. to/from network byte order, typically in conjunction with the
  1125. now-deprecated uniform vector API.
  1126. This functionality is now covered by the bytevector and binary I/O APIs.
  1127. See "Interpreting Bytevector Contents as Integers" in the manual.
  1128. ** 'gc-live-object-stats'
  1129. It hasn't worked in the whole 2.0 series. There is no replacement,
  1130. unfortunately.
  1131. ** 'scm_c_program_source'
  1132. This internal VM function was not meant to be public. Use
  1133. 'scm_procedure_source' instead.
  1134. * Build fixes
  1135. ** Fix build with Clang 3.4.
  1136. ** MinGW build fixes
  1137. *** Do not add $(EXEEXT) to guild or guile-tools.
  1138. *** tests: Use double quotes around shell arguments, for Windows.
  1139. *** tests: Don't rely on $TMPDIR and /tmp on Windows.
  1140. *** tests: Skip FFI tests that use `qsort' when it's not accessible.
  1141. *** tests: Remove symlink only when it exists.
  1142. *** tests: Don't rely on `scm_call_2' being visible.
  1143. ** Fix computation of LIBLOBJS so dependencies work properly.
  1144. (http://bugs.gnu.org/14193)
  1145. * Bug fixes
  1146. ** Web: Fix web client with methods other than GET.
  1147. (http://bugs.gnu.org/15908)
  1148. ** Web: Add Content-Length header for empty bodies.
  1149. ** Web: Accept "UTC" as the zone offset in date headers.
  1150. (http://bugs.gnu.org/14128)
  1151. ** Web: Don't throw if a response is longer than its Content-Length says.
  1152. ** Web: Write out HTTP Basic auth headers correctly.
  1153. (http://bugs.gnu.org/14370)
  1154. ** Web: Always print a path component in 'write-request-line'.
  1155. ** Fix 'define-public' from (ice-9 curried-definitions).
  1156. ** psyntax: toplevel variable definitions discard previous syntactic binding.
  1157. (http://bugs.gnu.org/11988)
  1158. ** Fix thread-unsafe lazy initializations.
  1159. ** Make (ice-9 popen) thread-safe.
  1160. (http://bugs.gnu.org/15683)
  1161. ** Make guardians thread-safe.
  1162. ** Make regexp_exec thread-safe.
  1163. (http://bugs.gnu.org/14404)
  1164. ** vm: Gracefully handle stack overflows.
  1165. (http://bugs.gnu.org/15065)
  1166. ** Fix 'rationalize'.
  1167. (http://bugs.gnu.org/14905)
  1168. ** Fix inline asm for VM fixnum operations on x32.
  1169. ** Fix 'SCM_SYSCALL' to really swallow EINTR.
  1170. ** Hide EINTR returns from 'accept'.
  1171. ** SRFI-19: Update the table of leap seconds.
  1172. ** Add missing files to the test-suite Makefile.
  1173. ** Make sure 'ftw' allows directory traversal when running as root.
  1174. ** Fix 'hash-for-each' for weak hash tables.
  1175. ** SRFI-18: Export 'current-thread'.
  1176. (http://bugs.gnu.org/16890)
  1177. ** Fix inlining of tail list to apply.
  1178. (http://bugs.gnu.org/15533)
  1179. ** Fix bug in remqueue in threads.c when removing last element.
  1180. ** Fix build when '>>' on negative integers is not arithmetic.
  1181. ** Fix 'bitwise-bit-count' for negative arguments.
  1182. (http://bugs.gnu.org/14864)
  1183. ** Fix VM 'ash' for right shifts by large amounts.
  1184. (http://bugs.gnu.org/14864)
  1185. ** Fix rounding in scm_i_divide2double for negative arguments.
  1186. ** Avoid lossy conversion from inum to double in numerical comparisons.
  1187. ** Fix numerical comparison of fractions to infinities.
  1188. ** Allow fl+ and fl* to accept zero arguments.
  1189. (http://bugs.gnu.org/14869)
  1190. ** flonum? returns false for complex number objects.
  1191. (http://bugs.gnu.org/14866)
  1192. ** flfinite? applied to a NaN returns false.
  1193. (http://bugs.gnu.org/14868)
  1194. ** Flonum operations always return flonums.
  1195. (http://bugs.gnu.org/14871)
  1196. ** min and max: NaNs beat infinities, per R6RS errata.
  1197. (http://bugs.gnu.org/14865)
  1198. ** Fix 'fxbit-count' for negative arguments.
  1199. ** 'gcd' and 'lcm' support inexact integer arguments.
  1200. (http://bugs.gnu.org/14870)
  1201. ** Fix R6RS 'fixnum-width'.
  1202. (http://bugs.gnu.org/14879)
  1203. ** tests: Use shell constructs that /bin/sh on Solaris 10 can understand.
  1204. (http://bugs.gnu.org/14042)
  1205. ** Fix display of symbols containing backslashes.
  1206. (http://bugs.gnu.org/15033)
  1207. ** Fix truncated-print for uniform vectors.
  1208. ** Define `AF_UNIX' only when Unix-domain sockets are supported.
  1209. ** Decompiler: fix handling of empty 'case-lambda' expressions.
  1210. ** Fix handling of signed zeroes and infinities in 'numerator' and 'denominator'.
  1211. ** dereference-pointer: check for null pointer.
  1212. ** Optimizer: Numerical comparisons are not negatable, for correct NaN handling.
  1213. ** Compiler: Evaluate '-' and '/' in left-to-right order.
  1214. (for more robust floating-point arithmetic)
  1215. ** snarf.h: Declare static const function name vars as SCM_UNUSED.
  1216. ** chars.c: Remove duplicate 'const' specifiers.
  1217. ** Modify SCM_UNPACK type check to avoid warnings in clang.
  1218. ** Arrange so that 'file-encoding' does not truncate the encoding name.
  1219. (http://bugs.gnu.org/16463)
  1220. ** Improve error checking in bytevector->uint-list and bytevector->sint-list.
  1221. (http://bugs.gnu.org/15100)
  1222. ** Fix (ash -1 SCM_I_FIXNUM_BIT-1) to return a fixnum instead of a bignum.
  1223. ** i18n: Fix null pointer dereference when locale info is missing.
  1224. ** Fix 'string-copy!' to work properly with overlapping src/dest.
  1225. ** Fix hashing of vectors to run in bounded time.
  1226. ** 'port-position' works on CBIPs that do not support 'set-port-position!'.
  1227. ** Custom binary input ports sanity-check the return value of 'read!'.
  1228. ** bdw-gc.h: Check SCM_USE_PTHREAD_THREADS using #if not #ifdef.
  1229. ** REPL Server: Don't establish a SIGINT handler.
  1230. ** REPL Server: Redirect warnings to client socket.
  1231. ** REPL Server: Improve robustness of 'stop-server-and-clients!'.
  1232. ** Add srfi-16, srfi-30, srfi-46, srfi-62, srfi-87 to %cond-expand-features.
  1233. ** Fix trap handlers to handle applicable structs.
  1234. (http://bugs.gnu.org/15691)
  1235. ** Fix optional end argument in `uniform-vector-read!'.
  1236. (http://bugs.gnu.org/15370)
  1237. ** Fix brainfuck->scheme compiler.
  1238. ** texinfo: Fix newline preservation in @example with lines beginning with @
  1239. ** C standards conformance improvements
  1240. Improvements and bug fixes were made to the C part of Guile's run-time
  1241. support (libguile).
  1242. *** Don't use the identifier 'noreturn'.
  1243. (http://bugs.gnu.org/15798)
  1244. *** Rewrite SCM_I_INUM to avoid unspecified behavior when not using GNU C.
  1245. *** Improve fallback implemention of SCM_SRS to avoid unspecified behavior.
  1246. *** SRFI-60: Reimplement 'rotate-bit-field' on inums to be more portable.
  1247. *** Improve compliance with C standards regarding signed integer shifts.
  1248. *** Avoid signed overflow in random.c.
  1249. *** VM: Avoid signed overflows in 'add1' and 'sub1'.
  1250. *** VM: Avoid overflow in ASM_ADD when the result is most-positive-fixnum.
  1251. *** read: Avoid signed integer overflow in 'read_decimal_integer'.
  1252. Changes in 2.0.9 (since 2.0.7):
  1253. Note: 2.0.8 was a brown paper bag release that was never announced, but
  1254. some mirrors may have picked it up. Please do not use it.
  1255. * Notable changes
  1256. ** New keyword arguments for procedures that open files
  1257. The following procedures that open files now support keyword arguments
  1258. to request binary I/O or to specify the character encoding for text
  1259. files: `open-file', `open-input-file', `open-output-file',
  1260. `call-with-input-file', `call-with-output-file', `with-input-from-file',
  1261. `with-output-to-file', and `with-error-to-file'.
  1262. It is also now possible to specify whether Guile should scan files for
  1263. Emacs-style coding declarations. This scan was done by default in
  1264. versions 2.0.0 through 2.0.7, but now must be explicitly requested.
  1265. See "File Ports" in the manual for details.
  1266. ** Rewritten guile.m4
  1267. The `guile.m4' autoconf macros have been rewritten to use `guild' and
  1268. `pkg-config' instead of the deprecated `guile-config' (which itself
  1269. calls pkg-config).
  1270. There is also a new macro, `GUILE_PKG', which allows packages to select
  1271. the version of Guile that they want to compile against. See "Autoconf
  1272. Macros" in the manual, for more information.
  1273. ** Better Windows support
  1274. Guile now correctly identifies absolute paths on Windows (MinGW), and
  1275. creates files on that platform according to its path conventions. See
  1276. "File System" in the manual, for all details.
  1277. In addition, the new Gnulib imports provide `select' and `poll' on
  1278. Windows builds.
  1279. As an incompatible change, systems that are missing <sys/select.h> were
  1280. previously provided a public `scm_std_select' C function that defined a
  1281. version of `select', but unhappily it also provided its own incompatible
  1282. definitions for FD_SET, FD_ZERO, and other system interfaces. Guile
  1283. should not be setting these macros in public API, so this interface was
  1284. removed on those plaforms (basically only MinGW).
  1285. ** Numerics improvements
  1286. `number->string' now reliably outputs enough digits to produce the same
  1287. number when read back in. Previously, it mishandled subnormal numbers
  1288. (printing them as "#.#"), and failed to distinguish between some
  1289. distinct inexact numbers, e.g. 1.0 and (+ 1.0 (expt 2.0 -52)). These
  1290. problems had far-reaching implications, since the compiler uses
  1291. `number->string' to serialize numeric constants into .go files.
  1292. `sqrt' now produces exact rational results when possible, and handles
  1293. very large or very small numbers more robustly.
  1294. A number (ahem) of operations involving exact rationals have been
  1295. optimized, most notably `integer-expt' and `expt'.
  1296. `exact->inexact' now performs correct IEEE rounding.
  1297. ** New optimizations
  1298. There were a number of improvements to the partial evaluator, allowing
  1299. complete reduction of forms such as:
  1300. ((let ((_ 10)) (lambda () _)))
  1301. ((lambda _ _))
  1302. (apply (lambda _ _) 1 2 3 '(4))
  1303. (call-with-values (lambda () (values 1 2)) (lambda _ _))
  1304. `string-join' now handles huge lists efficiently.
  1305. `get-bytevector-some' now uses buffered input, which is much faster.
  1306. Finally, `array-ref', `array-set!' on arrays of rank 1 or 2 is now
  1307. faster, because it avoids building a rest list. Similarly, the
  1308. one-argument case of `array-for-each' and `array-map!' has been
  1309. optimized, and `array-copy!' and `array-fill!' are faster.
  1310. ** `peek-char' no longer consumes EOF
  1311. As required by the R5RS, if `peek-char' returns EOF, then the next read
  1312. will also return EOF. Previously `peek-char' would consume the EOF.
  1313. This makes a difference for terminal devices where it is possible to
  1314. read past an EOF.
  1315. ** Gnulib update
  1316. Guile's copy of Gnulib was updated to v0.0-7865-ga828bb2. The following
  1317. modules were imported from Gnulib: select, times, pipe-posix, fstat,
  1318. getlogin, poll, and c-strcase.
  1319. ** `include' resolves relative file names relative to including file
  1320. Given a relative file name, `include' will look for it relative to the
  1321. directory of the including file. This harmonizes the behavior of
  1322. `include' with that of `load'.
  1323. ** SLIB compatibility restored
  1324. Guile 2.0.8 is now compatible with SLIB. You will have to use a
  1325. development version of SLIB, however, until a new version of SLIB is
  1326. released.
  1327. ** Better ,trace REPL command
  1328. Sometimes the ,trace output for nested function calls could overflow the
  1329. terminal width, which wasn't useful. Now there is a limit to the amount
  1330. of space the prefix will take. See the documentation for ",trace" for
  1331. more information.
  1332. ** Better docstring syntax supported for `case-lambda'
  1333. Docstrings can now be placed immediately after the `case-lambda' or
  1334. `case-lambda*' keyword. See "Case-lambda" in the manual.
  1335. ** Improved handling of Unicode byte order marks
  1336. See "BOM Handling" in the manual for details.
  1337. ** Update predefined character sets to Unicode 6.2
  1338. ** GMP 4.2 or later required
  1339. Guile used to require GMP at least version 4.1 (released in May 2002),
  1340. and now requires at least version 4.2 (released in March 2006).
  1341. * Manual updates
  1342. ** Better SXML documentation
  1343. The documentation for SXML modules was much improved, though there is
  1344. still far to go. See "SXML" in manual.
  1345. ** Style updates
  1346. Use of "iff" was replaced with standard English. Keyword arguments are
  1347. now documented consistently, along with their default values.
  1348. ** An end to the generated-documentation experiment
  1349. When Guile 2.0 imported some modules from Guile-Lib, they came with a
  1350. system that generated documentation from docstrings and module
  1351. commentaries. This produced terrible documentation. We finally bit the
  1352. bullet and incorporated these modules into the main text, and will be
  1353. improving them manually over time, as is the case with SXML. Help is
  1354. appreciated.
  1355. ** New documentation
  1356. There is now documentation for `scm_array_type', and `scm_array_ref', as
  1357. well as for the new `array-length' / 'scm_c_array_length' /
  1358. `scm_array_length' functions. `array-in-bounds?' has better
  1359. documentation as well. The `program-arguments-alist' and
  1360. `program-lambda-list' functions are now documented, as well as `and=>',
  1361. `exit', and `quit'. The (system repl server) module is now documented
  1362. (see REPL Servers). Finally, the GOOPS class hierarchy diagram has been
  1363. regenerated for the web and print output formats.
  1364. * New deprecations
  1365. ** Deprecate generalized vector interface
  1366. The generalized vector interface, introduced in 1.8.0, is simply a
  1367. redundant, verbose interface to arrays of rank 1. `array-ref' and
  1368. similar functions are entirely sufficient. Thus,
  1369. `scm_generalized_vector_p', `scm_generalized_vector_length',
  1370. `scm_generalized_vector_ref', `scm_generalized_vector_set_x', and
  1371. `scm_generalized_vector_to_list' are now deprecated.
  1372. ** Deprecate SCM_CHAR_CODE_LIMIT and char-code-limit
  1373. These constants were defined to 256, which is not the highest codepoint
  1374. supported by Guile. Given that they were useless and incorrect, they
  1375. have been deprecated.
  1376. ** Deprecate `http-get*'
  1377. The new `#:streaming?' argument to `http-get' subsumes the functionality
  1378. of `http-get*' (introduced in 2.0.7). Also, the `#:extra-headers'
  1379. argument is deprecated in favor of `#:headers'.
  1380. ** Deprecate (ice-9 mapping)
  1381. This module, present in Guile since 1996 but never used or documented,
  1382. has never worked in Guile 2.0. It has now been deprecated and will be
  1383. removed in Guile 2.2.
  1384. ** Deprecate undocumented array-related C functions
  1385. These are `scm_array_fill_int', `scm_ra_eqp', `scm_ra_lessp',
  1386. `scm_ra_leqp', `scm_ra_grp', `scm_ra_greqp', `scm_ra_sum',
  1387. `scm_ra_product', `scm_ra_difference', `scm_ra_divide', and
  1388. `scm_array_identity'.
  1389. * New interfaces
  1390. ** SRFI-41 Streams
  1391. See "SRFI-41" in the manual.
  1392. ** SRFI-45 exports `promise?'
  1393. SRFI-45 now exports a `promise?' procedure that works with its promises.
  1394. Also, its promises now print more nicely.
  1395. ** New HTTP client procedures
  1396. See "Web Client" for documentation on the new `http-head', `http-post',
  1397. `http-put', `http-delete', `http-trace', and `http-options' procedures,
  1398. and also for more options to `http-get'.
  1399. ** Much more capable `xml->sxml'
  1400. See "Reading and Writing XML" for information on how the `xml->sxml'
  1401. parser deals with namespaces, processed entities, doctypes, and literal
  1402. strings. Incidentally, `current-ssax-error-port' is now a parameter
  1403. object.
  1404. ** New procedures for converting strings to and from bytevectors
  1405. See "Representing Strings as Bytes" for documention on the new `(ice-9
  1406. iconv)' module and its `bytevector->string' and `string->bytevector'
  1407. procedures.
  1408. ** Escape continuations with `call/ec' and `let/ec'
  1409. See "Prompt Primitives".
  1410. ** New procedures to read all characters from a port
  1411. See "Line/Delimited" in the manual for documentation on `read-string'
  1412. and `read-string!'.
  1413. ** New procedure `sendfile'
  1414. See "File System".
  1415. ** New procedure `unget-bytevector'
  1416. See "R6RS Binary Input".
  1417. ** New C helper: `scm_c_bind_keyword_arguments'
  1418. See "Keyword Procedures".
  1419. ** New command-line arguments: `--language' and `-C'
  1420. See "Command-line Options" in the manual.
  1421. ** New environment variables: `GUILE_STACK_SIZE', `GUILE_INSTALL_LOCALE'
  1422. See "Environment Variables".
  1423. ** New procedures for dealing with file names
  1424. See "File System" for documentation on `system-file-name-convention',
  1425. `file-name-separator?', `absolute-file-name?', and
  1426. `file-name-separator-string'.
  1427. ** `array-length', an array's first dimension
  1428. See "Array Procedures".
  1429. ** `hash-count', for hash tables
  1430. See "Hash Tables".
  1431. ** `round-ash', a bit-shifting operator that rounds on right-shift
  1432. See "Bitwise Operations".
  1433. ** New foreign types: `ssize_t', `ptrdiff_t'
  1434. See "Foreign Types".
  1435. ** New C helpers: `scm_from_ptrdiff_t', `scm_to_ptrdiff_t'
  1436. See "Integers".
  1437. ** Socket option `SO_REUSEPORT' now available from Scheme
  1438. If supported on the platform, `SO_REUSEPORT' is now available from
  1439. Scheme as well. See "Network Sockets and Communication".
  1440. ** `current-language' in default environment
  1441. Previously defined only in `(system base language)', `current-language'
  1442. is now defined in the default environment, and is used to determine the
  1443. language for the REPL, and for `compile-and-load'.
  1444. ** New procedure: `fluid->parameter'
  1445. See "Parameters", for information on how to convert a fluid to a
  1446. parameter.
  1447. ** New `print' REPL option
  1448. See "REPL Commands" in the manual for information on the new
  1449. user-customizable REPL printer.
  1450. ** New variable: %site-ccache-dir
  1451. The "Installing Site Packages" and "Build Config" manual sections now
  1452. refer to this variable to describe where users should install their
  1453. `.go' files.
  1454. * Build fixes
  1455. ** Fix compilation against libgc 7.3.
  1456. ** Fix cross-compilation of `c-tokenize.o'.
  1457. ** Fix warning when compiling against glibc 2.17.
  1458. ** Fix documentation build against Texinfo 5.0.
  1459. ** Fix building Guile from a directory with non-ASCII characters.
  1460. ** Fix native MinGW build.
  1461. ** Fix --disable-posix build.
  1462. ** Fix MinGW builds with networking, POSIX, and thread support.
  1463. * Bug fixes
  1464. ** Fix inexact number printer.
  1465. (http://bugs.gnu.org/13757)
  1466. ** Fix infinite loop when parsing optional-argument short options (SRFI-37).
  1467. (http://bugs.gnu.org/13176)
  1468. ** web: Support non-GMT date headers in the HTTP client.
  1469. (http://bugs.gnu.org/13544)
  1470. ** web: support IP-literal (IPv6 address) in Host header.
  1471. ** Avoid stack overflows with `par-map' and nested futures in general.
  1472. (http://bugs.gnu.org/13188)
  1473. ** Peek-char no longer consumes EOF.
  1474. (http://bugs.gnu.org/12216)
  1475. ** Avoid swallowing multiple EOFs in R6RS binary-input procedures.
  1476. ** A fork when multiple threads are running will now print a warning.
  1477. ** Allow for spurious wakeups from pthread_cond_wait.
  1478. (http://bugs.gnu.org/10641)
  1479. ** Warn and ignore module autoload failures.
  1480. (http://bugs.gnu.org/12202)
  1481. ** Use chmod portably in (system base compile).
  1482. (http://bugs.gnu.org/10474)
  1483. ** Fix response-body-port for HTTP responses without content-length.
  1484. (http://bugs.gnu.org/13857)
  1485. ** Allow case-lambda expressions with no clauses.
  1486. (http://bugs.gnu.org/9776)
  1487. ** Improve standards conformance of string->number.
  1488. (http://bugs.gnu.org/11887)
  1489. ** Support calls and tail-calls with more than 255 formals.
  1490. ** ,option evaluates its right-hand-side.
  1491. (http://bugs.gnu.org/13076)
  1492. ** Structs with tail arrays are not simple.
  1493. (http://bugs.gnu.org/12808)
  1494. ** Make `SCM_LONG_BIT' usable in preprocessor conditionals.
  1495. (http://bugs.gnu.org/13848)
  1496. ** Fix thread-unsafe lazy initializations.
  1497. ** Allow SMOB mark procedures to be called from parallel markers.
  1498. (http://bugs.gnu.org/13611)
  1499. ** Fix later-bindings-win logic in with-fluids.
  1500. (http://bugs.gnu.org/13843)
  1501. ** Fix duplicate removal of with-fluids.
  1502. (http://bugs.gnu.org/13838)
  1503. ** Support calling foreign functions of 10 arguments or more.
  1504. (http://bugs.gnu.org/13809)
  1505. ** Let reverse! accept arbitrary types as second argument.
  1506. (http://bugs.gnu.org/13835)
  1507. ** Recognize the `x86_64.*-gnux32' triplet.
  1508. ** Check whether a triplet's OS part specifies an ABI.
  1509. ** Recognize mips64* as having 32-bit pointers by default.
  1510. ** Use portable sed constructs.
  1511. (http://bugs.gnu.org/14042)
  1512. ** Remove language/glil/decompile-assembly.scm.
  1513. (http://bugs.gnu.org/10622)
  1514. ** Use O_BINARY in `copy-file', `load-objcode', `mkstemp'.
  1515. ** Use byte-oriented functions in `get-bytevector*'.
  1516. ** Fix abort when iconv swallows BOM from UTF-16 or UTF-32 stream.
  1517. ** Fix compilation of functions with more than 255 local variables.
  1518. ** Fix `getgroups' for when zero supplementary group IDs exist.
  1519. ** Allow (define-macro name (lambda ...)).
  1520. ** Various fixes to the (texinfo) modules.
  1521. ** guild: Gracefully handle failures to install the locale.
  1522. ** Fix format string warnings for ~!, ~|, ~/, ~q, ~Q, and ~^.
  1523. (http://bugs.gnu.org/13485)
  1524. ** Fix source annotation bug in psyntax 'expand-body'.
  1525. ** Ecmascript: Fix conversion to boolean for non-numbers.
  1526. ** Use case-insensitive comparisons for encoding names.
  1527. ** Add missing cond-expand feature identifiers.
  1528. ** A failure to find a module's file does not prevent future loading.
  1529. ** Many (oop goops save) fixes.
  1530. ** `http-get': don't shutdown write end of socket.
  1531. (http://bugs.gnu.org/13095)
  1532. ** Avoid signed integer overflow in scm_product.
  1533. ** http: read-response-body always returns bytevector or #f, never EOF.
  1534. ** web: Correctly detect "No route to host" conditions.
  1535. ** `system*': failure to execvp no longer leaks dangling processes.
  1536. (http://bugs.gnu.org/13166)
  1537. ** More sensible case-lambda* dispatch.
  1538. (http://bugs.gnu.org/12929)
  1539. ** Do not defer expansion of internal define-syntax forms.
  1540. (http://bugs.gnu.org/13509)
  1541. Changes in 2.0.7 (since 2.0.6):
  1542. * Notable changes
  1543. ** SRFI-105 curly infix expressions are supported
  1544. Curly infix expressions as described at
  1545. http://srfi.schemers.org/srfi-105/srfi-105.html are now supported by
  1546. Guile's reader. This allows users to write things like {a * {b + c}}
  1547. instead of (* a (+ b c)). SRFI-105 support is enabled by using the
  1548. `#!curly-infix' directive in source code, or the `curly-infix' reader
  1549. option. See the manual for details.
  1550. ** Reader options may now be per-port
  1551. Historically, `read-options' and related procedures would manipulate
  1552. global options, affecting the `read' procedure for all threads, and all
  1553. current uses of `read'.
  1554. Guile can now associate `read' options with specific ports, allowing
  1555. different ports to use different options. For instance, the
  1556. `#!fold-case' and `#!no-fold-case' reader directives have been
  1557. implemented, and their effect is to modify the current read options of
  1558. the current port only; similarly for `#!curly-infix'. Thus, it is
  1559. possible, for instance, to have one port reading case-sensitive code,
  1560. while another port reads case-insensitive code.
  1561. ** Futures may now be nested
  1562. Futures may now be nested: a future can itself spawn and then `touch'
  1563. other futures. In addition, any thread that touches a future that has
  1564. not completed now processes other futures while waiting for the touched
  1565. future to completed. This allows all threads to be kept busy, and was
  1566. made possible by the use of delimited continuations (see the manual for
  1567. details.)
  1568. Consequently, `par-map' and `par-for-each' have been rewritten and can
  1569. now use all cores.
  1570. ** `GUILE_LOAD_PATH' et al can now add directories to the end of the path
  1571. `GUILE_LOAD_PATH' and `GUILE_LOAD_COMPILED_PATH' can now be used to add
  1572. directories to both ends of the load path. If the special path
  1573. component `...' (ellipsis) is present in these environment variables,
  1574. then the default path is put in place of the ellipsis, otherwise the
  1575. default path is placed at the end. See "Environment Variables" in the
  1576. manual for details.
  1577. ** `load-in-vicinity' search for `.go' files in `%load-compiled-path'
  1578. Previously, `load-in-vicinity' would look for compiled files in the
  1579. auto-compilation cache, but not in `%load-compiled-path'. This is now
  1580. fixed. This affects `load', and the `-l' command-line flag. See
  1581. <http://bugs.gnu.org/12519> for details.
  1582. ** Extension search order fixed, and LD_LIBRARY_PATH preserved
  1583. Up to 2.0.6, Guile would modify the `LD_LIBRARY_PATH' environment
  1584. variable (or whichever is relevant for the host OS) to insert its own
  1585. default extension directories in the search path (using GNU libltdl
  1586. facilities was not possible here.) This approach was problematic in two
  1587. ways.
  1588. First, the `LD_LIBRARY_PATH' modification would be visible to
  1589. sub-processes, and would also affect future calls to `dlopen', which
  1590. could lead to subtle bugs in the application or sub-processes. Second,
  1591. when the installation prefix is /usr, the `LD_LIBRARY_PATH' modification
  1592. would typically end up inserting /usr/lib before /usr/local/lib in the
  1593. search path, which is often the opposite of system-wide settings such as
  1594. `ld.so.conf'.
  1595. Both issues have now been fixed.
  1596. ** `make-vtable-vtable' is now deprecated
  1597. Programs should instead use `make-vtable' and `<standard-vtable>'.
  1598. ** The `-Wduplicate-case-datum' and `-Wbad-case-datum' are enabled
  1599. These recently introduced warnings have been documented and are now
  1600. enabled by default when auto-compiling.
  1601. ** Optimize calls to `equal?' or `eqv?' with a constant argument
  1602. The compiler simplifies calls to `equal?' or `eqv?' with a constant
  1603. argument to use `eq?' instead, when applicable.
  1604. * Manual updates
  1605. ** SRFI-9 records now documented under "Compound Data Types"
  1606. The documentation of SRFI-9 record types has been moved in the "Compound
  1607. Data Types", next to Guile's other record APIs. A new section
  1608. introduces the various record APIs, and describes the trade-offs they
  1609. make. These changes were made in an attempt to better guide users
  1610. through the maze of records API, and to recommend SRFI-9 as the main
  1611. API.
  1612. The documentation of Guile's raw `struct' API has also been improved.
  1613. ** (ice-9 and-let-star) and (ice-9 curried-definitions) now documented
  1614. These modules were missing from the manual.
  1615. * New interfaces
  1616. ** New "functional record setters" as a GNU extension of SRFI-9
  1617. The (srfi srfi-9 gnu) module now provides three new macros to deal with
  1618. "updates" of immutable records: `define-immutable-record-type',
  1619. `set-field', and `set-fields'.
  1620. The first one allows record type "functional setters" to be defined;
  1621. such setters keep the record unchanged, and instead return a new record
  1622. with only one different field. The remaining macros provide the same
  1623. functionality, and also optimize updates of multiple or nested fields.
  1624. See the manual for details.
  1625. ** web: New `http-get*', `response-body-port', and `text-content-type?'
  1626. procedures
  1627. These procedures return a port from which to read the response's body.
  1628. Unlike `http-get' and `read-response-body', they allow the body to be
  1629. processed incrementally instead of being stored entirely in memory.
  1630. The `text-content-type?' predicate allows users to determine whether the
  1631. content type of a response is textual.
  1632. See the manual for details.
  1633. ** `string-split' accepts character sets and predicates
  1634. The `string-split' procedure can now be given a SRFI-14 character set or
  1635. a predicate, instead of just a character.
  1636. ** R6RS SRFI support
  1637. Previously, in R6RS modules, Guile incorrectly ignored components of
  1638. SRFI module names after the SRFI number, making it impossible to specify
  1639. sub-libraries. This release corrects this, bringing us into accordance
  1640. with SRFI 97.
  1641. ** `define-public' is no a longer curried definition by default
  1642. The (ice-9 curried-definitions) should be used for such uses. See the
  1643. manual for details.
  1644. * Build fixes
  1645. ** Remove reference to `scm_init_popen' when `fork' is unavailable
  1646. This fixes a MinGW build issue (http://bugs.gnu.org/12477).
  1647. ** Fix race between installing `guild' and the `guile-tools' symlink
  1648. * Bug fixes
  1649. ** Procedures returned by `eval' now have docstrings
  1650. (http://bugs.gnu.org/12173)
  1651. ** web client: correctly handle uri-query, etc. in relative URI headers
  1652. (http://bugs.gnu.org/12827)
  1653. ** Fix docs for R6RS `hashtable-copy'
  1654. ** R6RS `string-for-each' now accepts multiple string arguments
  1655. ** Fix out-of-range error in the compiler's CSE pass
  1656. (http://bugs.gnu.org/12883)
  1657. ** Add missing R6RS `open-file-input/output-port' procedure
  1658. ** Futures: Avoid creating the worker pool more than once
  1659. ** Fix invalid assertion about mutex ownership in threads.c
  1660. (http://bugs.gnu.org/12719)
  1661. ** Have `SCM_NUM2FLOAT' and `SCM_NUM2DOUBLE' use `scm_to_double'
  1662. ** The `scandir' procedure now uses `lstat' instead of `stat'
  1663. ** Fix `generalized-vector->list' indexing bug with shared arrays
  1664. (http://bugs.gnu.org/12465)
  1665. ** web: Change `http-get' to try all the addresses for the given URI
  1666. ** Implement `hash' for structs
  1667. (http://lists.gnu.org/archive/html/guile-devel/2012-10/msg00031.html)
  1668. ** `read' now adds source properties for data types beyond pairs
  1669. ** Improve error reporting in `append!'
  1670. ** In fold-matches, set regexp/notbol unless matching string start
  1671. ** Don't stat(2) and access(2) the .go location before using it
  1672. ** SRFI-19: use zero padding for hours in ISO 8601 format, not blanks
  1673. ** web: Fix uri-encoding for strings with no unreserved chars, and octets 0-15
  1674. ** More robust texinfo alias handling
  1675. ** Optimize `format' and `simple-format'
  1676. (http://bugs.gnu.org/12033)
  1677. ** Angle of -0.0 is pi, not zero
  1678. Changes in 2.0.6 (since 2.0.5):
  1679. * Notable changes
  1680. ** New optimization pass: common subexpression elimination (CSE)
  1681. Guile's optimizer will now run a CSE pass after partial evaluation.
  1682. This pass propagates static information about branches taken, bound
  1683. lexicals, and effects from an expression's dominators. It can replace
  1684. common subexpressions with their boolean values (potentially enabling
  1685. dead code elimination), equivalent bound lexicals, or it can elide them
  1686. entirely, depending on the context in which they are executed. This
  1687. pass is especially useful in removing duplicate type checks, such as
  1688. those produced by SRFI-9 record accessors.
  1689. ** Improvements to the partial evaluator
  1690. Peval can now hoist tests that are common to both branches of a
  1691. conditional into the test. This can help with long chains of
  1692. conditionals, such as those generated by the `match' macro. Peval can
  1693. now do simple beta-reductions of procedures with rest arguments. It
  1694. also avoids residualizing degenerate lexical aliases, even when full
  1695. inlining is not possible. Finally, peval now uses the effects analysis
  1696. introduced for the CSE pass. More precise effects analysis allows peval
  1697. to move more code.
  1698. ** Run finalizers asynchronously in asyncs
  1699. Finalizers are now run asynchronously, via an async. See Asyncs in the
  1700. manual. This allows Guile and user code to safely allocate memory while
  1701. holding a mutex.
  1702. ** Update SRFI-14 character sets to Unicode 6.1
  1703. Note that this update causes the Latin-1 characters `§' and `¶' to be
  1704. reclassified as punctuation. They were previously considered to be part
  1705. of `char-set:symbol'.
  1706. ** Better source information for datums
  1707. When the `positions' reader option is on, as it is by default, Guile's
  1708. reader will record source information for more kinds of datums.
  1709. ** Improved error and warning messages
  1710. `syntax-violation' errors now prefer `subform' for source info, with
  1711. `form' as fallback. Syntactic errors in `cond' and `case' now produce
  1712. better errors. `case' can now warn on duplicate datums, or datums that
  1713. cannot be usefully compared with `eqv?'. `-Warity-mismatch' now handles
  1714. applicable structs. `-Wformat' is more robust in the presence of
  1715. `gettext'. Finally, various exceptions thrown by the Web modules now
  1716. define appropriate exception printers.
  1717. ** A few important bug fixes in the HTTP modules.
  1718. Guile's web server framework now checks if an application returns a body
  1719. where it is not permitted, for example in response to a HEAD request,
  1720. and warn or truncate the response as appropriate. Bad requests now
  1721. cause a 400 Bad Request response to be printed before closing the port.
  1722. Finally, some date-printing and URL-parsing bugs were fixed.
  1723. ** Pretty-print improvements
  1724. When Guile needs to pretty-print Tree-IL, it will try to reconstruct
  1725. `cond', `or`, and other derived syntax forms from the primitive tree-IL
  1726. forms. It also uses the original names instead of the fresh unique
  1727. names, when it is unambiguous to do so. This can be seen in the output
  1728. of REPL commands like `,optimize'.
  1729. Also, the `pretty-print' procedure has a new keyword argument,
  1730. `#:max-expr-width'.
  1731. ** Fix memory leak involving applicable SMOBs
  1732. At some point in the 1.9.x series, Guile began leaking any applicable
  1733. SMOB that was actually applied. (There was a weak-key map from SMOB to
  1734. trampoline functions, where the value had a strong reference on the
  1735. key.) This has been fixed. There was much rejoicing!
  1736. ** Support for HTTP/1.1 chunked transfer coding
  1737. See "Transfer Codings" in the manual, for more.
  1738. ** Micro-optimizations
  1739. A pile of micro-optimizations: the `string-trim' function when called
  1740. with `char-set:whitespace'; the `(web http)' parsers; SMOB application;
  1741. conversion of raw UTF-8 and UTF-32 data to and from SCM strings; vlists
  1742. and vhashes; `read' when processing string literals.
  1743. ** Incompatible change to `scandir'
  1744. As was the original intention, `scandir' now runs the `select?'
  1745. procedure on all items, including subdirectories and the `.' and `..'
  1746. entries. It receives the basename of the file in question instead of
  1747. the full name. We apologize for this incompatible change to this
  1748. function introduced in the 2.0.4 release.
  1749. * Manual updates
  1750. The manual has been made much more consistent in its naming conventions
  1751. with regards to formal parameters of functions. Thanks to Bake Timmons.
  1752. * New interfaces
  1753. ** New C function: `scm_to_pointer'
  1754. ** New C inline functions: `scm_new_smob', `scm_new_double_smob'
  1755. ** (ice-9 format): Add ~h specifier for localized number output.
  1756. ** (web response): New procedure: `response-must-not-include-body?'
  1757. ** New predicate: 'supports-source-properties?'
  1758. ** New C helpers: `scm_c_values', `scm_c_nvalues'
  1759. ** Newly public inline C function: `scm_unget_byte'
  1760. ** (language tree-il): New functions: `tree-il=?', `tree-il-hash'
  1761. ** New fluid: `%default-port-conversion-strategy'
  1762. ** New syntax: `=>' within `case'
  1763. ** (web http): `make-chunked-input-port', `make-chunked-output-port'
  1764. ** (web http): `declare-opaque-header!'
  1765. Search the manual for these identifiers, for more information.
  1766. * New deprecations
  1767. ** `close-io-port' deprecated
  1768. Use `close-port'.
  1769. ** `scm_sym2var' deprecated
  1770. In most cases, replace with `scm_lookup' or `scm_module_variable'. Use
  1771. `scm_define' or `scm_module_ensure_local_variable' if the second
  1772. argument is nonzero. See "Accessing Modules from C" in the manual, for
  1773. full details.
  1774. ** Lookup closures deprecated
  1775. These were never documented. See "Module System Reflection" in the
  1776. manual for replacements.
  1777. * Build fixes
  1778. ** Fix compilation against uninstalled Guile on non-GNU platforms.
  1779. ** Fix `SCM_I_ERROR' definition for MinGW without networking.
  1780. ** Fix compilation with the Sun C compiler.
  1781. ** Fix check for `clock_gettime' on OpenBSD and some other systems.
  1782. ** Fix build with --enable-debug-malloc.
  1783. ** Honor $(program_transform_name) for the `guile-tools' symlink.
  1784. ** Fix cross-compilation of GOOPS-using code.
  1785. * Bug fixes
  1786. ** Fix use of unitialized stat buffer in search-path of absolute paths.
  1787. ** Avoid calling `freelocale' with a NULL argument.
  1788. ** Work around erroneous tr_TR locale in Darwin 8 in tests.
  1789. ** Fix `getaddrinfo' test for Darwin 8.
  1790. ** Use Gnulib's `regex' module for better regex portability.
  1791. ** `source-properties' and friends work on any object
  1792. ** Rewrite open-process in C, for robustness related to threads and fork
  1793. ** Fix <TAG>vector-length when applied to other uniform vector types
  1794. ** Fix escape-only prompt optimization (was disabled previously)
  1795. ** Fix a segfault when /dev/urandom is not accessible
  1796. ** Fix flush on soft ports, so that it actually runs.
  1797. ** Better compatibility of SRFI-9 records with core records
  1798. ** Fix and clarify documentation of `sorted?'.
  1799. ** Fix IEEE-754 endianness conversion in bytevectors.
  1800. ** Correct thunk check in the `wind' instruction.
  1801. ** Add @acronym support to texinfo modules
  1802. ** Fix docbook->texi for <ulink> without URL
  1803. ** Fix `setvbuf' to leave the line/column number unchanged.
  1804. ** Add missing public declaration for `scm_take_from_input_buffers'.
  1805. ** Fix relative file name canonicalization with empty %LOAD-PATH entries.
  1806. ** Import newer (ice-9 match) from Chibi-Scheme.
  1807. ** Fix unbound variables and unbound values in ECMAScript runtime.
  1808. ** Make SRFI-6 string ports Unicode-capable.
  1809. Changes in 2.0.5 (since 2.0.4):
  1810. This release fixes the binary interface information (SONAME) of
  1811. libguile, which was incorrect in 2.0.4. It does not contain other
  1812. changes.
  1813. Changes in 2.0.4 (since 2.0.3):
  1814. * Notable changes
  1815. ** Better debuggability for interpreted procedures.
  1816. Guile 2.0 came with a great debugging experience for compiled
  1817. procedures, but the story for interpreted procedures was terrible. Now,
  1818. at least, interpreted procedures have names, and the `arity' procedure
  1819. property is always correct (or, as correct as it can be, in the presence
  1820. of `case-lambda').
  1821. ** Support for cross-compilation.
  1822. One can now use a native Guile to cross-compile `.go' files for a
  1823. different architecture. See the documentation for `--target' in the
  1824. "Compilation" section of the manual, for information on how to use the
  1825. cross-compiler. See the "Cross building Guile" section of the README,
  1826. for more on how to cross-compile Guile itself.
  1827. ** The return of `local-eval'.
  1828. Back by popular demand, `the-environment' and `local-eval' allow the
  1829. user to capture a lexical environment, and then evaluate arbitrary
  1830. expressions in that context. There is also a new `local-compile'
  1831. command. See "Local Evaluation" in the manual, for more. Special
  1832. thanks to Mark Weaver for an initial implementation of this feature.
  1833. ** Fluids can now have default values.
  1834. Fluids are used for dynamic and thread-local binding. They have always
  1835. inherited their values from the context or thread that created them.
  1836. However, there was a case in which a new thread would enter Guile, and
  1837. the default values of all the fluids would be `#f' for that thread.
  1838. This has now been fixed so that `make-fluid' has an optional default
  1839. value for fluids in unrelated dynamic roots, which defaults to `#f'.
  1840. ** Garbage collector tuning.
  1841. The garbage collector has now been tuned to run more often under some
  1842. circumstances.
  1843. *** Unmanaged allocation
  1844. The new `scm_gc_register_allocation' function will notify the collector
  1845. of unmanaged allocation. This will cause the collector to run sooner.
  1846. Guile's `scm_malloc', `scm_calloc', and `scm_realloc' unmanaged
  1847. allocators eventually call this function. This leads to better
  1848. performance under steady-state unmanaged allocation.
  1849. *** Transient allocation
  1850. When the collector runs, it will try to record the total memory
  1851. footprint of a process, if the platform supports this information. If
  1852. the memory footprint is growing, the collector will run more frequently.
  1853. This reduces the increase of the resident size of a process in response
  1854. to a transient increase in allocation.
  1855. *** Management of threads, bignums
  1856. Creating a thread will allocate a fair amount of memory. Guile now does
  1857. some GC work (using `GC_collect_a_little') when allocating a thread.
  1858. This leads to a better memory footprint when creating many short-lived
  1859. threads.
  1860. Similarly, bignums can occupy a lot of memory. Guile now offers hooks
  1861. to enable custom GMP allocators that end up calling
  1862. `scm_gc_register_allocation'. These allocators are enabled by default
  1863. when running Guile from the command-line. To enable them in libraries,
  1864. set the `scm_install_gmp_memory_functions' variable to a nonzero value
  1865. before loading Guile.
  1866. ** SRFI-39 parameters are available by default.
  1867. Guile now includes support for parameters, as defined by SRFI-39, in the
  1868. default environment. See "Parameters" in the manual, for more
  1869. information. `current-input-port', `current-output-port', and
  1870. `current-error-port' are now parameters.
  1871. ** Add `current-warning-port'.
  1872. Guile now outputs warnings on a separate port, `current-warning-port',
  1873. initialized to the value that `current-error-port' has on startup.
  1874. ** Syntax parameters.
  1875. Following Racket's lead, Guile now supports syntax parameters. See
  1876. "Syntax parameters" in the manual, for more.
  1877. Also see Barzilay, Culpepper, and Flatt's 2011 SFP workshop paper,
  1878. "Keeping it Clean with syntax-parameterize".
  1879. ** Parse command-line arguments from the locale encoding.
  1880. Guile now attempts to parse command-line arguments using the user's
  1881. locale. However for backwards compatibility with other 2.0.x releases,
  1882. it does so without actually calling `setlocale'. Please report any bugs
  1883. in this facility to bug-guile@gnu.org.
  1884. ** One-armed conditionals: `when' and `unless'
  1885. Guile finally has `when' and `unless' in the default environment. Use
  1886. them whenever you would use an `if' with only one branch. See
  1887. "Conditionals" in the manual, for more.
  1888. ** `current-filename', `add-to-load-path'
  1889. There is a new form, `(current-filename)', which expands out to the
  1890. source file in which it occurs. Combined with the new
  1891. `add-to-load-path', this allows simple scripts to easily add nearby
  1892. directories to the load path. See "Load Paths" in the manual, for more.
  1893. ** `random-state-from-platform'
  1894. This procedure initializes a random seed using good random sources
  1895. available on your platform, such as /dev/urandom. See "Random Number
  1896. Generation" in the manual, for more.
  1897. ** Warn about unsupported `simple-format' options.
  1898. The `-Wformat' compilation option now reports unsupported format options
  1899. passed to `simple-format'.
  1900. ** Manual updates
  1901. Besides the sections already mentioned, the following manual sections
  1902. are new in this release: "Modules and the File System", "Module System
  1903. Reflection", "Syntax Transformer Helpers", and "Local Inclusion".
  1904. * New interfaces
  1905. ** (ice-9 session): `apropos-hook'
  1906. ** New print option: `escape-newlines', defaults to #t.
  1907. ** (ice-9 ftw): `file-system-fold', `file-system-tree', `scandir'
  1908. ** `scm_c_value_ref': access to multiple returned values from C
  1909. ** scm_call (a varargs version), scm_call_7, scm_call_8, scm_call_9
  1910. ** Some new syntax helpers in (system syntax)
  1911. Search the manual for these identifiers and modules, for more.
  1912. * Build fixes
  1913. ** FreeBSD build fixes.
  1914. ** OpenBSD compilation fixes.
  1915. ** Solaris 2.10 test suite fixes.
  1916. ** IA64 compilation fix.
  1917. ** MinGW build fixes.
  1918. ** Work around instruction reordering on SPARC and HPPA in the VM.
  1919. ** Gnulib updates: added `dirfd', `setenv' modules.
  1920. * Bug fixes
  1921. ** Add a deprecated alias for $expt.
  1922. ** Add an exception printer for `getaddrinfo-error'.
  1923. ** Add deprecated shim for `scm_display_error' with stack as first argument.
  1924. ** Add warnings for unsupported `simple-format' options.
  1925. ** Allow overlapping regions to be passed to `bytevector-copy!'.
  1926. ** Better function prologue disassembly
  1927. ** Compiler: fix miscompilation of (values foo ...) in some contexts.
  1928. ** Compiler: fix serialization of #nil-terminated lists.
  1929. ** Compiler: allow values bound in non-tail let expressions to be collected.
  1930. ** Deprecate SCM_ASRTGO.
  1931. ** Document invalidity of (begin) as expression; add back-compat shim.
  1932. ** Don't leak file descriptors when mmaping objcode.
  1933. ** Empty substrings no longer reference the original stringbuf.
  1934. ** FFI: Fix `set-pointer-finalizer!' to leave the type cell unchanged.
  1935. ** FFI: Hold a weak reference to the CIF made by `procedure->pointer'.
  1936. ** FFI: Hold a weak reference to the procedure passed to `procedure->pointer'.
  1937. ** FFI: Properly unpack small integer return values in closure call.
  1938. ** Fix R6RS `fold-left' so the accumulator is the first argument.
  1939. ** Fix bit-set*! bug from 2005.
  1940. ** Fix bug in `make-repl' when `lang' is actually a <language>.
  1941. ** Fix bugs related to mutation, the null string, and shared substrings.
  1942. ** Fix <dynwind> serialization.
  1943. ** Fix erroneous check in `set-procedure-properties!'.
  1944. ** Fix generalized-vector-{ref,set!} for slices.
  1945. ** Fix error messages involving definition forms.
  1946. ** Fix primitive-eval to return #<unspecified> for definitions.
  1947. ** HTTP: Extend handling of "Cache-Control" header.
  1948. ** HTTP: Fix qstring writing of cache-extension values
  1949. ** HTTP: Fix validators for various list-style headers.
  1950. ** HTTP: Permit non-date values for Expires header.
  1951. ** HTTP: `write-request-line' writes absolute paths, not absolute URIs.
  1952. ** Hack the port-column of current-output-port after printing a prompt.
  1953. ** Make sure `regexp-quote' tests use Unicode-capable string ports.
  1954. ** Peval: Fix bugs in the new optimizer.
  1955. ** Statistically unique marks and labels, for robust hygiene across sessions.
  1956. ** Web: Allow URIs with empty authorities, like "file:///etc/hosts".
  1957. ** `,language' at REPL sets the current-language fluid.
  1958. ** `primitive-load' returns the value(s) of the last expression.
  1959. ** `scm_from_stringn' always returns unique strings.
  1960. ** `scm_i_substring_copy' tries to narrow the substring.
  1961. ** i18n: Fix gc_malloc/free mismatch on non-GNU systems.
  1962. Changes in 2.0.3 (since 2.0.2):
  1963. * Speed improvements
  1964. ** Guile has a new optimizer, `peval'.
  1965. `Peval' is a partial evaluator that performs constant folding, dead code
  1966. elimination, copy propagation, and inlining. By default it runs on
  1967. every piece of code that Guile compiles, to fold computations that can
  1968. happen at compile-time, so they don't have to happen at runtime.
  1969. If we did our job right, the only impact you would see would be your
  1970. programs getting faster. But if you notice slowdowns or bloated code,
  1971. please send a mail to bug-guile@gnu.org with details.
  1972. Thanks to William R. Cook, Oscar Waddell, and Kent Dybvig for inspiring
  1973. peval and its implementation.
  1974. You can see what peval does on a given piece of code by running the new
  1975. `,optimize' REPL meta-command, and comparing it to the output of
  1976. `,expand'. See "Compile Commands" in the manual, for more.
  1977. ** Fewer calls to `stat'.
  1978. Guile now stats only the .go file and the .scm file when loading a fresh
  1979. compiled file.
  1980. * Notable changes
  1981. ** New module: `(web client)', a simple synchronous web client.
  1982. See "Web Client" in the manual, for more.
  1983. ** Users can now install compiled `.go' files.
  1984. See "Installing Site Packages" in the manual.
  1985. ** Remove Front-Cover and Back-Cover text from the manual.
  1986. The manual is still under the GNU Free Documentation License, but no
  1987. longer has any invariant sections.
  1988. ** More helpful `guild help'.
  1989. `guild' is Guile's multi-tool, for use in shell scripting. Now it has a
  1990. nicer interface for querying the set of existing commands, and getting
  1991. help on those commands. Try it out and see!
  1992. ** New macro: `define-syntax-rule'
  1993. `define-syntax-rule' is a shorthand to make a `syntax-rules' macro with
  1994. one clause. See "Syntax Rules" in the manual, for more.
  1995. ** The `,time' REPL meta-command now has more precision.
  1996. The output of this command now has microsecond precision, instead of
  1997. 10-millisecond precision.
  1998. ** `(ice-9 match)' can now match records.
  1999. See "Pattern Matching" in the manual, for more on matching records.
  2000. ** New module: `(language tree-il debug)'.
  2001. This module provides a tree-il verifier. This is useful for people that
  2002. generate tree-il, usually as part of a language compiler.
  2003. ** New functions: `scm_is_exact', `scm_is_inexact'.
  2004. These provide a nice C interface for Scheme's `exact?' and `inexact?',
  2005. respectively.
  2006. * Bugs fixed
  2007. See the git log (or the ChangeLog) for more details on these bugs.
  2008. ** Fix order of importing modules and resolving duplicates handlers.
  2009. ** Fix a number of bugs involving extended (merged) generics.
  2010. ** Fix invocation of merge-generics duplicate handler.
  2011. ** Fix write beyond array end in arrays.c.
  2012. ** Fix read beyond end of hashtable size array in hashtab.c.
  2013. ** (web http): Locale-independent parsing and serialization of dates.
  2014. ** Ensure presence of Host header in HTTP/1.1 requests.
  2015. ** Fix take-right and drop-right for improper lists.
  2016. ** Fix leak in get_current_locale().
  2017. ** Fix recursive define-inlinable expansions.
  2018. ** Check that srfi-1 procedure arguments are procedures.
  2019. ** Fix r6rs `map' for multiple returns.
  2020. ** Fix scm_tmpfile leak on POSIX platforms.
  2021. ** Fix a couple of leaks (objcode->bytecode, make-boot-program).
  2022. ** Fix guile-lib back-compatibility for module-stexi-documentation.
  2023. ** Fix --listen option to allow other ports.
  2024. ** Fix scm_to_latin1_stringn for substrings.
  2025. ** Fix compilation of untyped arrays of rank not 1.
  2026. ** Fix unparse-tree-il of <dynset>.
  2027. ** Fix reading of #||||#.
  2028. ** Fix segfault in GOOPS when class fields are redefined.
  2029. ** Prefer poll(2) over select(2) to allow file descriptors above FD_SETSIZE.
  2030. Changes in 2.0.2 (since 2.0.1):
  2031. * Notable changes
  2032. ** `guile-tools' renamed to `guild'
  2033. The new name is shorter. Its intended future use is for a CPAN-like
  2034. system for Guile wizards and journeyfolk to band together to share code;
  2035. hence the name. `guile-tools' is provided as a backward-compatible
  2036. symbolic link. See "Using Guile Tools" in the manual, for more.
  2037. ** New control operators: `shift' and `reset'
  2038. See "Shift and Reset" in the manual, for more information.
  2039. ** `while' as an expression
  2040. Previously the return value of `while' was unspecified. Now its
  2041. values are specified both in the case of normal termination, and via
  2042. termination by invoking `break', possibly with arguments. See "while
  2043. do" in the manual for more.
  2044. ** Disallow access to handles of weak hash tables
  2045. `hash-get-handle' and `hash-create-handle!' are no longer permitted to
  2046. be called on weak hash tables, because the fields in a weak handle could
  2047. be nulled out by the garbage collector at any time, but yet they are
  2048. otherwise indistinguishable from pairs. Use `hash-ref' and `hash-set!'
  2049. instead.
  2050. ** More precision for `get-internal-run-time', `get-internal-real-time'
  2051. On 64-bit systems which support POSIX clocks, Guile's internal timing
  2052. procedures offer nanosecond resolution instead of the 10-millisecond
  2053. resolution previously available. 32-bit systems now use 1-millisecond
  2054. timers.
  2055. ** Guile now measures time spent in GC
  2056. `gc-stats' now returns a meaningful value for `gc-time-taken'.
  2057. ** Add `gcprof'
  2058. The statprof profiler now exports a `gcprof' procedure, driven by the
  2059. `after-gc-hook', to see which parts of your program are causing GC. Let
  2060. us know if you find it useful.
  2061. ** `map', `for-each' and some others now implemented in Scheme
  2062. We would not mention this in NEWS, as it is not a user-visible change,
  2063. if it were not for one thing: `map' and `for-each' are no longer
  2064. primitive generics. Instead they are normal bindings, which can be
  2065. wrapped by normal generics. This fixes some modularity issues between
  2066. core `map', SRFI-1 `map', and GOOPS.
  2067. Also it's pretty cool that we can do this without a performance impact.
  2068. ** Add `scm_peek_byte_or_eof'.
  2069. This helper is like `scm_peek_char_or_eof', but for bytes instead of
  2070. full characters.
  2071. ** Implement #:stop-at-first-non-option option for getopt-long
  2072. See "getopt-long Reference" in the manual, for more information.
  2073. ** Improve R6RS conformance for conditions in the I/O libraries
  2074. The `(rnrs io simple)' module now raises the correct R6RS conditions in
  2075. error cases. `(rnrs io ports)' is also more correct now, though it is
  2076. still a work in progress.
  2077. ** All deprecated routines emit warnings
  2078. A few deprecated routines were lacking deprecation warnings. This has
  2079. been fixed now.
  2080. * Speed improvements
  2081. ** Constants in compiled code now share state better
  2082. Constants with shared state, like `("foo")' and `"foo"', now share state
  2083. as much as possible, in the entire compilation unit. This cuts compiled
  2084. `.go' file sizes in half, generally, and speeds startup.
  2085. ** VLists: optimize `vlist-fold-right', and add `vhash-fold-right'
  2086. These procedures are now twice as fast as they were.
  2087. ** UTF-8 ports to bypass `iconv' entirely
  2088. This reduces memory usage in a very common case.
  2089. ** Compiler speedups
  2090. The compiler is now about 40% faster. (Note that this is only the case
  2091. once the compiler is itself compiled, so the build still takes as long
  2092. as it did before.)
  2093. ** VM speed tuning
  2094. Some assertions that were mostly useful for sanity-checks on the
  2095. bytecode compiler are now off for both "regular" and "debug" engines.
  2096. This together with a fix to cache a TLS access and some other tweaks
  2097. improve the VM's performance by about 20%.
  2098. ** SRFI-1 list-set optimizations
  2099. lset-adjoin and lset-union now have fast paths for eq? sets.
  2100. ** `memq', `memv' optimizations
  2101. These procedures are now at least twice as fast than in 2.0.1.
  2102. * Deprecations
  2103. ** Deprecate scm_whash API
  2104. `scm_whash_get_handle', `SCM_WHASHFOUNDP', `SCM_WHASHREF',
  2105. `SCM_WHASHSET', `scm_whash_create_handle', `scm_whash_lookup', and
  2106. `scm_whash_insert' are now deprecated. Use the normal hash table API
  2107. instead.
  2108. ** Deprecate scm_struct_table
  2109. `SCM_STRUCT_TABLE_NAME', `SCM_SET_STRUCT_TABLE_NAME',
  2110. `SCM_STRUCT_TABLE_CLASS', `SCM_SET_STRUCT_TABLE_CLASS',
  2111. `scm_struct_table', and `scm_struct_create_handle' are now deprecated.
  2112. These routines formed part of the internals of the map between structs
  2113. and classes.
  2114. ** Deprecate scm_internal_dynamic_wind
  2115. The `scm_t_inner' type and `scm_internal_dynamic_wind' are deprecated,
  2116. as the `scm_dynwind' API is better, and this API encourages users to
  2117. stuff SCM values into pointers.
  2118. ** Deprecate scm_immutable_cell, scm_immutable_double_cell
  2119. These routines are deprecated, as the GC_STUBBORN API doesn't do
  2120. anything any more.
  2121. * Manual updates
  2122. Andreas Rottman kindly transcribed the missing parts of the `(rnrs io
  2123. ports)' documentation from the R6RS documentation. Thanks Andreas!
  2124. * Bugs fixed
  2125. ** Fix double-loading of script in -ds case
  2126. ** -x error message fix
  2127. ** iconveh-related cross-compilation fixes
  2128. ** Fix small integer return value packing on big endian machines.
  2129. ** Fix hash-set! in weak-value table from non-immediate to immediate
  2130. ** Fix call-with-input-file & relatives for multiple values
  2131. ** Fix `hash' for inf and nan
  2132. ** Fix libguile internal type errors caught by typing-strictness==2
  2133. ** Fix compile error in MinGW fstat socket detection
  2134. ** Fix generation of auto-compiled file names on MinGW
  2135. ** Fix multithreaded access to internal hash tables
  2136. ** Emit a 1-based line number in error messages
  2137. ** Fix define-module ordering
  2138. ** Fix several POSIX functions to use the locale encoding
  2139. ** Add type and range checks to the complex generalized vector accessors
  2140. ** Fix unaligned accesses for bytevectors of complex numbers
  2141. ** Fix '(a #{.} b)
  2142. ** Fix erroneous VM stack overflow for canceled threads
  2143. Changes in 2.0.1 (since 2.0.0):
  2144. * Notable changes
  2145. ** guile.m4 supports linking with rpath
  2146. The GUILE_FLAGS macro now sets GUILE_LIBS and GUILE_LTLIBS, which
  2147. include appropriate directives to the linker to include libguile-2.0.so
  2148. in the runtime library lookup path.
  2149. ** `begin' expands macros in its body before other expressions
  2150. This enables support for programs like the following:
  2151. (begin
  2152. (define even?
  2153. (lambda (x)
  2154. (or (= x 0) (odd? (- x 1)))))
  2155. (define-syntax odd?
  2156. (syntax-rules ()
  2157. ((odd? x) (not (even? x)))))
  2158. (even? 10))
  2159. ** REPL reader usability enhancements
  2160. The REPL now flushes input after a read error, which should prevent one
  2161. error from causing other errors. The REPL also now interprets comments
  2162. as whitespace.
  2163. ** REPL output has configurable width
  2164. The REPL now defaults to output with the current terminal's width, in
  2165. columns. See "Debug Commands" in the manual for more information on
  2166. the ,width command.
  2167. ** Better C access to the module system
  2168. Guile now has convenient C accessors to look up variables or values in
  2169. modules and their public interfaces. See `scm_c_public_ref' and friends
  2170. in "Accessing Modules from C" in the manual.
  2171. ** Added `scm_call_5', `scm_call_6'
  2172. See "Fly Evaluation" in the manual.
  2173. ** Added `scm_from_latin1_keyword', `scm_from_utf8_keyword'
  2174. See "Keyword Procedures" in the manual, for more. Note that
  2175. `scm_from_locale_keyword' should not be used when the name is a C string
  2176. constant.
  2177. ** R6RS unicode and string I/O work
  2178. Added efficient implementations of `get-string-n' and `get-string-n!'
  2179. for binary ports. Exported `current-input-port', `current-output-port'
  2180. and `current-error-port' from `(rnrs io ports)', and enhanced support
  2181. for transcoders.
  2182. ** Added `pointer->scm', `scm->pointer' to `(system foreign)'
  2183. These procedure are useful if one needs to pass and receive SCM values
  2184. to and from foreign functions. See "Foreign Variables" in the manual,
  2185. for more.
  2186. ** Added `heap-allocated-since-gc' to `(gc-stats)'
  2187. Also fixed the long-standing bug in the REPL `,stat' command.
  2188. ** Add `on-error' REPL option
  2189. This option controls what happens when an error occurs at the REPL, and
  2190. defaults to `debug', indicating that Guile should enter the debugger.
  2191. Other values include `report', which will simply print a backtrace
  2192. without entering the debugger. See "System Commands" in the manual.
  2193. ** Enforce immutability of string literals
  2194. Attempting to mutate a string literal now causes a runtime error.
  2195. ** Fix pthread redirection
  2196. Guile 2.0.0 shipped with headers that, if configured with pthread
  2197. support, would re-define `pthread_create', `pthread_join', and other API
  2198. to redirect to the BDW-GC wrappers, `GC_pthread_create', etc. This was
  2199. unintended, and not necessary: because threads must enter Guile with
  2200. `scm_with_guile', Guile can handle thread registration itself, without
  2201. needing to make the GC aware of all threads. This oversight has been
  2202. fixed.
  2203. ** `with-continuation-barrier' now unwinds on `quit'
  2204. A throw to `quit' in a continuation barrier will cause Guile to exit.
  2205. Before, it would do so before unwinding to the barrier, which would
  2206. prevent cleanup handlers from running. This has been fixed so that it
  2207. exits only after unwinding.
  2208. ** `string->pointer' and `pointer->string' have optional encoding arg
  2209. This allows users of the FFI to more easily deal in strings with
  2210. particular (non-locale) encodings, like "utf-8". See "Void Pointers and
  2211. Byte Access" in the manual, for more.
  2212. ** R6RS fixnum arithmetic optimizations
  2213. R6RS fixnum operations are are still slower than generic arithmetic,
  2214. however.
  2215. ** New procedure: `define-inlinable'
  2216. See "Inlinable Procedures" in the manual, for more.
  2217. ** New procedure: `exact-integer-sqrt'
  2218. See "Integer Operations" in the manual, for more.
  2219. ** "Extended read syntax" for symbols parses better
  2220. In #{foo}# symbols, backslashes are now treated as escapes, as the
  2221. symbol-printing code intended. Additionally, "\x" within #{foo}# is now
  2222. interpreted as starting an R6RS hex escape. This is backward compatible
  2223. because the symbol printer would never produce a "\x" before. The
  2224. printer also works better too.
  2225. ** Added `--fresh-auto-compile' option
  2226. This allows a user to invalidate the auto-compilation cache. It's
  2227. usually not needed. See "Compilation" in the manual, for a discussion.
  2228. * Manual updates
  2229. ** GOOPS documentation updates
  2230. ** New man page
  2231. Thanks to Mark Harig for improvements to guile.1.
  2232. ** SRFI-23 documented
  2233. The humble `error' SRFI now has an entry in the manual.
  2234. * New modules
  2235. ** `(ice-9 binary-ports)': "R6RS I/O Ports", in the manual
  2236. ** `(ice-9 eval-string)': "Fly Evaluation", in the manual
  2237. ** `(ice-9 command-line)', not documented yet
  2238. * Bugs fixed
  2239. ** Fixed `iconv_t' memory leak on close-port
  2240. ** Fixed some leaks with weak hash tables
  2241. ** Export `vhash-delq' and `vhash-delv' from `(ice-9 vlist)'
  2242. ** `after-gc-hook' works again
  2243. ** `define-record-type' now allowed in nested contexts
  2244. ** `exact-integer-sqrt' now handles large integers correctly
  2245. ** Fixed C extension examples in manual
  2246. ** `vhash-delete' honors HASH argument
  2247. ** Make `locale-digit-grouping' more robust
  2248. ** Default exception printer robustness fixes
  2249. ** Fix presence of non-I CPPFLAGS in `guile-2.0.pc'
  2250. ** `read' updates line/column numbers when reading SCSH block comments
  2251. ** Fix imports of multiple custom interfaces of same module
  2252. ** Fix encoding scanning for non-seekable ports
  2253. ** Fix `setter' when called with a non-setter generic
  2254. ** Fix f32 and f64 bytevectors to not accept rationals
  2255. ** Fix description of the R6RS `finite?' in manual
  2256. ** Quotient, remainder and modulo accept inexact integers again
  2257. ** Fix `continue' within `while' to take zero arguments
  2258. ** Fix alignment for structures in FFI
  2259. ** Fix port-filename of stdin, stdout, stderr to match the docs
  2260. ** Fix weak hash table-related bug in `define-wrapped-pointer-type'
  2261. ** Fix partial continuation application with pending procedure calls
  2262. ** scm_{to,from}_locale_string use current locale, not current ports
  2263. ** Fix thread cleanup, by using a pthread_key destructor
  2264. ** Fix `quit' at the REPL
  2265. ** Fix a failure to sync regs in vm bytevector ops
  2266. ** Fix (texinfo reflection) to handle nested structures like syntax patterns
  2267. ** Fix stexi->html double translation
  2268. ** Fix tree-il->scheme fix for <prompt>
  2269. ** Fix compilation of <prompt> in <fix> in single-value context
  2270. ** Fix race condition in ensure-writable-dir
  2271. ** Fix error message on ,disassemble "non-procedure"
  2272. ** Fix prompt and abort with the boot evaluator
  2273. ** Fix `procedure->pointer' for functions returning `void'
  2274. ** Fix error reporting in dynamic-pointer
  2275. ** Fix problems detecting coding: in block comments
  2276. ** Fix duplicate load-path and load-compiled-path in compilation environment
  2277. ** Add fallback read(2) suppport for .go files if mmap(2) unavailable
  2278. ** Fix c32vector-set!, c64vector-set!
  2279. ** Fix mistakenly deprecated read syntax for uniform complex vectors
  2280. ** Fix parsing of exact numbers with negative exponents
  2281. ** Ignore SIGPIPE in (system repl server)
  2282. ** Fix optional second arg to R6RS log function
  2283. ** Fix R6RS `assert' to return true value.
  2284. ** Fix fencepost error when seeking in bytevector input ports
  2285. ** Gracefully handle `setlocale' errors when starting the REPL
  2286. ** Improve support of the `--disable-posix' configure option
  2287. ** Make sure R6RS binary ports pass `binary-port?' regardless of the locale
  2288. ** Gracefully handle unterminated UTF-8 sequences instead of hitting an `assert'
  2289. Changes in 2.0.0 (changes since the 1.8.x series):
  2290. * New modules (see the manual for details)
  2291. ** `(srfi srfi-18)', more sophisticated multithreading support
  2292. ** `(srfi srfi-27)', sources of random bits
  2293. ** `(srfi srfi-38)', External Representation for Data With Shared Structure
  2294. ** `(srfi srfi-42)', eager comprehensions
  2295. ** `(srfi srfi-45)', primitives for expressing iterative lazy algorithms
  2296. ** `(srfi srfi-67)', compare procedures
  2297. ** `(ice-9 i18n)', internationalization support
  2298. ** `(ice-9 futures)', fine-grain parallelism
  2299. ** `(rnrs bytevectors)', the R6RS bytevector API
  2300. ** `(rnrs io ports)', a subset of the R6RS I/O port API
  2301. ** `(system xref)', a cross-referencing facility (FIXME undocumented)
  2302. ** `(ice-9 vlist)', lists with constant-time random access; hash lists
  2303. ** `(system foreign)', foreign function interface
  2304. ** `(sxml match)', a pattern matcher for SXML
  2305. ** `(srfi srfi-9 gnu)', extensions to the SRFI-9 record library
  2306. ** `(system vm coverage)', a line-by-line code coverage library
  2307. ** `(web uri)', URI data type, parser, and unparser
  2308. ** `(web http)', HTTP header parsers and unparsers
  2309. ** `(web request)', HTTP request data type, reader, and writer
  2310. ** `(web response)', HTTP response data type, reader, and writer
  2311. ** `(web server)', Generic HTTP server
  2312. ** `(ice-9 poll)', a poll wrapper
  2313. ** `(web server http)', HTTP-over-TCP web server implementation
  2314. ** Replaced `(ice-9 match)' with Alex Shinn's compatible, hygienic matcher.
  2315. Guile's copy of Andrew K. Wright's `match' library has been replaced by
  2316. a compatible hygienic implementation by Alex Shinn. It is now
  2317. documented, see "Pattern Matching" in the manual.
  2318. Compared to Andrew K. Wright's `match', the new `match' lacks
  2319. `match-define', `match:error-control', `match:set-error-control',
  2320. `match:error', `match:set-error', and all structure-related procedures.
  2321. ** Imported statprof, SSAX, and texinfo modules from Guile-Lib
  2322. The statprof statistical profiler, the SSAX XML toolkit, and the texinfo
  2323. toolkit from Guile-Lib have been imported into Guile proper. See
  2324. "Standard Library" in the manual for more details.
  2325. ** Integration of lalr-scm, a parser generator
  2326. Guile has included Dominique Boucher's fine `lalr-scm' parser generator
  2327. as `(system base lalr)'. See "LALR(1) Parsing" in the manual, for more
  2328. information.
  2329. * Changes to the stand-alone interpreter
  2330. ** Guile now can compile Scheme to bytecode for a custom virtual machine.
  2331. Compiled code loads much faster than Scheme source code, and runs around
  2332. 3 or 4 times as fast, generating much less garbage in the process.
  2333. ** Evaluating Scheme code does not use the C stack.
  2334. Besides when compiling Guile itself, Guile no longer uses a recursive C
  2335. function as an evaluator. This obviates the need to check the C stack
  2336. pointer for overflow. Continuations still capture the C stack, however.
  2337. ** New environment variables: GUILE_LOAD_COMPILED_PATH,
  2338. GUILE_SYSTEM_LOAD_COMPILED_PATH
  2339. GUILE_LOAD_COMPILED_PATH is for compiled files what GUILE_LOAD_PATH is
  2340. for source files. It is a different path, however, because compiled
  2341. files are architecture-specific. GUILE_SYSTEM_LOAD_COMPILED_PATH is like
  2342. GUILE_SYSTEM_PATH.
  2343. ** New read-eval-print loop (REPL) implementation
  2344. Running Guile with no arguments drops the user into the new REPL. See
  2345. "Using Guile Interactively" in the manual, for more information.
  2346. ** Remove old Emacs interface
  2347. Guile had an unused `--emacs' command line argument that was supposed to
  2348. help when running Guile inside Emacs. This option has been removed, and
  2349. the helper functions `named-module-use!' and `load-emacs-interface' have
  2350. been deprecated.
  2351. ** Add `(system repl server)' module and `--listen' command-line argument
  2352. The `(system repl server)' module exposes procedures to listen on
  2353. sockets for connections, and serve REPLs to those clients. The --listen
  2354. command-line argument allows any Guile program to thus be remotely
  2355. debuggable.
  2356. See "Invoking Guile" for more information on `--listen'.
  2357. ** Command line additions
  2358. The guile binary now supports a new switch "-x", which can be used to
  2359. extend the list of filename extensions tried when loading files
  2360. (%load-extensions).
  2361. ** New reader options: `square-brackets', `r6rs-hex-escapes',
  2362. `hungry-eol-escapes'
  2363. The reader supports a new option (changeable via `read-options'),
  2364. `square-brackets', which instructs it to interpret square brackets as
  2365. parentheses. This option is on by default.
  2366. When the new `r6rs-hex-escapes' reader option is enabled, the reader
  2367. will recognize string escape sequences as defined in R6RS. R6RS string
  2368. escape sequences are incompatible with Guile's existing escapes, though,
  2369. so this option is off by default.
  2370. Additionally, Guile follows the R6RS newline escaping rules when the
  2371. `hungry-eol-escapes' option is enabled.
  2372. See "String Syntax" in the manual, for more information.
  2373. ** Function profiling and tracing at the REPL
  2374. The `,profile FORM' REPL meta-command can now be used to statistically
  2375. profile execution of a form, to see which functions are taking the most
  2376. time. See `,help profile' for more information.
  2377. Similarly, `,trace FORM' traces all function applications that occur
  2378. during the execution of `FORM'. See `,help trace' for more information.
  2379. ** Recursive debugging REPL on error
  2380. When Guile sees an error at the REPL, instead of saving the stack, Guile
  2381. will directly enter a recursive REPL in the dynamic context of the
  2382. error. See "Error Handling" in the manual, for more information.
  2383. A recursive REPL is the same as any other REPL, except that it
  2384. has been augmented with debugging information, so that one can inspect
  2385. the context of the error. The debugger has been integrated with the REPL
  2386. via a set of debugging meta-commands.
  2387. For example, one may access a backtrace with `,backtrace' (or
  2388. `,bt'). See "Interactive Debugging" in the manual, for more
  2389. information.
  2390. ** New `guile-tools' commands: `compile', `disassemble'
  2391. Pass the `--help' command-line option to these commands for more
  2392. information.
  2393. ** Guile now adds its install prefix to the LTDL_LIBRARY_PATH
  2394. Users may now install Guile to nonstandard prefixes and just run
  2395. `/path/to/bin/guile', instead of also having to set LTDL_LIBRARY_PATH to
  2396. include `/path/to/lib'.
  2397. ** Guile's Emacs integration is now more keyboard-friendly
  2398. Backtraces may now be disclosed with the keyboard in addition to the
  2399. mouse.
  2400. ** Load path change: search in version-specific paths before site paths
  2401. When looking for a module, Guile now searches first in Guile's
  2402. version-specific path (the library path), *then* in the site dir. This
  2403. allows Guile's copy of SSAX to override any Guile-Lib copy the user has
  2404. installed. Also it should cut the number of `stat' system calls by half,
  2405. in the common case.
  2406. ** Value history in the REPL on by default
  2407. By default, the REPL will save computed values in variables like `$1',
  2408. `$2', and the like. There are programmatic and interactive interfaces to
  2409. control this. See "Value History" in the manual, for more information.
  2410. ** Readline tab completion for arguments
  2411. When readline is enabled, tab completion works for arguments too, not
  2412. just for the operator position.
  2413. ** Expression-oriented readline history
  2414. Guile's readline history now tries to operate on expressions instead of
  2415. input lines. Let us know what you think!
  2416. ** Interactive Guile follows GNU conventions
  2417. As recommended by the GPL, Guile now shows a brief copyright and
  2418. warranty disclaimer on startup, along with pointers to more information.
  2419. * Changes to Scheme functions and syntax
  2420. ** Support for R6RS libraries
  2421. The `library' and `import' forms from the latest Scheme report have been
  2422. added to Guile, in such a way that R6RS libraries share a namespace with
  2423. Guile modules. R6RS modules may import Guile modules, and are available
  2424. for Guile modules to import via use-modules and all the rest. See "R6RS
  2425. Libraries" in the manual for more information.
  2426. ** Implementations of R6RS libraries
  2427. Guile now has implementations for all of the libraries defined in the
  2428. R6RS. Thanks to Julian Graham for this excellent hack. See "R6RS
  2429. Standard Libraries" in the manual for a full list of libraries.
  2430. ** Partial R6RS compatibility
  2431. Guile now has enough support for R6RS to run a reasonably large subset
  2432. of R6RS programs.
  2433. Guile is not fully R6RS compatible. Many incompatibilities are simply
  2434. bugs, though some parts of Guile will remain R6RS-incompatible for the
  2435. foreseeable future. See "R6RS Incompatibilities" in the manual, for more
  2436. information.
  2437. Please contact bug-guile@gnu.org if you have found an issue not
  2438. mentioned in that compatibility list.
  2439. ** New implementation of `primitive-eval'
  2440. Guile's `primitive-eval' is now implemented in Scheme. Actually there is
  2441. still a C evaluator, used when building a fresh Guile to interpret the
  2442. compiler, so we can compile eval.scm. Thereafter all calls to
  2443. primitive-eval are implemented by VM-compiled code.
  2444. This allows all of Guile's procedures, be they interpreted or compiled,
  2445. to execute on the same stack, unifying multiple-value return semantics,
  2446. providing for proper tail recursion between interpreted and compiled
  2447. code, and simplifying debugging.
  2448. As part of this change, the evaluator no longer mutates the internal
  2449. representation of the code being evaluated in a thread-unsafe manner.
  2450. There are two negative aspects of this change, however. First, Guile
  2451. takes a lot longer to compile now. Also, there is less debugging
  2452. information available for debugging interpreted code. We hope to improve
  2453. both of these situations.
  2454. There are many changes to the internal C evalator interface, but all
  2455. public interfaces should be the same. See the ChangeLog for details. If
  2456. we have inadvertantly changed an interface that you were using, please
  2457. contact bug-guile@gnu.org.
  2458. ** Procedure removed: `the-environment'
  2459. This procedure was part of the interpreter's execution model, and does
  2460. not apply to the compiler.
  2461. ** No more `local-eval'
  2462. `local-eval' used to exist so that one could evaluate code in the
  2463. lexical context of a function. Since there is no way to get the lexical
  2464. environment any more, as that concept has no meaning for the compiler,
  2465. and a different meaning for the interpreter, we have removed the
  2466. function.
  2467. If you think you need `local-eval', you should probably implement your
  2468. own metacircular evaluator. It will probably be as fast as Guile's
  2469. anyway.
  2470. ** Scheme source files will now be compiled automatically.
  2471. If a compiled .go file corresponding to a .scm file is not found or is
  2472. not fresh, the .scm file will be compiled on the fly, and the resulting
  2473. .go file stored away. An advisory note will be printed on the console.
  2474. Note that this mechanism depends on the timestamp of the .go file being
  2475. newer than that of the .scm file; if the .scm or .go files are moved
  2476. after installation, care should be taken to preserve their original
  2477. timestamps.
  2478. Auto-compiled files will be stored in the $XDG_CACHE_HOME/guile/ccache
  2479. directory, where $XDG_CACHE_HOME defaults to ~/.cache. This directory
  2480. will be created if needed.
  2481. To inhibit automatic compilation, set the GUILE_AUTO_COMPILE environment
  2482. variable to 0, or pass --no-auto-compile on the Guile command line.
  2483. ** New POSIX procedures: `getrlimit' and `setrlimit'
  2484. Note however that the interface of these functions is likely to change
  2485. in the next prerelease.
  2486. ** New POSIX procedure: `getsid'
  2487. Scheme binding for the `getsid' C library call.
  2488. ** New POSIX procedure: `getaddrinfo'
  2489. Scheme binding for the `getaddrinfo' C library function.
  2490. ** Multicast socket options
  2491. Support was added for the IP_MULTICAST_TTL and IP_MULTICAST_IF socket
  2492. options. See "Network Sockets and Communication" in the manual, for
  2493. more information.
  2494. ** `recv!', `recvfrom!', `send', `sendto' now deal in bytevectors
  2495. These socket procedures now take bytevectors as arguments, instead of
  2496. strings. There is some deprecated string support, however.
  2497. ** New GNU procedures: `setaffinity' and `getaffinity'.
  2498. See "Processes" in the manual, for more information.
  2499. ** New procedures: `compose', `negate', and `const'
  2500. See "Higher-Order Functions" in the manual, for more information.
  2501. ** New procedure in `(oops goops)': `method-formals'
  2502. ** New procedures in (ice-9 session): `add-value-help-handler!',
  2503. `remove-value-help-handler!', `add-name-help-handler!'
  2504. `remove-name-help-handler!', `procedure-arguments'
  2505. The value and name help handlers provide some minimal extensibility to
  2506. the help interface. Guile-lib's `(texinfo reflection)' uses them, for
  2507. example, to make stexinfo help documentation available. See those
  2508. procedures' docstrings for more information.
  2509. `procedure-arguments' describes the arguments that a procedure can take,
  2510. combining arity and formals. For example:
  2511. (procedure-arguments resolve-interface)
  2512. => ((required . (name)) (rest . args))
  2513. Additionally, `module-commentary' is now publically exported from
  2514. `(ice-9 session).
  2515. ** Removed: `procedure->memoizing-macro', `procedure->syntax'
  2516. These procedures created primitive fexprs for the old evaluator, and are
  2517. no longer supported. If you feel that you need these functions, you
  2518. probably need to write your own metacircular evaluator (which will
  2519. probably be as fast as Guile's, anyway).
  2520. ** New language: ECMAScript
  2521. Guile now ships with one other high-level language supported,
  2522. ECMAScript. The goal is to support all of version 3.1 of the standard,
  2523. but not all of the libraries are there yet. This support is not yet
  2524. documented; ask on the mailing list if you are interested.
  2525. ** New language: Brainfuck
  2526. Brainfuck is a toy language that closely models Turing machines. Guile's
  2527. brainfuck compiler is meant to be an example of implementing other
  2528. languages. See the manual for details, or
  2529. http://en.wikipedia.org/wiki/Brainfuck for more information about the
  2530. Brainfuck language itself.
  2531. ** New language: Elisp
  2532. Guile now has an experimental Emacs Lisp compiler and runtime. You can
  2533. now switch to Elisp at the repl: `,language elisp'. All kudos to Daniel
  2534. Kraft and Brian Templeton, and all bugs to bug-guile@gnu.org.
  2535. ** Better documentation infrastructure for macros
  2536. It is now possible to introspect on the type of a macro, e.g.
  2537. syntax-rules, identifier-syntax, etc, and extract information about that
  2538. macro, such as the syntax-rules patterns or the defmacro arguments.
  2539. `(texinfo reflection)' takes advantage of this to give better macro
  2540. documentation.
  2541. ** Support for arbitrary procedure metadata
  2542. Building on its support for docstrings, Guile now supports multiple
  2543. docstrings, adding them to the tail of a compiled procedure's
  2544. properties. For example:
  2545. (define (foo)
  2546. "one"
  2547. "two"
  2548. 3)
  2549. (procedure-properties foo)
  2550. => ((name . foo) (documentation . "one") (documentation . "two"))
  2551. Also, vectors of pairs are now treated as additional metadata entries:
  2552. (define (bar)
  2553. #((quz . #f) (docstring . "xyzzy"))
  2554. 3)
  2555. (procedure-properties bar)
  2556. => ((name . bar) (quz . #f) (docstring . "xyzzy"))
  2557. This allows arbitrary literals to be embedded as metadata in a compiled
  2558. procedure.
  2559. ** The psyntax expander now knows how to interpret the @ and @@ special
  2560. forms.
  2561. ** The psyntax expander is now hygienic with respect to modules.
  2562. Free variables in a macro are scoped in the module that the macro was
  2563. defined in, not in the module the macro is used in. For example, code
  2564. like this works now:
  2565. (define-module (foo) #:export (bar))
  2566. (define (helper x) ...)
  2567. (define-syntax bar
  2568. (syntax-rules () ((_ x) (helper x))))
  2569. (define-module (baz) #:use-module (foo))
  2570. (bar qux)
  2571. It used to be you had to export `helper' from `(foo)' as well.
  2572. Thankfully, this has been fixed.
  2573. ** Support for version information in Guile's `module' form
  2574. Guile modules now have a `#:version' field. See "R6RS Version
  2575. References", "General Information about Modules", "Using Guile Modules",
  2576. and "Creating Guile Modules" in the manual for more information.
  2577. ** Support for renaming bindings on module export
  2578. Wherever Guile accepts a symbol as an argument to specify a binding to
  2579. export, it now also accepts a pair of symbols, indicating that a binding
  2580. should be renamed on export. See "Creating Guile Modules" in the manual
  2581. for more information.
  2582. ** New procedure: `module-export-all!'
  2583. This procedure exports all current and future bindings from a module.
  2584. Use as `(module-export-all! (current-module))'.
  2585. ** New procedure `reload-module', and `,reload' REPL command
  2586. See "Module System Reflection" and "Module Commands" in the manual, for
  2587. more information.
  2588. ** `eval-case' has been deprecated, and replaced by `eval-when'.
  2589. The semantics of `eval-when' are easier to understand. See "Eval When"
  2590. in the manual, for more information.
  2591. ** Guile is now more strict about prohibiting definitions in expression
  2592. contexts.
  2593. Although previous versions of Guile accepted it, the following
  2594. expression is not valid, in R5RS or R6RS:
  2595. (if test (define foo 'bar) (define foo 'baz))
  2596. In this specific case, it would be better to do:
  2597. (define foo (if test 'bar 'baz))
  2598. It is possible to circumvent this restriction with e.g.
  2599. `(module-define! (current-module) 'foo 'baz)'. Contact the list if you
  2600. have any questions.
  2601. ** Support for `letrec*'
  2602. Guile now supports `letrec*', a recursive lexical binding operator in
  2603. which the identifiers are bound in order. See "Local Bindings" in the
  2604. manual, for more details.
  2605. ** Internal definitions now expand to `letrec*'
  2606. Following the R6RS, internal definitions now expand to letrec* instead
  2607. of letrec. The following program is invalid for R5RS, but valid for
  2608. R6RS:
  2609. (define (foo)
  2610. (define bar 10)
  2611. (define baz (+ bar 20))
  2612. baz)
  2613. ;; R5RS and Guile <= 1.8:
  2614. (foo) => Unbound variable: bar
  2615. ;; R6RS and Guile >= 2.0:
  2616. (foo) => 30
  2617. This change should not affect correct R5RS programs, or programs written
  2618. in earlier Guile dialects.
  2619. ** Macro expansion produces structures instead of s-expressions
  2620. In the olden days, macroexpanding an s-expression would yield another
  2621. s-expression. Though the lexical variables were renamed, expansions of
  2622. core forms like `if' and `begin' were still non-hygienic, as they relied
  2623. on the toplevel definitions of `if' et al being the conventional ones.
  2624. The solution is to expand to structures instead of s-expressions. There
  2625. is an `if' structure, a `begin' structure, a `toplevel-ref' structure,
  2626. etc. The expander already did this for compilation, producing Tree-IL
  2627. directly; it has been changed now to do so when expanding for the
  2628. evaluator as well.
  2629. ** Defmacros must now produce valid Scheme expressions.
  2630. It used to be that defmacros could unquote in Scheme values, as a way of
  2631. supporting partial evaluation, and avoiding some hygiene issues. For
  2632. example:
  2633. (define (helper x) ...)
  2634. (define-macro (foo bar)
  2635. `(,helper ,bar))
  2636. Assuming this macro is in the `(baz)' module, the direct translation of
  2637. this code would be:
  2638. (define (helper x) ...)
  2639. (define-macro (foo bar)
  2640. `((@@ (baz) helper) ,bar))
  2641. Of course, one could just use a hygienic macro instead:
  2642. (define-syntax foo
  2643. (syntax-rules ()
  2644. ((_ bar) (helper bar))))
  2645. ** Guile's psyntax now supports docstrings and internal definitions.
  2646. The following Scheme is not strictly legal:
  2647. (define (foo)
  2648. "bar"
  2649. (define (baz) ...)
  2650. (baz))
  2651. However its intent is fairly clear. Guile interprets "bar" to be the
  2652. docstring of `foo', and the definition of `baz' is still in definition
  2653. context.
  2654. ** Support for settable identifier syntax
  2655. Following the R6RS, "variable transformers" are settable
  2656. identifier-syntax. See "Identifier macros" in the manual, for more
  2657. information.
  2658. ** syntax-case treats `_' as a placeholder
  2659. Following R6RS, a `_' in a syntax-rules or syntax-case pattern matches
  2660. anything, and binds no pattern variables. Unlike the R6RS, Guile also
  2661. permits `_' to be in the literals list for a pattern.
  2662. ** Macros need to be defined before their first use.
  2663. It used to be that with lazy memoization, this might work:
  2664. (define (foo x)
  2665. (ref x))
  2666. (define-macro (ref x) x)
  2667. (foo 1) => 1
  2668. But now, the body of `foo' is interpreted to mean a call to the toplevel
  2669. `ref' function, instead of a macro expansion. The solution is to define
  2670. macros before code that uses them.
  2671. ** Functions needed by macros at expand-time need to be present at
  2672. expand-time.
  2673. For example, this code will work at the REPL:
  2674. (define (double-helper x) (* x x))
  2675. (define-macro (double-literal x) (double-helper x))
  2676. (double-literal 2) => 4
  2677. But it will not work when a file is compiled, because the definition of
  2678. `double-helper' is not present at expand-time. The solution is to wrap
  2679. the definition of `double-helper' in `eval-when':
  2680. (eval-when (load compile eval)
  2681. (define (double-helper x) (* x x)))
  2682. (define-macro (double-literal x) (double-helper x))
  2683. (double-literal 2) => 4
  2684. See the documentation for eval-when for more information.
  2685. ** `macroexpand' produces structures, not S-expressions.
  2686. Given the need to maintain referential transparency, both lexically and
  2687. modular, the result of expanding Scheme expressions is no longer itself
  2688. an s-expression. If you want a human-readable approximation of the
  2689. result of `macroexpand', call `tree-il->scheme' from `(language
  2690. tree-il)'.
  2691. ** Removed function: `macroexpand-1'
  2692. It is unclear how to implement `macroexpand-1' with syntax-case, though
  2693. PLT Scheme does prove that it is possible.
  2694. ** New reader macros: #' #` #, #,@
  2695. These macros translate, respectively, to `syntax', `quasisyntax',
  2696. `unsyntax', and `unsyntax-splicing'. See the R6RS for more information.
  2697. These reader macros may be overridden by `read-hash-extend'.
  2698. ** Incompatible change to #'
  2699. Guile did have a #' hash-extension, by default, which just returned the
  2700. subsequent datum: #'foo => foo. In the unlikely event that anyone
  2701. actually used this, this behavior may be reinstated via the
  2702. `read-hash-extend' mechanism.
  2703. ** `unquote' and `unquote-splicing' accept multiple expressions
  2704. As per the R6RS, these syntax operators can now accept any number of
  2705. expressions to unquote.
  2706. ** Scheme expresssions may be commented out with #;
  2707. #; comments out an entire expression. See SRFI-62 or the R6RS for more
  2708. information.
  2709. ** Prompts: Delimited, composable continuations
  2710. Guile now has prompts as part of its primitive language. See "Prompts"
  2711. in the manual, for more information.
  2712. Expressions entered in at the REPL, or from the command line, are
  2713. surrounded by a prompt with the default prompt tag.
  2714. ** `make-stack' with a tail-called procedural narrowing argument no longer
  2715. works (with compiled procedures)
  2716. It used to be the case that a captured stack could be narrowed to select
  2717. calls only up to or from a certain procedure, even if that procedure
  2718. already tail-called another procedure. This was because the debug
  2719. information from the original procedure was kept on the stack.
  2720. Now with the new compiler, the stack only contains active frames from
  2721. the current continuation. A narrow to a procedure that is not in the
  2722. stack will result in an empty stack. To fix this, narrow to a procedure
  2723. that is active in the current continuation, or narrow to a specific
  2724. number of stack frames.
  2725. ** Backtraces through compiled procedures only show procedures that are
  2726. active in the current continuation
  2727. Similarly to the previous issue, backtraces in compiled code may be
  2728. different from backtraces in interpreted code. There are no semantic
  2729. differences, however. Please mail bug-guile@gnu.org if you see any
  2730. deficiencies with Guile's backtraces.
  2731. ** `positions' reader option enabled by default
  2732. This change allows primitive-load without --auto-compile to also
  2733. propagate source information through the expander, for better errors and
  2734. to let macros know their source locations. The compiler was already
  2735. turning it on anyway.
  2736. ** New macro: `current-source-location'
  2737. The macro returns the current source location (to be documented).
  2738. ** syntax-rules and syntax-case macros now propagate source information
  2739. through to the expanded code
  2740. This should result in better backtraces.
  2741. ** The currying behavior of `define' has been removed.
  2742. Before, `(define ((f a) b) (* a b))' would translate to
  2743. (define f (lambda (a) (lambda (b) (* a b))))
  2744. Now a syntax error is signaled, as this syntax is not supported by
  2745. default. Use the `(ice-9 curried-definitions)' module to get back the
  2746. old behavior.
  2747. ** New procedure, `define!'
  2748. `define!' is a procedure that takes two arguments, a symbol and a value,
  2749. and binds the value to the symbol in the current module. It's useful to
  2750. programmatically make definitions in the current module, and is slightly
  2751. less verbose than `module-define!'.
  2752. ** All modules have names now
  2753. Before, you could have anonymous modules: modules without names. Now,
  2754. because of hygiene and macros, all modules have names. If a module was
  2755. created without a name, the first time `module-name' is called on it, a
  2756. fresh name will be lazily generated for it.
  2757. ** The module namespace is now separate from the value namespace
  2758. It was a little-known implementation detail of Guile's module system
  2759. that it was built on a single hierarchical namespace of values -- that
  2760. if there was a module named `(foo bar)', then in the module named
  2761. `(foo)' there was a binding from `bar' to the `(foo bar)' module.
  2762. This was a neat trick, but presented a number of problems. One problem
  2763. was that the bindings in a module were not apparent from the module
  2764. itself; perhaps the `(foo)' module had a private binding for `bar', and
  2765. then an external contributor defined `(foo bar)'. In the end there can
  2766. be only one binding, so one of the two will see the wrong thing, and
  2767. produce an obtuse error of unclear provenance.
  2768. Also, the public interface of a module was also bound in the value
  2769. namespace, as `%module-public-interface'. This was a hack from the early
  2770. days of Guile's modules.
  2771. Both of these warts have been fixed by the addition of fields in the
  2772. `module' data type. Access to modules and their interfaces from the
  2773. value namespace has been deprecated, and all accessors use the new
  2774. record accessors appropriately.
  2775. When Guile is built with support for deprecated code, as is the default,
  2776. the value namespace is still searched for modules and public interfaces,
  2777. and a deprecation warning is raised as appropriate.
  2778. Finally, to support lazy loading of modules as one used to be able to do
  2779. with module binder procedures, Guile now has submodule binders, called
  2780. if a given submodule is not found. See boot-9.scm for more information.
  2781. ** New procedures: module-ref-submodule, module-define-submodule,
  2782. nested-ref-module, nested-define-module!, local-ref-module,
  2783. local-define-module
  2784. These new accessors are like their bare variants, but operate on
  2785. namespaces instead of values.
  2786. ** The (app modules) module tree is officially deprecated
  2787. It used to be that one could access a module named `(foo bar)' via
  2788. `(nested-ref the-root-module '(app modules foo bar))'. The `(app
  2789. modules)' bit was a never-used and never-documented abstraction, and has
  2790. been deprecated. See the following mail for a full discussion:
  2791. http://lists.gnu.org/archive/html/guile-devel/2010-04/msg00168.html
  2792. The `%app' binding is also deprecated.
  2793. ** `module-filename' field and accessor
  2794. Modules now record the file in which they are defined. This field may be
  2795. accessed with the new `module-filename' procedure.
  2796. ** Modules load within a known environment
  2797. It takes a few procedure calls to define a module, and those procedure
  2798. calls need to be in scope. Now we ensure that the current module when
  2799. loading a module is one that has the needed bindings, instead of relying
  2800. on chance.
  2801. ** `load' is a macro (!) that resolves paths relative to source file dir
  2802. The familiar Schem `load' procedure is now a macro that captures the
  2803. name of the source file being expanded, and dispatches to the new
  2804. `load-in-vicinity'. Referencing `load' by bare name returns a closure
  2805. that embeds the current source file name.
  2806. This fix allows `load' of relative paths to be resolved with respect to
  2807. the location of the file that calls `load'.
  2808. ** Many syntax errors have different texts now
  2809. Syntax errors still throw to the `syntax-error' key, but the arguments
  2810. are often different now. Perhaps in the future, Guile will switch to
  2811. using standard SRFI-35 conditions.
  2812. ** Returning multiple values to compiled code will silently truncate the
  2813. values to the expected number
  2814. For example, the interpreter would raise an error evaluating the form,
  2815. `(+ (values 1 2) (values 3 4))', because it would see the operands as
  2816. being two compound "values" objects, to which `+' does not apply.
  2817. The compiler, on the other hand, receives multiple values on the stack,
  2818. not as a compound object. Given that it must check the number of values
  2819. anyway, if too many values are provided for a continuation, it chooses
  2820. to truncate those values, effectively evaluating `(+ 1 3)' instead.
  2821. The idea is that the semantics that the compiler implements is more
  2822. intuitive, and the use of the interpreter will fade out with time.
  2823. This behavior is allowed both by the R5RS and the R6RS.
  2824. ** Multiple values in compiled code are not represented by compound
  2825. objects
  2826. This change may manifest itself in the following situation:
  2827. (let ((val (foo))) (do-something) val)
  2828. In the interpreter, if `foo' returns multiple values, multiple values
  2829. are produced from the `let' expression. In the compiler, those values
  2830. are truncated to the first value, and that first value is returned. In
  2831. the compiler, if `foo' returns no values, an error will be raised, while
  2832. the interpreter would proceed.
  2833. Both of these behaviors are allowed by R5RS and R6RS. The compiler's
  2834. behavior is more correct, however. If you wish to preserve a potentially
  2835. multiply-valued return, you will need to set up a multiple-value
  2836. continuation, using `call-with-values'.
  2837. ** Defmacros are now implemented in terms of syntax-case.
  2838. The practical ramification of this is that the `defmacro?' predicate has
  2839. been removed, along with `defmacro-transformer', `macro-table',
  2840. `xformer-table', `assert-defmacro?!', `set-defmacro-transformer!' and
  2841. `defmacro:transformer'. This is because defmacros are simply macros. If
  2842. any of these procedures provided useful facilities to you, we encourage
  2843. you to contact the Guile developers.
  2844. ** Hygienic macros documented as the primary syntactic extension mechanism.
  2845. The macro documentation was finally fleshed out with some documentation
  2846. on `syntax-rules' and `syntax-case' macros, and other parts of the macro
  2847. expansion process. See "Macros" in the manual, for details.
  2848. ** psyntax is now the default expander
  2849. Scheme code is now expanded by default by the psyntax hygienic macro
  2850. expander. Expansion is performed completely before compilation or
  2851. interpretation.
  2852. Notably, syntax errors will be signalled before interpretation begins.
  2853. In the past, many syntax errors were only detected at runtime if the
  2854. code in question was memoized.
  2855. As part of its expansion, psyntax renames all lexically-bound
  2856. identifiers. Original identifier names are preserved and given to the
  2857. compiler, but the interpreter will see the renamed variables, e.g.,
  2858. `x432' instead of `x'.
  2859. Note that the psyntax that Guile uses is a fork, as Guile already had
  2860. modules before incompatible modules were added to psyntax -- about 10
  2861. years ago! Thus there are surely a number of bugs that have been fixed
  2862. in psyntax since then. If you find one, please notify bug-guile@gnu.org.
  2863. ** syntax-rules and syntax-case are available by default.
  2864. There is no longer any need to import the `(ice-9 syncase)' module
  2865. (which is now deprecated). The expander may be invoked directly via
  2866. `macroexpand', though it is normally searched for via the current module
  2867. transformer.
  2868. Also, the helper routines for syntax-case are available in the default
  2869. environment as well: `syntax->datum', `datum->syntax',
  2870. `bound-identifier=?', `free-identifier=?', `generate-temporaries',
  2871. `identifier?', and `syntax-violation'. See the R6RS for documentation.
  2872. ** Tail patterns in syntax-case
  2873. Guile has pulled in some more recent changes from the psyntax portable
  2874. syntax expander, to implement support for "tail patterns". Such patterns
  2875. are supported by syntax-rules and syntax-case. This allows a syntax-case
  2876. match clause to have ellipses, then a pattern at the end. For example:
  2877. (define-syntax case
  2878. (syntax-rules (else)
  2879. ((_ val match-clause ... (else e e* ...))
  2880. [...])))
  2881. Note how there is MATCH-CLAUSE, which is ellipsized, then there is a
  2882. tail pattern for the else clause. Thanks to Andreas Rottmann for the
  2883. patch, and Kent Dybvig for the code.
  2884. ** Lexical bindings introduced by hygienic macros may not be referenced
  2885. by nonhygienic macros.
  2886. If a lexical binding is introduced by a hygienic macro, it may not be
  2887. referenced by a nonhygienic macro. For example, this works:
  2888. (let ()
  2889. (define-macro (bind-x val body)
  2890. `(let ((x ,val)) ,body))
  2891. (define-macro (ref x)
  2892. x)
  2893. (bind-x 10 (ref x)))
  2894. But this does not:
  2895. (let ()
  2896. (define-syntax bind-x
  2897. (syntax-rules ()
  2898. ((_ val body) (let ((x val)) body))))
  2899. (define-macro (ref x)
  2900. x)
  2901. (bind-x 10 (ref x)))
  2902. It is not normal to run into this situation with existing code. However,
  2903. if you have defmacros that expand to hygienic macros, it is possible to
  2904. run into situations like this. For example, if you have a defmacro that
  2905. generates a `while' expression, the `break' bound by the `while' may not
  2906. be visible within other parts of your defmacro. The solution is to port
  2907. from defmacros to syntax-rules or syntax-case.
  2908. ** Macros may no longer be referenced as first-class values.
  2909. In the past, you could evaluate e.g. `if', and get its macro value. Now,
  2910. expanding this form raises a syntax error.
  2911. Macros still /exist/ as first-class values, but they must be
  2912. /referenced/ via the module system, e.g. `(module-ref (current-module)
  2913. 'if)'.
  2914. ** Macros may now have docstrings.
  2915. `object-documentation' from `(ice-9 documentation)' may be used to
  2916. retrieve the docstring, once you have a macro value -- but see the above
  2917. note about first-class macros. Docstrings are associated with the syntax
  2918. transformer procedures.
  2919. ** `case-lambda' is now available in the default environment.
  2920. The binding in the default environment is equivalent to the one from the
  2921. `(srfi srfi-16)' module. Use the srfi-16 module explicitly if you wish
  2922. to maintain compatibility with Guile 1.8 and earlier.
  2923. ** Procedures may now have more than one arity.
  2924. This can be the case, for example, in case-lambda procedures. The
  2925. arities of compiled procedures may be accessed via procedures from the
  2926. `(system vm program)' module; see "Compiled Procedures", "Optional
  2927. Arguments", and "Case-lambda" in the manual.
  2928. ** Deprecate arity access via (procedure-properties proc 'arity)
  2929. Instead of accessing a procedure's arity as a property, use the new
  2930. `procedure-minimum-arity' function, which gives the most permissive
  2931. arity that the function has, in the same format as the old arity
  2932. accessor.
  2933. ** `lambda*' and `define*' are now available in the default environment
  2934. As with `case-lambda', `(ice-9 optargs)' continues to be supported, for
  2935. compatibility purposes. No semantic change has been made (we hope).
  2936. Optional and keyword arguments now dispatch via special VM operations,
  2937. without the need to cons rest arguments, making them very fast.
  2938. ** New syntax: define-once
  2939. `define-once' is like Lisp's `defvar': it creates a toplevel binding,
  2940. but only if one does not exist already.
  2941. ** New function, `truncated-print', with `format' support
  2942. `(ice-9 pretty-print)' now exports `truncated-print', a printer that
  2943. will ensure that the output stays within a certain width, truncating the
  2944. output in what is hopefully an intelligent manner. See the manual for
  2945. more details.
  2946. There is a new `format' specifier, `~@y', for doing a truncated
  2947. print (as opposed to `~y', which does a pretty-print). See the `format'
  2948. documentation for more details.
  2949. ** Better pretty-printing
  2950. Indentation recognizes more special forms, like `syntax-case', and read
  2951. macros like `quote' are printed better.
  2952. ** Passing a number as the destination of `format' is deprecated
  2953. The `format' procedure in `(ice-9 format)' now emits a deprecation
  2954. warning if a number is passed as its first argument.
  2955. Also, it used to be that you could omit passing a port to `format', in
  2956. some cases. This still works, but has been formally deprecated.
  2957. ** SRFI-4 vectors reimplemented in terms of R6RS bytevectors
  2958. Guile now implements SRFI-4 vectors using bytevectors. Often when you
  2959. have a numeric vector, you end up wanting to write its bytes somewhere,
  2960. or have access to the underlying bytes, or read in bytes from somewhere
  2961. else. Bytevectors are very good at this sort of thing. But the SRFI-4
  2962. APIs are nicer to use when doing number-crunching, because they are
  2963. addressed by element and not by byte.
  2964. So as a compromise, Guile allows all bytevector functions to operate on
  2965. numeric vectors. They address the underlying bytes in the native
  2966. endianness, as one would expect.
  2967. Following the same reasoning, that it's just bytes underneath, Guile
  2968. also allows uniform vectors of a given type to be accessed as if they
  2969. were of any type. One can fill a u32vector, and access its elements with
  2970. u8vector-ref. One can use f64vector-ref on bytevectors. It's all the
  2971. same to Guile.
  2972. In this way, uniform numeric vectors may be written to and read from
  2973. input/output ports using the procedures that operate on bytevectors.
  2974. Calls to SRFI-4 accessors (ref and set functions) from Scheme are now
  2975. inlined to the VM instructions for bytevector access.
  2976. See "SRFI-4" in the manual, for more information.
  2977. ** Nonstandard SRFI-4 procedures now available from `(srfi srfi-4 gnu)'
  2978. Guile's `(srfi srfi-4)' now only exports those srfi-4 procedures that
  2979. are part of the standard. Complex uniform vectors and the
  2980. `any->FOOvector' family are now available only from `(srfi srfi-4 gnu)'.
  2981. Guile's default environment imports `(srfi srfi-4)', and probably should
  2982. import `(srfi srfi-4 gnu)' as well.
  2983. See "SRFI-4 Extensions" in the manual, for more information.
  2984. ** New syntax: include-from-path.
  2985. `include-from-path' is like `include', except it looks for its file in
  2986. the load path. It can be used to compile other files into a file.
  2987. ** New syntax: quasisyntax.
  2988. `quasisyntax' is to `syntax' as `quasiquote' is to `quote'. See the R6RS
  2989. documentation for more information. Thanks to Andre van Tonder for the
  2990. implementation.
  2991. ** `*unspecified*' is identifier syntax
  2992. `*unspecified*' is no longer a variable, so it is optimized properly by
  2993. the compiler, and is not `set!'-able.
  2994. ** Changes and bugfixes in numerics code
  2995. *** Added six new sets of fast quotient and remainder operators
  2996. Added six new sets of fast quotient and remainder operator pairs with
  2997. different semantics than the R5RS operators. They support not only
  2998. integers, but all reals, including exact rationals and inexact
  2999. floating point numbers.
  3000. These procedures accept two real numbers N and D, where the divisor D
  3001. must be non-zero. Each set of operators computes an integer quotient
  3002. Q and a real remainder R such that N = Q*D + R and |R| < |D|. They
  3003. differ only in how N/D is rounded to produce Q.
  3004. `euclidean-quotient' returns the integer Q and `euclidean-remainder'
  3005. returns the real R such that N = Q*D + R and 0 <= R < |D|. `euclidean/'
  3006. returns both Q and R, and is more efficient than computing each
  3007. separately. Note that when D > 0, `euclidean-quotient' returns
  3008. floor(N/D), and when D < 0 it returns ceiling(N/D).
  3009. `centered-quotient', `centered-remainder', and `centered/' are similar
  3010. except that the range of remainders is -abs(D/2) <= R < abs(D/2), and
  3011. `centered-quotient' rounds N/D to the nearest integer. Note that these
  3012. operators are equivalent to the R6RS integer division operators `div',
  3013. `mod', `div-and-mod', `div0', `mod0', and `div0-and-mod0'.
  3014. `floor-quotient' and `floor-remainder' compute Q and R, respectively,
  3015. where Q has been rounded toward negative infinity. `floor/' returns
  3016. both Q and R, and is more efficient than computing each separately.
  3017. Note that when applied to integers, `floor-remainder' is equivalent to
  3018. the R5RS integer-only `modulo' operator. `ceiling-quotient',
  3019. `ceiling-remainder', and `ceiling/' are similar except that Q is
  3020. rounded toward positive infinity.
  3021. For `truncate-quotient', `truncate-remainder', and `truncate/', Q is
  3022. rounded toward zero. Note that when applied to integers,
  3023. `truncate-quotient' and `truncate-remainder' are equivalent to the
  3024. R5RS integer-only operators `quotient' and `remainder'.
  3025. For `round-quotient', `round-remainder', and `round/', Q is rounded to
  3026. the nearest integer, with ties going to the nearest even integer.
  3027. *** Complex number changes
  3028. Guile is now able to represent non-real complex numbers whose
  3029. imaginary part is an _inexact_ zero (0.0 or -0.0), per R6RS.
  3030. Previously, such numbers were immediately changed into inexact reals.
  3031. (real? 0.0+0.0i) now returns #f, per R6RS, although (zero? 0.0+0.0i)
  3032. still returns #t, per R6RS. (= 0 0.0+0.0i) and (= 0.0 0.0+0.0i) are
  3033. #t, but the same comparisons using `eqv?' or `equal?' are #f.
  3034. Like other non-real numbers, these complex numbers with inexact zero
  3035. imaginary part will raise exceptions is passed to procedures requiring
  3036. reals, such as `<', `>', `<=', `>=', `min', `max', `positive?',
  3037. `negative?', `inf?', `nan?', `finite?', etc.
  3038. **** `make-rectangular' changes
  3039. scm_make_rectangular `make-rectangular' now returns a real number only
  3040. if the imaginary part is an _exact_ 0. Previously, it would return a
  3041. real number if the imaginary part was an inexact zero.
  3042. scm_c_make_rectangular now always returns a non-real complex number,
  3043. even if the imaginary part is zero. Previously, it would return a
  3044. real number if the imaginary part was zero.
  3045. **** `make-polar' changes
  3046. scm_make_polar `make-polar' now returns a real number only if the
  3047. angle or magnitude is an _exact_ 0. If the magnitude is an exact 0,
  3048. it now returns an exact 0. Previously, it would return a real
  3049. number if the imaginary part was an inexact zero.
  3050. scm_c_make_polar now always returns a non-real complex number, even if
  3051. the imaginary part is 0.0. Previously, it would return a real number
  3052. if the imaginary part was 0.0.
  3053. **** `imag-part' changes
  3054. scm_imag_part `imag-part' now returns an exact 0 if applied to an
  3055. inexact real number. Previously it returned an inexact zero in this
  3056. case.
  3057. *** `eqv?' and `equal?' now compare numbers equivalently
  3058. scm_equal_p `equal?' now behaves equivalently to scm_eqv_p `eqv?' for
  3059. numeric values, per R5RS. Previously, equal? worked differently,
  3060. e.g. `(equal? 0.0 -0.0)' returned #t but `(eqv? 0.0 -0.0)' returned #f,
  3061. and `(equal? +nan.0 +nan.0)' returned #f but `(eqv? +nan.0 +nan.0)'
  3062. returned #t.
  3063. *** `(equal? +nan.0 +nan.0)' now returns #t
  3064. Previously, `(equal? +nan.0 +nan.0)' returned #f, although
  3065. `(let ((x +nan.0)) (equal? x x))' and `(eqv? +nan.0 +nan.0)'
  3066. both returned #t. R5RS requires that `equal?' behave like
  3067. `eqv?' when comparing numbers.
  3068. *** Change in handling products `*' involving exact 0
  3069. scm_product `*' now handles exact 0 differently. A product containing
  3070. an exact 0 now returns an exact 0 if and only if the other arguments
  3071. are all exact. An inexact zero is returned if and only if the other
  3072. arguments are all finite but not all exact. If an infinite or NaN
  3073. value is present, a NaN value is returned. Previously, any product
  3074. containing an exact 0 yielded an exact 0, regardless of the other
  3075. arguments.
  3076. *** `expt' and `integer-expt' changes when the base is 0
  3077. While `(expt 0 0)' is still 1, and `(expt 0 N)' for N > 0 is still
  3078. zero, `(expt 0 N)' for N < 0 is now a NaN value, and likewise for
  3079. integer-expt. This is more correct, and conforming to R6RS, but seems
  3080. to be incompatible with R5RS, which would return 0 for all non-zero
  3081. values of N.
  3082. *** `expt' and `integer-expt' are more generic, less strict
  3083. When raising to an exact non-negative integer exponent, `expt' and
  3084. `integer-expt' are now able to exponentiate any object that can be
  3085. multiplied using `*'. They can also raise an object to an exact
  3086. negative integer power if its reciprocal can be taken using `/'.
  3087. In order to allow this, the type of the first argument is no longer
  3088. checked when raising to an exact integer power. If the exponent is 0
  3089. or 1, the first parameter is not manipulated at all, and need not
  3090. even support multiplication.
  3091. *** Infinities are no longer integers, nor rationals
  3092. scm_integer_p `integer?' and scm_rational_p `rational?' now return #f
  3093. for infinities, per R6RS. Previously they returned #t for real
  3094. infinities. The real infinities and NaNs are still considered real by
  3095. scm_real `real?' however, per R6RS.
  3096. *** NaNs are no longer rationals
  3097. scm_rational_p `rational?' now returns #f for NaN values, per R6RS.
  3098. Previously it returned #t for real NaN values. They are still
  3099. considered real by scm_real `real?' however, per R6RS.
  3100. *** `inf?' and `nan?' now throw exceptions for non-reals
  3101. The domain of `inf?' and `nan?' is the real numbers. Guile now signals
  3102. an error when a non-real number or non-number is passed to these
  3103. procedures. (Note that NaNs _are_ considered numbers by scheme, despite
  3104. their name).
  3105. *** `rationalize' bugfixes and changes
  3106. Fixed bugs in scm_rationalize `rationalize'. Previously, it returned
  3107. exact integers unmodified, although that was incorrect if the epsilon
  3108. was at least 1 or inexact, e.g. (rationalize 4 1) should return 3 per
  3109. R5RS and R6RS, but previously it returned 4. It also now handles
  3110. cases involving infinities and NaNs properly, per R6RS.
  3111. *** Trigonometric functions now return exact numbers in some cases
  3112. scm_sin `sin', scm_cos `cos', scm_tan `tan', scm_asin `asin', scm_acos
  3113. `acos', scm_atan `atan', scm_sinh `sinh', scm_cosh `cosh', scm_tanh
  3114. `tanh', scm_sys_asinh `asinh', scm_sys_acosh `acosh', and
  3115. scm_sys_atanh `atanh' now return exact results in some cases.
  3116. *** New procedure: `finite?'
  3117. Add scm_finite_p `finite?' from R6RS to guile core, which returns #t
  3118. if and only if its argument is neither infinite nor a NaN. Note that
  3119. this is not the same as (not (inf? x)) or (not (infinite? x)), since
  3120. NaNs are neither finite nor infinite.
  3121. *** Improved exactness handling for complex number parsing
  3122. When parsing non-real complex numbers, exactness specifiers are now
  3123. applied to each component, as is done in PLT Scheme. For complex
  3124. numbers written in rectangular form, exactness specifiers are applied
  3125. to the real and imaginary parts before calling scm_make_rectangular.
  3126. For complex numbers written in polar form, exactness specifiers are
  3127. applied to the magnitude and angle before calling scm_make_polar.
  3128. Previously, exactness specifiers were applied to the number as a whole
  3129. _after_ calling scm_make_rectangular or scm_make_polar.
  3130. For example, (string->number "#i5.0+0i") now does the equivalent of:
  3131. (make-rectangular (exact->inexact 5.0) (exact->inexact 0))
  3132. which yields 5.0+0.0i. Previously it did the equivalent of:
  3133. (exact->inexact (make-rectangular 5.0 0))
  3134. which yielded 5.0.
  3135. ** Unicode characters
  3136. Unicode characters may be entered in octal format via e.g. `#\454', or
  3137. created via (integer->char 300). A hex external representation will
  3138. probably be introduced at some point.
  3139. ** Unicode strings
  3140. Internally, strings are now represented either in the `latin-1'
  3141. encoding, one byte per character, or in UTF-32, with four bytes per
  3142. character. Strings manage their own allocation, switching if needed.
  3143. Extended characters may be written in a literal string using the
  3144. hexadecimal escapes `\xXX', `\uXXXX', or `\UXXXXXX', for 8-bit, 16-bit,
  3145. or 24-bit codepoints, respectively, or entered directly in the native
  3146. encoding of the port on which the string is read.
  3147. ** Unicode symbols
  3148. One may now use U+03BB (GREEK SMALL LETTER LAMBDA) as an identifier.
  3149. ** Support for non-ASCII source code files
  3150. The default reader now handles source code files for some of the
  3151. non-ASCII character encodings, such as UTF-8. A non-ASCII source file
  3152. should have an encoding declaration near the top of the file. Also,
  3153. there is a new function, `file-encoding', that scans a port for a coding
  3154. declaration. See the section of the manual entitled, "Character Encoding
  3155. of Source Files".
  3156. The pre-1.9.3 reader handled 8-bit clean but otherwise unspecified source
  3157. code. This use is now discouraged. Binary input and output is
  3158. currently supported by opening ports in the ISO-8859-1 locale.
  3159. ** Source files default to UTF-8.
  3160. If source files do not specify their encoding via a `coding:' block,
  3161. the default encoding is UTF-8, instead of being taken from the current
  3162. locale.
  3163. ** Interactive Guile installs the current locale.
  3164. Instead of leaving the user in the "C" locale, running the Guile REPL
  3165. installs the current locale. [FIXME xref?]
  3166. ** Support for locale transcoding when reading from and writing to ports
  3167. Ports now have an associated character encoding, and port read and write
  3168. operations do conversion to and from locales automatically. Ports also
  3169. have an associated strategy for how to deal with locale conversion
  3170. failures.
  3171. See the documentation in the manual for the four new support functions,
  3172. `set-port-encoding!', `port-encoding', `set-port-conversion-strategy!',
  3173. and `port-conversion-strategy'.
  3174. ** String and SRFI-13 functions can operate on Unicode strings
  3175. ** Unicode support for SRFI-14 character sets
  3176. The default character sets are no longer locale dependent and contain
  3177. characters from the whole Unicode range. There is a new predefined
  3178. character set, `char-set:designated', which contains all assigned
  3179. Unicode characters. There is a new debugging function, `%char-set-dump'.
  3180. ** Character functions operate on Unicode characters
  3181. `char-upcase' and `char-downcase' use default Unicode casing rules.
  3182. Character comparisons such as `char<?' and `char-ci<?' now sort based on
  3183. Unicode code points.
  3184. ** Global variables `scm_charnames' and `scm_charnums' are removed
  3185. These variables contained the names of control characters and were
  3186. used when writing characters. While these were global, they were
  3187. never intended to be public API. They have been replaced with private
  3188. functions.
  3189. ** EBCDIC support is removed
  3190. There was an EBCDIC compile flag that altered some of the character
  3191. processing. It appeared that full EBCDIC support was never completed
  3192. and was unmaintained.
  3193. ** Compile-time warnings
  3194. Guile can warn about potentially unbound free variables. Pass the
  3195. -Wunbound-variable on the `guile-tools compile' command line, or add
  3196. `#:warnings '(unbound-variable)' to your `compile' or `compile-file'
  3197. invocation. Warnings are also enabled by default for expressions entered
  3198. at the REPL.
  3199. Guile can also warn when you pass the wrong number of arguments to a
  3200. procedure, with -Warity-mismatch, or `arity-mismatch' in the
  3201. `#:warnings' as above.
  3202. Other warnings include `-Wunused-variable' and `-Wunused-toplevel', to
  3203. warn about unused local or global (top-level) variables, and `-Wformat',
  3204. to check for various errors related to the `format' procedure.
  3205. ** A new `memoize-symbol' evaluator trap has been added.
  3206. This trap can be used for efficiently implementing a Scheme code
  3207. coverage.
  3208. ** Duplicate bindings among used modules are resolved lazily.
  3209. This slightly improves program startup times.
  3210. ** New thread cancellation and thread cleanup API
  3211. See `cancel-thread', `set-thread-cleanup!', and `thread-cleanup'.
  3212. ** New threads are in `(guile-user)' by default, not `(guile)'
  3213. It used to be that a new thread entering Guile would do so in the
  3214. `(guile)' module, unless this was the first time Guile was initialized,
  3215. in which case it was `(guile-user)'. This has been fixed to have all
  3216. new threads unknown to Guile default to `(guile-user)'.
  3217. ** New helpers: `print-exception', `set-exception-printer!'
  3218. These functions implement an extensible exception printer. Guile
  3219. registers printers for all of the exceptions it throws. Users may add
  3220. their own printers. There is also `scm_print_exception', for use by C
  3221. programs. Pleasantly, this allows SRFI-35 and R6RS exceptions to be
  3222. printed appropriately.
  3223. ** GOOPS dispatch in scheme
  3224. As an implementation detail, GOOPS dispatch is no longer implemented by
  3225. special evaluator bytecodes, but rather directly via a Scheme function
  3226. associated with an applicable struct. There is some VM support for the
  3227. underlying primitives, like `class-of'.
  3228. This change will in the future allow users to customize generic function
  3229. dispatch without incurring a performance penalty, and allow us to
  3230. implement method combinations.
  3231. ** Applicable struct support
  3232. One may now make structs from Scheme that may be applied as procedures.
  3233. To do so, make a struct whose vtable is `<applicable-struct-vtable>'.
  3234. That struct will be the vtable of your applicable structs; instances of
  3235. that new struct are assumed to have the procedure in their first slot.
  3236. `<applicable-struct-vtable>' is like Common Lisp's
  3237. `funcallable-standard-class'. Likewise there is
  3238. `<applicable-struct-with-setter-vtable>', which looks for the setter in
  3239. the second slot. This needs to be better documented.
  3240. ** GOOPS cleanups.
  3241. GOOPS had a number of concepts that were relevant to the days of Tcl,
  3242. but not any more: operators and entities, mainly. These objects were
  3243. never documented, and it is unlikely that they were ever used. Operators
  3244. were a kind of generic specific to the Tcl support. Entities were
  3245. replaced by applicable structs, mentioned above.
  3246. ** New struct slot allocation: "hidden"
  3247. A hidden slot is readable and writable, but will not be initialized by a
  3248. call to make-struct. For example in your layout you would say "ph"
  3249. instead of "pw". Hidden slots are useful for adding new slots to a
  3250. vtable without breaking existing invocations to make-struct.
  3251. ** eqv? not a generic
  3252. One used to be able to extend `eqv?' as a primitive-generic, but no
  3253. more. Because `eqv?' is in the expansion of `case' (via `memv'), which
  3254. should be able to compile to static dispatch tables, it doesn't make
  3255. sense to allow extensions that would subvert this optimization.
  3256. ** `inet-ntop' and `inet-pton' are always available.
  3257. Guile now use a portable implementation of `inet_pton'/`inet_ntop', so
  3258. there is no more need to use `inet-aton'/`inet-ntoa'. The latter
  3259. functions are deprecated.
  3260. ** `getopt-long' parsing errors throw to `quit', not `misc-error'
  3261. This change should inhibit backtraces on argument parsing errors.
  3262. `getopt-long' has been modified to print out the error that it throws
  3263. itself.
  3264. ** New primitive: `tmpfile'.
  3265. See "File System" in the manual.
  3266. ** Random generator state may be serialized to a datum
  3267. `random-state->datum' will serialize a random state to a datum, which
  3268. may be written out, read back in later, and revivified using
  3269. `datum->random-state'. See "Random" in the manual, for more details.
  3270. ** Fix random number generator on 64-bit platforms
  3271. There was a nasty bug on 64-bit platforms in which asking for a random
  3272. integer with a range between 2**32 and 2**64 caused a segfault. After
  3273. many embarrassing iterations, this was fixed.
  3274. ** Fast bit operations.
  3275. The bit-twiddling operations `ash', `logand', `logior', and `logxor' now
  3276. have dedicated bytecodes. Guile is not just for symbolic computation,
  3277. it's for number crunching too.
  3278. ** Faster SRFI-9 record access
  3279. SRFI-9 records are now implemented directly on top of Guile's structs,
  3280. and their accessors are defined in such a way that normal call-sites
  3281. inline to special VM opcodes, while still allowing for the general case
  3282. (e.g. passing a record accessor to `apply').
  3283. ** R6RS block comment support
  3284. Guile now supports R6RS nested block comments. The start of a comment is
  3285. marked with `#|', and the end with `|#'.
  3286. ** `guile-2' cond-expand feature
  3287. To test if your code is running under Guile 2.0 (or its alpha releases),
  3288. test for the `guile-2' cond-expand feature. Like this:
  3289. (cond-expand (guile-2 (eval-when (compile)
  3290. ;; This must be evaluated at compile time.
  3291. (fluid-set! current-reader my-reader)))
  3292. (guile
  3293. ;; Earlier versions of Guile do not have a
  3294. ;; separate compilation phase.
  3295. (fluid-set! current-reader my-reader)))
  3296. ** New global variables: %load-compiled-path, %load-compiled-extensions
  3297. These are analogous to %load-path and %load-extensions.
  3298. ** New fluid: `%file-port-name-canonicalization'
  3299. This fluid parameterizes the file names that are associated with file
  3300. ports. If %file-port-name-canonicalization is 'absolute, then file names
  3301. are canonicalized to be absolute paths. If it is 'relative, then the
  3302. name is canonicalized, but any prefix corresponding to a member of
  3303. `%load-path' is stripped off. Otherwise the names are passed through
  3304. unchanged.
  3305. In addition, the `compile-file' and `compile-and-load' procedures bind
  3306. %file-port-name-canonicalization to their `#:canonicalization' keyword
  3307. argument, which defaults to 'relative. In this way, one might compile
  3308. "../module/ice-9/boot-9.scm", but the path that gets residualized into
  3309. the .go is "ice-9/boot-9.scm".
  3310. ** New procedure, `make-promise'
  3311. `(make-promise (lambda () foo))' is equivalent to `(delay foo)'.
  3312. ** `defined?' may accept a module as its second argument
  3313. Previously it only accepted internal structures from the evaluator.
  3314. ** New entry into %guile-build-info: `ccachedir'
  3315. ** Fix bug in `module-bound?'.
  3316. `module-bound?' was returning true if a module did have a local
  3317. variable, but one that was unbound, but another imported module bound
  3318. the variable. This was an error, and was fixed.
  3319. ** `(ice-9 syncase)' has been deprecated.
  3320. As syntax-case is available by default, importing `(ice-9 syncase)' has
  3321. no effect, and will trigger a deprecation warning.
  3322. ** New readline history functions
  3323. The (ice-9 readline) module now provides add-history, read-history,
  3324. write-history and clear-history, which wrap the corresponding GNU
  3325. History library functions.
  3326. ** Removed deprecated uniform array procedures:
  3327. dimensions->uniform-array, list->uniform-array, array-prototype
  3328. Instead, use make-typed-array, list->typed-array, or array-type,
  3329. respectively.
  3330. ** Deprecate the old `scm-style-repl'
  3331. The following bindings from boot-9 are now found in `(ice-9
  3332. scm-style-repl)': `scm-style-repl', `error-catching-loop',
  3333. `error-catching-repl', `bad-throw', `scm-repl-silent'
  3334. `assert-repl-silence', `repl-print-unspecified',
  3335. `assert-repl-print-unspecified', `scm-repl-verbose',
  3336. `assert-repl-verbosity', `scm-repl-prompt', `set-repl-prompt!', `repl',
  3337. `default-pre-unwind-handler', `handle-system-error',
  3338. The following bindings have been deprecated, with no replacement:
  3339. `pre-unwind-handler-dispatch'.
  3340. The following bindings have been totally removed:
  3341. `before-signal-stack'.
  3342. Deprecated forwarding shims have been installed so that users that
  3343. expect these bindings in the main namespace will still work, but receive
  3344. a deprecation warning.
  3345. ** `set-batch-mode?!' replaced by `ensure-batch-mode!'
  3346. "Batch mode" is a flag used to tell a program that it is not running
  3347. interactively. One usually turns it on after a fork. It may not be
  3348. turned off. `ensure-batch-mode!' deprecates the old `set-batch-mode?!',
  3349. because it is a better interface, as it can only turn on batch mode, not
  3350. turn it off.
  3351. ** Deprecate `save-stack', `the-last-stack'
  3352. It used to be that the way to debug programs in Guile was to capture the
  3353. stack at the time of error, drop back to the REPL, then debug that
  3354. stack. But this approach didn't compose, was tricky to get right in the
  3355. presence of threads, and was not very powerful.
  3356. So `save-stack', `stack-saved?', and `the-last-stack' have been moved to
  3357. `(ice-9 save-stack)', with deprecated bindings left in the root module.
  3358. ** `top-repl' has its own module
  3359. The `top-repl' binding, called with Guile is run interactively, is now
  3360. is its own module, `(ice-9 top-repl)'. A deprecated forwarding shim was
  3361. left in the default environment.
  3362. ** `display-error' takes a frame
  3363. The `display-error' / `scm_display_error' helper now takes a frame as an
  3364. argument instead of a stack. Stacks are still supported in deprecated
  3365. builds. Additionally, `display-error' will again source location
  3366. information for the error.
  3367. ** No more `(ice-9 debug)'
  3368. This module had some debugging helpers that are no longer applicable to
  3369. the current debugging model. Importing this module will produce a
  3370. deprecation warning. Users should contact bug-guile for support.
  3371. ** Remove obsolete debug-options
  3372. Removed `breakpoints', `trace', `procnames', `indent', `frames',
  3373. `maxdepth', and `debug' debug-options.
  3374. ** `backtrace' debug option on by default
  3375. Given that Guile 2.0 can always give you a backtrace, backtraces are now
  3376. on by default.
  3377. ** `turn-on-debugging' deprecated
  3378. ** Remove obsolete print-options
  3379. The `source' and `closure-hook' print options are obsolete, and have
  3380. been removed.
  3381. ** Remove obsolete read-options
  3382. The "elisp-strings" and "elisp-vectors" read options were unused and
  3383. obsolete, so they have been removed.
  3384. ** Remove eval-options and trap-options
  3385. Eval-options and trap-options are obsolete with the new VM and
  3386. evaluator.
  3387. ** Remove (ice-9 debugger) and (ice-9 debugging)
  3388. See "Traps" and "Interactive Debugging" in the manual, for information
  3389. on their replacements.
  3390. ** Remove the GDS Emacs integration
  3391. See "Using Guile in Emacs" in the manual, for info on how we think you
  3392. should use Guile with Emacs.
  3393. ** Deprecated: `lazy-catch'
  3394. `lazy-catch' was a form that captured the stack at the point of a
  3395. `throw', but the dynamic state at the point of the `catch'. It was a bit
  3396. crazy. Please change to use `catch', possibly with a throw-handler, or
  3397. `with-throw-handler'.
  3398. ** Deprecated: primitive properties
  3399. The `primitive-make-property', `primitive-property-set!',
  3400. `primitive-property-ref', and `primitive-property-del!' procedures were
  3401. crufty and only used to implement object properties, which has a new,
  3402. threadsafe implementation. Use object properties or weak hash tables
  3403. instead.
  3404. ** Deprecated `@bind' syntax
  3405. `@bind' was part of an older implementation of the Emacs Lisp language,
  3406. and is no longer used.
  3407. ** Miscellaneous other deprecations
  3408. `cuserid' has been deprecated, as it only returns 8 bytes of a user's
  3409. login. Use `(passwd:name (getpwuid (geteuid)))' instead.
  3410. Additionally, the procedures `apply-to-args', `has-suffix?', `scheme-file-suffix'
  3411. `get-option', `for-next-option', `display-usage-report',
  3412. `transform-usage-lambda', `collect', and `set-batch-mode?!' have all
  3413. been deprecated.
  3414. ** Add support for unbound fluids
  3415. See `make-unbound-fluid', `fluid-unset!', and `fluid-bound?' in the
  3416. manual.
  3417. ** Add `variable-unset!'
  3418. See "Variables" in the manual, for more details.
  3419. ** Last but not least, the `λ' macro can be used in lieu of `lambda'
  3420. * Changes to the C interface
  3421. ** Guile now uses libgc, the Boehm-Demers-Weiser garbage collector
  3422. The semantics of `scm_gc_malloc ()' have been changed, in a
  3423. backward-compatible way. A new allocation routine,
  3424. `scm_gc_malloc_pointerless ()', was added.
  3425. Libgc is a conservative GC, which we hope will make interaction with C
  3426. code easier and less error-prone.
  3427. ** New procedures: `scm_to_stringn', `scm_from_stringn'
  3428. ** New procedures: scm_{to,from}_{utf8,latin1}_symbol{n,}
  3429. ** New procedures: scm_{to,from}_{utf8,utf32,latin1}_string{n,}
  3430. These new procedures convert to and from string representations in
  3431. particular encodings.
  3432. Users should continue to use locale encoding for user input, user
  3433. output, or interacting with the C library.
  3434. Use the Latin-1 functions for ASCII, and for literals in source code.
  3435. Use UTF-8 functions for interaction with modern libraries which deal in
  3436. UTF-8, and UTF-32 for interaction with utf32-using libraries.
  3437. Otherwise, use scm_to_stringn or scm_from_stringn with a specific
  3438. encoding.
  3439. ** New type definitions for `scm_t_intptr' and friends.
  3440. `SCM_T_UINTPTR_MAX', `SCM_T_INTPTR_MIN', `SCM_T_INTPTR_MAX',
  3441. `SIZEOF_SCM_T_BITS', `scm_t_intptr' and `scm_t_uintptr' are now
  3442. available to C. Have fun!
  3443. ** The GH interface (deprecated in version 1.6, 2001) was removed.
  3444. ** Internal `scm_i_' functions now have "hidden" linkage with GCC/ELF
  3445. This makes these internal functions technically not callable from
  3446. application code.
  3447. ** Functions for handling `scm_option' now no longer require an argument
  3448. indicating length of the `scm_t_option' array.
  3449. ** Procedures-with-setters are now implemented using applicable structs
  3450. From a user's perspective this doesn't mean very much. But if, for some
  3451. odd reason, you used the SCM_PROCEDURE_WITH_SETTER_P, SCM_PROCEDURE, or
  3452. SCM_SETTER macros, know that they're deprecated now. Also, scm_tc7_pws
  3453. is gone.
  3454. ** Remove old evaluator closures
  3455. There used to be ranges of typecodes allocated to interpreted data
  3456. structures, but that it no longer the case, given that interpreted
  3457. procedure are now just regular VM closures. As a result, there is a
  3458. newly free tc3, and a number of removed macros. See the ChangeLog for
  3459. details.
  3460. ** Primitive procedures are now VM trampoline procedures
  3461. It used to be that there were something like 12 different typecodes
  3462. allocated to primitive procedures, each with its own calling convention.
  3463. Now there is only one, the gsubr. This may affect user code if you were
  3464. defining a procedure using scm_c_make_subr rather scm_c_make_gsubr. The
  3465. solution is to switch to use scm_c_make_gsubr. This solution works well
  3466. both with the old 1.8 and with the current 1.9 branch.
  3467. Guile's old evaluator used to have special cases for applying "gsubrs",
  3468. primitive procedures with specified numbers of required, optional, and
  3469. rest arguments. Now, however, Guile represents gsubrs as normal VM
  3470. procedures, with appropriate bytecode to parse out the correct number of
  3471. arguments, including optional and rest arguments, and then with a
  3472. special bytecode to apply the gsubr.
  3473. This allows primitive procedures to appear on the VM stack, allowing
  3474. them to be accurately counted in profiles. Also they now have more
  3475. debugging information attached to them -- their number of arguments, for
  3476. example. In addition, the VM can completely inline the application
  3477. mechanics, allowing for faster primitive calls.
  3478. However there are some changes on the C level. There is no more
  3479. `scm_tc7_gsubr' or `scm_tcs_subrs' typecode for primitive procedures, as
  3480. they are just VM procedures. Likewise the macros `SCM_GSUBR_TYPE',
  3481. `SCM_GSUBR_MAKTYPE', `SCM_GSUBR_REQ', `SCM_GSUBR_OPT', and
  3482. `SCM_GSUBR_REST' are gone, as are `SCM_SUBR_META_INFO', `SCM_SUBR_PROPS'
  3483. `SCM_SET_SUBR_GENERIC_LOC', and `SCM_SUBR_ARITY_TO_TYPE'.
  3484. Perhaps more significantly, `scm_c_make_subr',
  3485. `scm_c_make_subr_with_generic', `scm_c_define_subr', and
  3486. `scm_c_define_subr_with_generic'. They all operated on subr typecodes,
  3487. and there are no more subr typecodes. Use the scm_c_make_gsubr family
  3488. instead.
  3489. Normal users of gsubrs should not be affected, though, as the
  3490. scm_c_make_gsubr family still is the correct way to create primitive
  3491. procedures.
  3492. ** Remove deprecated array C interfaces
  3493. Removed the deprecated array functions `scm_i_arrayp',
  3494. `scm_i_array_ndim', `scm_i_array_mem', `scm_i_array_v',
  3495. `scm_i_array_base', `scm_i_array_dims', and the deprecated macros
  3496. `SCM_ARRAYP', `SCM_ARRAY_NDIM', `SCM_ARRAY_CONTP', `SCM_ARRAY_MEM',
  3497. `SCM_ARRAY_V', `SCM_ARRAY_BASE', and `SCM_ARRAY_DIMS'.
  3498. ** Remove unused snarf macros
  3499. `SCM_DEFINE1', `SCM_PRIMITIVE_GENERIC_1', `SCM_PROC1, and `SCM_GPROC1'
  3500. are no more. Use SCM_DEFINE or SCM_PRIMITIVE_GENERIC instead.
  3501. ** New functions: `scm_call_n', `scm_c_run_hookn'
  3502. `scm_call_n' applies to apply a function to an array of arguments.
  3503. `scm_c_run_hookn' runs a hook with an array of arguments.
  3504. ** Some SMOB types changed to have static typecodes
  3505. Fluids, dynamic states, and hash tables used to be SMOB objects, but now
  3506. they have statically allocated tc7 typecodes.
  3507. ** Preparations for changing SMOB representation
  3508. If things go right, we'll be changing the SMOB representation soon. To
  3509. that end, we did a lot of cleanups to calls to e.g. SCM_CELL_WORD_2(x) when
  3510. the code meant SCM_SMOB_DATA_2(x); user code will need similar changes
  3511. in the future. Code accessing SMOBs using SCM_CELL macros was never
  3512. correct, but until now things still worked. Users should be aware of
  3513. such changes.
  3514. ** Changed invocation mechanics of applicable SMOBs
  3515. Guile's old evaluator used to have special cases for applying SMOB
  3516. objects. Now, with the VM, when Guile sees a SMOB, it looks up a VM
  3517. trampoline procedure for it, and use the normal mechanics to apply the
  3518. trampoline. This simplifies procedure application in the normal,
  3519. non-SMOB case.
  3520. The upshot is that the mechanics used to apply a SMOB are different from
  3521. 1.8. Descriptors no longer have `apply_0', `apply_1', `apply_2', and
  3522. `apply_3' functions, and the macros SCM_SMOB_APPLY_0 and friends are now
  3523. deprecated. Just use the scm_call_0 family of procedures.
  3524. ** Removed support shlibs for SRFIs 1, 4, 13, 14, and 60
  3525. Though these SRFI support libraries did expose API, they encoded a
  3526. strange version string into their library names. That version was never
  3527. programmatically exported, so there was no way people could use the
  3528. libs.
  3529. This was a fortunate oversight, as it allows us to remove the need for
  3530. extra, needless shared libraries --- the C support code for SRFIs 4, 13,
  3531. and 14 was already in core --- and allow us to incrementally return the
  3532. SRFI implementation to Scheme.
  3533. ** New C function: scm_module_public_interface
  3534. This procedure corresponds to Scheme's `module-public-interface'.
  3535. ** Undeprecate `scm_the_root_module ()'
  3536. It's useful to be able to get the root module from C without doing a
  3537. full module lookup.
  3538. ** Inline vector allocation
  3539. Instead of having vectors point out into the heap for their data, their
  3540. data is now allocated inline to the vector object itself. The same is
  3541. true for bytevectors, by default, though there is an indirection
  3542. available which should allow for making a bytevector from an existing
  3543. memory region.
  3544. ** New struct constructors that don't involve making lists
  3545. `scm_c_make_struct' and `scm_c_make_structv' are new varargs and array
  3546. constructors, respectively, for structs. You might find them useful.
  3547. ** Stack refactor
  3548. In Guile 1.8, there were debugging frames on the C stack. Now there is
  3549. no more need to explicitly mark the stack in this way, because Guile has
  3550. a VM stack that it knows how to walk, which simplifies the C API
  3551. considerably. See the ChangeLog for details; the relevant interface is
  3552. in libguile/stacks.h. The Scheme API has not been changed significantly.
  3553. ** Removal of Guile's primitive object system.
  3554. There were a number of pieces in `objects.[ch]' that tried to be a
  3555. minimal object system, but were never documented, and were quickly
  3556. obseleted by GOOPS' merge into Guile proper. So `scm_make_class_object',
  3557. `scm_make_subclass_object', `scm_metaclass_standard', and like symbols
  3558. from objects.h are no more. In the very unlikely case in which these
  3559. were useful to you, we urge you to contact guile-devel.
  3560. ** No future.
  3561. Actually the future is still in the state that it was, is, and ever
  3562. shall be, Amen, except that `futures.c' and `futures.h' are no longer a
  3563. part of it. These files were experimental, never compiled, and would be
  3564. better implemented in Scheme anyway. In the future, that is.
  3565. ** Deprecate trampolines
  3566. There used to be C functions `scm_trampoline_0', `scm_trampoline_1', and
  3567. so on. The point was to do some precomputation on the type of the
  3568. procedure, then return a specialized "call" procedure. However this
  3569. optimization wasn't actually an optimization, so it is now deprecated.
  3570. Just use `scm_call_0', etc instead.
  3571. ** Deprecated `scm_badargsp'
  3572. This function is unused in Guile, but was part of its API.
  3573. ** Better support for Lisp `nil'.
  3574. The bit representation of `nil' has been tweaked so that it is now very
  3575. efficient to check e.g. if a value is equal to Scheme's end-of-list or
  3576. Lisp's nil. Additionally there are a heap of new, specific predicates
  3577. like scm_is_null_or_nil.
  3578. ** Better integration of Lisp `nil'.
  3579. `scm_is_boolean', `scm_is_false', and `scm_is_null' all return true now
  3580. for Lisp's `nil'. This shouldn't affect any Scheme code at this point,
  3581. but when we start to integrate more with Emacs, it is possible that we
  3582. break code that assumes that, for example, `(not x)' implies that `x' is
  3583. `eq?' to `#f'. This is not a common assumption. Refactoring affected
  3584. code to rely on properties instead of identities will improve code
  3585. correctness. See "Nil" in the manual, for more details.
  3586. ** Support for static allocation of strings, symbols, and subrs.
  3587. Calls to snarfing CPP macros like SCM_DEFINE macro will now allocate
  3588. much of their associated data as static variables, reducing Guile's
  3589. memory footprint.
  3590. ** `scm_stat' has an additional argument, `exception_on_error'
  3591. ** `scm_primitive_load_path' has an additional argument `exception_on_not_found'
  3592. ** `scm_set_port_seek' and `scm_set_port_truncate' use the `scm_t_off' type
  3593. Previously they would use the `off_t' type, which is fragile since its
  3594. definition depends on the application's value for `_FILE_OFFSET_BITS'.
  3595. ** The `long_long' C type, deprecated in 1.8, has been removed
  3596. ** Removed deprecated uniform array procedures: scm_make_uve,
  3597. scm_array_prototype, scm_list_to_uniform_array,
  3598. scm_dimensions_to_uniform_array, scm_make_ra, scm_shap2ra, scm_cvref,
  3599. scm_ra_set_contp, scm_aind, scm_raprin1
  3600. These functions have been deprecated since early 2005.
  3601. * Changes to the distribution
  3602. ** Guile's license is now LGPLv3+
  3603. In other words the GNU Lesser General Public License, version 3 or
  3604. later (at the discretion of each person that chooses to redistribute
  3605. part of Guile).
  3606. ** AM_SILENT_RULES
  3607. Guile's build is visually quieter, due to the use of Automake 1.11's
  3608. AM_SILENT_RULES. Build as `make V=1' to see all of the output.
  3609. ** GOOPS documentation folded into Guile reference manual
  3610. GOOPS, Guile's object system, used to be documented in separate manuals.
  3611. This content is now included in Guile's manual directly.
  3612. ** `guile-config' will be deprecated in favor of `pkg-config'
  3613. `guile-config' has been rewritten to get its information from
  3614. `pkg-config', so this should be a transparent change. Note however that
  3615. guile.m4 has yet to be modified to call pkg-config instead of
  3616. guile-config.
  3617. ** Guile now provides `guile-2.0.pc' instead of `guile-1.8.pc'
  3618. Programs that use `pkg-config' to find Guile or one of its Autoconf
  3619. macros should now require `guile-2.0' instead of `guile-1.8'.
  3620. ** New installation directory: $(pkglibdir)/1.9/ccache
  3621. If $(libdir) is /usr/lib, for example, Guile will install its .go files
  3622. to /usr/lib/guile/1.9/ccache. These files are architecture-specific.
  3623. ** Parallel installability fixes
  3624. Guile now installs its header files to a effective-version-specific
  3625. directory, and includes the effective version (e.g. 2.0) in the library
  3626. name (e.g. libguile-2.0.so).
  3627. This change should be transparent to users, who should detect Guile via
  3628. the guile.m4 macro, or the guile-2.0.pc pkg-config file. It will allow
  3629. parallel installs for multiple versions of Guile development
  3630. environments.
  3631. ** Dynamically loadable extensions may be placed in a Guile-specific path
  3632. Before, Guile only searched the system library paths for extensions
  3633. (e.g. /usr/lib), which meant that the names of Guile extensions had to
  3634. be globally unique. Installing them to a Guile-specific extensions
  3635. directory is cleaner. Use `pkg-config --variable=extensiondir
  3636. guile-2.0' to get the location of the extensions directory.
  3637. ** User Scheme code may be placed in a version-specific path
  3638. Before, there was only one way to install user Scheme code to a
  3639. version-specific Guile directory: install to Guile's own path,
  3640. e.g. /usr/share/guile/2.0. The site directory,
  3641. e.g. /usr/share/guile/site, was unversioned. This has been changed to
  3642. add a version-specific site directory, e.g. /usr/share/guile/site/2.0,
  3643. searched before the global site directory.
  3644. ** New dependency: libgc
  3645. See http://www.hpl.hp.com/personal/Hans_Boehm/gc/, for more information.
  3646. ** New dependency: GNU libunistring
  3647. See http://www.gnu.org/software/libunistring/, for more information. Our
  3648. Unicode support uses routines from libunistring.
  3649. ** New dependency: libffi
  3650. See http://sourceware.org/libffi/, for more information.
  3651. Changes in 1.8.8 (since 1.8.7)
  3652. * Bugs fixed
  3653. ** Fix possible buffer overruns when parsing numbers
  3654. ** Avoid clash with system setjmp/longjmp on IA64
  3655. ** Fix `wrong type arg' exceptions with IPv6 addresses
  3656. Changes in 1.8.7 (since 1.8.6)
  3657. * New modules (see the manual for details)
  3658. ** `(srfi srfi-98)', an interface to access environment variables
  3659. * Bugs fixed
  3660. ** Fix compilation with `--disable-deprecated'
  3661. ** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
  3662. ** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
  3663. ** Fix build problem when scm_t_timespec is different from struct timespec
  3664. ** Fix build when compiled with -Wundef -Werror
  3665. ** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
  3666. ** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
  3667. ** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
  3668. ** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
  3669. ** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
  3670. ** Fix reading of complex numbers where both parts are inexact decimals
  3671. ** Allow @ macro to work with (ice-9 syncase)
  3672. Previously, use of the @ macro in a module whose code is being
  3673. transformed by (ice-9 syncase) would cause an "Invalid syntax" error.
  3674. Now it works as you would expect (giving the value of the specified
  3675. module binding).
  3676. ** Have `scm_take_locale_symbol ()' return an interned symbol (bug #25865)
  3677. Changes in 1.8.6 (since 1.8.5)
  3678. * New features (see the manual for details)
  3679. ** New convenience function `scm_c_symbol_length ()'
  3680. ** Single stepping through code from Emacs
  3681. When you use GDS to evaluate Scheme code from Emacs, you can now use
  3682. `C-u' to indicate that you want to single step through that code. See
  3683. `Evaluating Scheme Code' in the manual for more details.
  3684. ** New "guile(1)" man page!
  3685. * Changes to the distribution
  3686. ** Automake's `AM_MAINTAINER_MODE' is no longer used
  3687. Thus, the `--enable-maintainer-mode' configure option is no longer
  3688. available: Guile is now always configured in "maintainer mode".
  3689. ** `ChangeLog' files are no longer updated
  3690. Instead, changes are detailed in the version control system's logs. See
  3691. the top-level `ChangeLog' files for details.
  3692. * Bugs fixed
  3693. ** `symbol->string' now returns a read-only string, as per R5RS
  3694. ** Fix incorrect handling of the FLAGS argument of `fold-matches'
  3695. ** `guile-config link' now prints `-L$libdir' before `-lguile'
  3696. ** Fix memory corruption involving GOOPS' `class-redefinition'
  3697. ** Fix possible deadlock in `mutex-lock'
  3698. ** Fix build issue on Tru64 and ia64-hp-hpux11.23 (`SCM_UNPACK' macro)
  3699. ** Fix build issue on mips, mipsel, powerpc and ia64 (stack direction)
  3700. ** Fix build issue on hppa2.0w-hp-hpux11.11 (`dirent64' and `readdir64_r')
  3701. ** Fix build issue on i386-unknown-freebsd7.0 ("break strict-aliasing rules")
  3702. ** Fix misleading output from `(help rationalize)'
  3703. ** Fix build failure on Debian hppa architecture (bad stack growth detection)
  3704. ** Fix `gcd' when called with a single, negative argument.
  3705. ** Fix `Stack overflow' errors seen when building on some platforms
  3706. ** Fix bug when `scm_with_guile ()' was called several times from the
  3707. same thread
  3708. ** The handler of SRFI-34 `with-exception-handler' is now invoked in the
  3709. dynamic environment of the call to `raise'
  3710. ** Fix potential deadlock in `make-struct'
  3711. ** Fix compilation problem with libltdl from Libtool 2.2.x
  3712. ** Fix sloppy bound checking in `string-{ref,set!}' with the empty string
  3713. Changes in 1.8.5 (since 1.8.4)
  3714. * Infrastructure changes
  3715. ** Guile repository switched from CVS to Git
  3716. The new repository can be accessed using
  3717. "git-clone git://git.sv.gnu.org/guile.git", or can be browsed on-line at
  3718. http://git.sv.gnu.org/gitweb/?p=guile.git . See `README' for details.
  3719. ** Add support for `pkg-config'
  3720. See "Autoconf Support" in the manual for details.
  3721. * New modules (see the manual for details)
  3722. ** `(srfi srfi-88)'
  3723. * New features (see the manual for details)
  3724. ** New `postfix' read option, for SRFI-88 keyword syntax
  3725. ** Some I/O primitives have been inlined, which improves I/O performance
  3726. ** New object-based traps infrastructure
  3727. This is a GOOPS-based infrastructure that builds on Guile's low-level
  3728. evaluator trap calls and facilitates the development of debugging
  3729. features like single-stepping, breakpoints, tracing and profiling.
  3730. See the `Traps' node of the manual for details.
  3731. ** New support for working on Guile code from within Emacs
  3732. Guile now incorporates the `GDS' library (previously distributed
  3733. separately) for working on Guile code from within Emacs. See the
  3734. `Using Guile In Emacs' node of the manual for details.
  3735. * Bugs fixed
  3736. ** `scm_add_slot ()' no longer segfaults (fixes bug #22369)
  3737. ** Fixed `(ice-9 match)' for patterns like `((_ ...) ...)'
  3738. Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
  3739. would trigger an unbound variable error for `match:andmap'.
  3740. ** `(oop goops describe)' now properly provides the `describe' feature
  3741. ** Fixed `args-fold' from `(srfi srfi-37)'
  3742. Previously, parsing short option names of argument-less options would
  3743. lead to a stack overflow.
  3744. ** `(srfi srfi-35)' is now visible through `cond-expand'
  3745. ** Fixed type-checking for the second argument of `eval'
  3746. ** Fixed type-checking for SRFI-1 `partition'
  3747. ** Fixed `struct-ref' and `struct-set!' on "light structs"
  3748. ** Honor struct field access rights in GOOPS
  3749. ** Changed the storage strategy of source properties, which fixes a deadlock
  3750. ** Allow compilation of Guile-using programs in C99 mode with GCC 4.3 and later
  3751. ** Fixed build issue for GNU/Linux on IA64
  3752. ** Fixed build issues on NetBSD 1.6
  3753. ** Fixed build issue on Solaris 2.10 x86_64
  3754. ** Fixed build issue with DEC/Compaq/HP's compiler
  3755. ** Fixed `scm_from_complex_double' build issue on FreeBSD
  3756. ** Fixed `alloca' build issue on FreeBSD 6
  3757. ** Removed use of non-portable makefile constructs
  3758. ** Fixed shadowing of libc's <random.h> on Tru64, which broke compilation
  3759. ** Make sure all tests honor `$TMPDIR'
  3760. Changes in 1.8.4 (since 1.8.3)
  3761. * Bugs fixed
  3762. ** CR (ASCII 0x0d) is (again) recognized as a token delimiter by the reader
  3763. ** Fixed a segmentation fault which occurred when displaying the
  3764. backtrace of a stack with a promise object (made by `delay') in it.
  3765. ** Make `accept' leave guile mode while blocking
  3766. ** `scm_c_read ()' and `scm_c_write ()' now type-check their port argument
  3767. ** Fixed a build problem on AIX (use of func_data identifier)
  3768. ** Fixed a segmentation fault which occurred when hashx-ref or hashx-set! was
  3769. called with an associator proc that returns neither a pair nor #f.
  3770. ** Secondary threads now always return a valid module for (current-module).
  3771. ** Avoid MacOS build problems caused by incorrect combination of "64"
  3772. system and library calls.
  3773. ** `guile-snarf' now honors `$TMPDIR'
  3774. ** `guile-config compile' now reports CPPFLAGS used at compile-time
  3775. ** Fixed build with Sun Studio (Solaris 9)
  3776. ** Fixed wrong-type-arg errors when creating zero length SRFI-4
  3777. uniform vectors on AIX.
  3778. ** Fixed a deadlock that occurs upon GC with multiple threads.
  3779. ** Fixed compile problem with GCC on Solaris and AIX (use of _Complex_I)
  3780. ** Fixed autotool-derived build problems on AIX 6.1.
  3781. ** Fixed NetBSD/alpha support
  3782. ** Fixed MacOS build problem caused by use of rl_get_keymap(_name)
  3783. * New modules (see the manual for details)
  3784. ** `(srfi srfi-69)'
  3785. * Documentation fixes and improvements
  3786. ** Removed premature breakpoint documentation
  3787. The features described are not available in the series of 1.8.x
  3788. releases, so the documentation was misleading and has been removed.
  3789. ** More about Guile's default *random-state* variable
  3790. ** GOOPS: more about how to use `next-method'
  3791. * Changes to the distribution
  3792. ** Corrected a few files that referred incorrectly to the old GPL + special exception licence
  3793. In fact Guile since 1.8.0 has been licensed with the GNU Lesser
  3794. General Public License, and the few incorrect files have now been
  3795. fixed to agree with the rest of the Guile distribution.
  3796. ** Removed unnecessary extra copies of COPYING*
  3797. The distribution now contains a single COPYING.LESSER at its top level.
  3798. Changes in 1.8.3 (since 1.8.2)
  3799. * New modules (see the manual for details)
  3800. ** `(srfi srfi-35)'
  3801. ** `(srfi srfi-37)'
  3802. * Bugs fixed
  3803. ** The `(ice-9 slib)' module now works as expected
  3804. ** Expressions like "(set! 'x #t)" no longer yield a crash
  3805. ** Warnings about duplicate bindings now go to stderr
  3806. ** A memory leak in `make-socket-address' was fixed
  3807. ** Alignment issues (e.g., on SPARC) in network routines were fixed
  3808. ** A threading issue that showed up at least on NetBSD was fixed
  3809. ** Build problems on Solaris and IRIX fixed
  3810. * Implementation improvements
  3811. ** The reader is now faster, which reduces startup time
  3812. ** Procedures returned by `record-accessor' and `record-modifier' are faster
  3813. Changes in 1.8.2 (since 1.8.1):
  3814. * New procedures (see the manual for details)
  3815. ** set-program-arguments
  3816. ** make-vtable
  3817. * Incompatible changes
  3818. ** The body of a top-level `define' no longer sees the binding being created
  3819. In a top-level `define', the binding being created is no longer visible
  3820. from the `define' body. This breaks code like
  3821. "(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now
  3822. unbound in the body. However, such code was not R5RS-compliant anyway,
  3823. per Section 5.2.1.
  3824. * Bugs fixed
  3825. ** Fractions were not `equal?' if stored in unreduced form.
  3826. (A subtle problem, since printing a value reduced it, making it work.)
  3827. ** srfi-60 `copy-bit' failed on 64-bit systems
  3828. ** "guile --use-srfi" option at the REPL can replace core functions
  3829. (Programs run with that option were ok, but in the interactive REPL
  3830. the core bindings got priority, preventing SRFI replacements or
  3831. extensions.)
  3832. ** `regexp-exec' doesn't abort() on #\nul in the input or bad flags arg
  3833. ** `kill' on mingw throws an error for a PID other than oneself
  3834. ** Procedure names are attached to procedure-with-setters
  3835. ** Array read syntax works with negative lower bound
  3836. ** `array-in-bounds?' fix if an array has different lower bounds on each index
  3837. ** `*' returns exact 0 for "(* inexact 0)"
  3838. This follows what it always did for "(* 0 inexact)".
  3839. ** SRFI-19: Value returned by `(current-time time-process)' was incorrect
  3840. ** SRFI-19: `date->julian-day' did not account for timezone offset
  3841. ** `ttyname' no longer crashes when passed a non-tty argument
  3842. ** `inet-ntop' no longer crashes on SPARC when passed an `AF_INET' address
  3843. ** Small memory leaks have been fixed in `make-fluid' and `add-history'
  3844. ** GOOPS: Fixed a bug in `method-more-specific?'
  3845. ** Build problems on Solaris fixed
  3846. ** Build problems on HP-UX IA64 fixed
  3847. ** Build problems on MinGW fixed
  3848. Changes in 1.8.1 (since 1.8.0):
  3849. * LFS functions are now used to access 64-bit files on 32-bit systems.
  3850. * New procedures (see the manual for details)
  3851. ** primitive-_exit - [Scheme] the-root-module
  3852. ** scm_primitive__exit - [C]
  3853. ** make-completion-function - [Scheme] (ice-9 readline)
  3854. ** scm_c_locale_stringn_to_number - [C]
  3855. ** scm_srfi1_append_reverse [C]
  3856. ** scm_srfi1_append_reverse_x [C]
  3857. ** scm_log - [C]
  3858. ** scm_log10 - [C]
  3859. ** scm_exp - [C]
  3860. ** scm_sqrt - [C]
  3861. * Bugs fixed
  3862. ** Build problems have been fixed on MacOS, SunOS, and QNX.
  3863. ** `strftime' fix sign of %z timezone offset.
  3864. ** A one-dimensional array can now be 'equal?' to a vector.
  3865. ** Structures, records, and SRFI-9 records can now be compared with `equal?'.
  3866. ** SRFI-14 standard char sets are recomputed upon a successful `setlocale'.
  3867. ** `record-accessor' and `record-modifier' now have strict type checks.
  3868. Record accessor and modifier procedures now throw an error if the
  3869. record type of the record they're given is not the type expected.
  3870. (Previously accessors returned #f and modifiers silently did nothing).
  3871. ** It is now OK to use both autoload and use-modules on a given module.
  3872. ** `apply' checks the number of arguments more carefully on "0 or 1" funcs.
  3873. Previously there was no checking on primatives like make-vector that
  3874. accept "one or two" arguments. Now there is.
  3875. ** The srfi-1 assoc function now calls its equality predicate properly.
  3876. Previously srfi-1 assoc would call the equality predicate with the key
  3877. last. According to the SRFI, the key should be first.
  3878. ** A bug in n-par-for-each and n-for-each-par-map has been fixed.
  3879. ** The array-set! procedure no longer segfaults when given a bit vector.
  3880. ** Bugs in make-shared-array have been fixed.
  3881. ** string<? and friends now follow char<? etc order on 8-bit chars.
  3882. ** The format procedure now handles inf and nan values for ~f correctly.
  3883. ** exact->inexact should no longer overflow when given certain large fractions.
  3884. ** srfi-9 accessor and modifier procedures now have strict record type checks.
  3885. This matches the srfi-9 specification.
  3886. ** (ice-9 ftw) procedures won't ignore different files with same inode number.
  3887. Previously the (ice-9 ftw) procedures would ignore any file that had
  3888. the same inode number as a file they had already seen, even if that
  3889. file was on a different device.
  3890. Changes in 1.8.0 (changes since the 1.6.x series):
  3891. * Changes to the distribution
  3892. ** Guile is now licensed with the GNU Lesser General Public License.
  3893. ** The manual is now licensed with the GNU Free Documentation License.
  3894. ** Guile now requires GNU MP (http://swox.com/gmp).
  3895. Guile now uses the GNU MP library for arbitrary precision arithmetic.
  3896. ** Guile now has separate private and public configuration headers.
  3897. That is, things like HAVE_STRING_H no longer leak from Guile's
  3898. headers.
  3899. ** Guile now provides and uses an "effective" version number.
  3900. Guile now provides scm_effective_version and effective-version
  3901. functions which return the "effective" version number. This is just
  3902. the normal full version string without the final micro-version number,
  3903. so the current effective-version is "1.8". The effective version
  3904. should remain unchanged during a stable series, and should be used for
  3905. items like the versioned share directory name
  3906. i.e. /usr/share/guile/1.8.
  3907. Providing an unchanging version number during a stable release for
  3908. things like the versioned share directory can be particularly
  3909. important for Guile "add-on" packages, since it provides a directory
  3910. that they can install to that won't be changed out from under them
  3911. with each micro release during a stable series.
  3912. ** Thread implementation has changed.
  3913. When you configure "--with-threads=null", you will get the usual
  3914. threading API (call-with-new-thread, make-mutex, etc), but you can't
  3915. actually create new threads. Also, "--with-threads=no" is now
  3916. equivalent to "--with-threads=null". This means that the thread API
  3917. is always present, although you might not be able to create new
  3918. threads.
  3919. When you configure "--with-threads=pthreads" or "--with-threads=yes",
  3920. you will get threads that are implemented with the portable POSIX
  3921. threads. These threads can run concurrently (unlike the previous
  3922. "coop" thread implementation), but need to cooperate for things like
  3923. the GC.
  3924. The default is "pthreads", unless your platform doesn't have pthreads,
  3925. in which case "null" threads are used.
  3926. See the manual for details, nodes "Initialization", "Multi-Threading",
  3927. "Blocking", and others.
  3928. ** There is the new notion of 'discouraged' features.
  3929. This is a milder form of deprecation.
  3930. Things that are discouraged should not be used in new code, but it is
  3931. OK to leave them in old code for now. When a discouraged feature is
  3932. used, no warning message is printed like there is for 'deprecated'
  3933. features. Also, things that are merely discouraged are nevertheless
  3934. implemented efficiently, while deprecated features can be very slow.
  3935. You can omit discouraged features from libguile by configuring it with
  3936. the '--disable-discouraged' option.
  3937. ** Deprecation warnings can be controlled at run-time.
  3938. (debug-enable 'warn-deprecated) switches them on and (debug-disable
  3939. 'warn-deprecated) switches them off.
  3940. ** Support for SRFI 61, extended cond syntax for multiple values has
  3941. been added.
  3942. This SRFI is always available.
  3943. ** Support for require-extension, SRFI-55, has been added.
  3944. The SRFI-55 special form `require-extension' has been added. It is
  3945. available at startup, and provides a portable way to load Scheme
  3946. extensions. SRFI-55 only requires support for one type of extension,
  3947. "srfi"; so a set of SRFIs may be loaded via (require-extension (srfi 1
  3948. 13 14)).
  3949. ** New module (srfi srfi-26) provides support for `cut' and `cute'.
  3950. The (srfi srfi-26) module is an implementation of SRFI-26 which
  3951. provides the `cut' and `cute' syntax. These may be used to specialize
  3952. parameters without currying.
  3953. ** New module (srfi srfi-31)
  3954. This is an implementation of SRFI-31 which provides a special form
  3955. `rec' for recursive evaluation.
  3956. ** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
  3957. been merged with the core, making their functionality always
  3958. available.
  3959. The modules are still available, tho, and you could use them together
  3960. with a renaming import, for example.
  3961. ** Guile no longer includes its own version of libltdl.
  3962. The official version is good enough now.
  3963. ** The --enable-htmldoc option has been removed from 'configure'.
  3964. Support for translating the documentation into HTML is now always
  3965. provided. Use 'make html'.
  3966. ** New module (ice-9 serialize):
  3967. (serialize FORM1 ...) and (parallelize FORM1 ...) are useful when you
  3968. don't trust the thread safety of most of your program, but where you
  3969. have some section(s) of code which you consider can run in parallel to
  3970. other sections. See ice-9/serialize.scm for more information.
  3971. ** The configure option '--disable-arrays' has been removed.
  3972. Support for arrays and uniform numeric arrays is now always included
  3973. in Guile.
  3974. * Changes to the stand-alone interpreter
  3975. ** New command line option `-L'.
  3976. This option adds a directory to the front of the load path.
  3977. ** New command line option `--no-debug'.
  3978. Specifying `--no-debug' on the command line will keep the debugging
  3979. evaluator turned off, even for interactive sessions.
  3980. ** User-init file ~/.guile is now loaded with the debugging evaluator.
  3981. Previously, the normal evaluator would have been used. Using the
  3982. debugging evaluator gives better error messages.
  3983. ** The '-e' option now 'read's its argument.
  3984. This is to allow the new '(@ MODULE-NAME VARIABLE-NAME)' construct to
  3985. be used with '-e'. For example, you can now write a script like
  3986. #! /bin/sh
  3987. exec guile -e '(@ (demo) main)' -s "$0" "$@"
  3988. !#
  3989. (define-module (demo)
  3990. :export (main))
  3991. (define (main args)
  3992. (format #t "Demo: ~a~%" args))
  3993. * Changes to Scheme functions and syntax
  3994. ** Guardians have changed back to their original semantics
  3995. Guardians now behave like described in the paper by Dybvig et al. In
  3996. particular, they no longer make guarantees about the order in which
  3997. they return objects, and they can no longer be greedy.
  3998. They no longer drop cyclic data structures.
  3999. The C function scm_make_guardian has been changed incompatibly and no
  4000. longer takes the 'greedy_p' argument.
  4001. ** New function hashx-remove!
  4002. This function completes the set of 'hashx' functions.
  4003. ** The concept of dynamic roots has been factored into continuation
  4004. barriers and dynamic states.
  4005. Each thread has a current dynamic state that carries the values of the
  4006. fluids. You can create and copy dynamic states and use them as the
  4007. second argument for 'eval'. See "Fluids and Dynamic States" in the
  4008. manual.
  4009. To restrict the influence that captured continuations can have on the
  4010. control flow, you can errect continuation barriers. See "Continuation
  4011. Barriers" in the manual.
  4012. The function call-with-dynamic-root now essentially temporarily
  4013. installs a new dynamic state and errects a continuation barrier.
  4014. ** The default load path no longer includes "." at the end.
  4015. Automatically loading modules from the current directory should not
  4016. happen by default. If you want to allow it in a more controlled
  4017. manner, set the environment variable GUILE_LOAD_PATH or the Scheme
  4018. variable %load-path.
  4019. ** The uniform vector and array support has been overhauled.
  4020. It now complies with SRFI-4 and the weird prototype based uniform
  4021. array creation has been deprecated. See the manual for more details.
  4022. Some non-compatible changes have been made:
  4023. - characters can no longer be stored into byte arrays.
  4024. - strings and bit vectors are no longer considered to be uniform numeric
  4025. vectors.
  4026. - array-rank throws an error for non-arrays instead of returning zero.
  4027. - array-ref does no longer accept non-arrays when no indices are given.
  4028. There is the new notion of 'generalized vectors' and corresponding
  4029. procedures like 'generalized-vector-ref'. Generalized vectors include
  4030. strings, bitvectors, ordinary vectors, and uniform numeric vectors.
  4031. Arrays use generalized vectors as their storage, so that you still
  4032. have arrays of characters, bits, etc. However, uniform-array-read!
  4033. and uniform-array-write can no longer read/write strings and
  4034. bitvectors.
  4035. ** There is now support for copy-on-write substrings, mutation-sharing
  4036. substrings and read-only strings.
  4037. Three new procedures are related to this: substring/shared,
  4038. substring/copy, and substring/read-only. See the manual for more
  4039. information.
  4040. ** Backtraces will now highlight the value that caused the error.
  4041. By default, these values are enclosed in "{...}", such as in this
  4042. example:
  4043. guile> (car 'a)
  4044. Backtrace:
  4045. In current input:
  4046. 1: 0* [car {a}]
  4047. <unnamed port>:1:1: In procedure car in expression (car (quote a)):
  4048. <unnamed port>:1:1: Wrong type (expecting pair): a
  4049. ABORT: (wrong-type-arg)
  4050. The prefix and suffix used for highlighting can be set via the two new
  4051. printer options 'highlight-prefix' and 'highlight-suffix'. For
  4052. example, putting this into ~/.guile will output the bad value in bold
  4053. on an ANSI terminal:
  4054. (print-set! highlight-prefix "\x1b[1m")
  4055. (print-set! highlight-suffix "\x1b[22m")
  4056. ** 'gettext' support for internationalization has been added.
  4057. See the manual for details.
  4058. ** New syntax '@' and '@@':
  4059. You can now directly refer to variables exported from a module by
  4060. writing
  4061. (@ MODULE-NAME VARIABLE-NAME)
  4062. For example (@ (ice-9 pretty-print) pretty-print) will directly access
  4063. the pretty-print variable exported from the (ice-9 pretty-print)
  4064. module. You don't need to 'use' that module first. You can also use
  4065. '@' as a target of 'set!', as in (set! (@ mod var) val).
  4066. The related syntax (@@ MODULE-NAME VARIABLE-NAME) works just like '@',
  4067. but it can also access variables that have not been exported. It is
  4068. intended only for kluges and temporary fixes and for debugging, not
  4069. for ordinary code.
  4070. ** Keyword syntax has been made more disciplined.
  4071. Previously, the name of a keyword was read as a 'token' but printed as
  4072. a symbol. Now, it is read as a general Scheme datum which must be a
  4073. symbol.
  4074. Previously:
  4075. guile> #:12
  4076. #:#{12}#
  4077. guile> #:#{12}#
  4078. #:#{\#{12}\#}#
  4079. guile> #:(a b c)
  4080. #:#{}#
  4081. ERROR: In expression (a b c):
  4082. Unbound variable: a
  4083. guile> #: foo
  4084. #:#{}#
  4085. ERROR: Unbound variable: foo
  4086. Now:
  4087. guile> #:12
  4088. ERROR: Wrong type (expecting symbol): 12
  4089. guile> #:#{12}#
  4090. #:#{12}#
  4091. guile> #:(a b c)
  4092. ERROR: Wrong type (expecting symbol): (a b c)
  4093. guile> #: foo
  4094. #:foo
  4095. ** The printing of symbols that might look like keywords can be
  4096. controlled.
  4097. The new printer option 'quote-keywordish-symbols' controls how symbols
  4098. are printed that have a colon as their first or last character. The
  4099. default now is to only quote a symbol with #{...}# when the read
  4100. option 'keywords' is not '#f'. Thus:
  4101. guile> (define foo (string->symbol ":foo"))
  4102. guile> (read-set! keywords #f)
  4103. guile> foo
  4104. :foo
  4105. guile> (read-set! keywords 'prefix)
  4106. guile> foo
  4107. #{:foo}#
  4108. guile> (print-set! quote-keywordish-symbols #f)
  4109. guile> foo
  4110. :foo
  4111. ** 'while' now provides 'break' and 'continue'
  4112. break and continue were previously bound in a while loop, but not
  4113. documented, and continue didn't quite work properly. The undocumented
  4114. parameter to break which gave a return value for the while has been
  4115. dropped.
  4116. ** 'call-with-current-continuation' is now also available under the name
  4117. 'call/cc'.
  4118. ** The module system now checks for duplicate bindings.
  4119. The module system now can check for name conflicts among imported
  4120. bindings.
  4121. The behavior can be controlled by specifying one or more 'duplicates'
  4122. handlers. For example, to make Guile return an error for every name
  4123. collision, write:
  4124. (define-module (foo)
  4125. :use-module (bar)
  4126. :use-module (baz)
  4127. :duplicates check)
  4128. The new default behavior of the module system when a name collision
  4129. has been detected is to
  4130. 1. Give priority to bindings marked as a replacement.
  4131. 2. Issue a warning (different warning if overriding core binding).
  4132. 3. Give priority to the last encountered binding (this corresponds to
  4133. the old behavior).
  4134. If you want the old behavior back without replacements or warnings you
  4135. can add the line:
  4136. (default-duplicate-binding-handler 'last)
  4137. to your .guile init file.
  4138. ** New define-module option: :replace
  4139. :replace works as :export, but, in addition, marks the binding as a
  4140. replacement.
  4141. A typical example is `format' in (ice-9 format) which is a replacement
  4142. for the core binding `format'.
  4143. ** Adding prefixes to imported bindings in the module system
  4144. There is now a new :use-module option :prefix. It can be used to add
  4145. a prefix to all imported bindings.
  4146. (define-module (foo)
  4147. :use-module ((bar) :prefix bar:))
  4148. will import all bindings exported from bar, but rename them by adding
  4149. the prefix `bar:'.
  4150. ** Conflicting generic functions can be automatically merged.
  4151. When two imported bindings conflict and they are both generic
  4152. functions, the two functions can now be merged automatically. This is
  4153. activated with the 'duplicates' handler 'merge-generics'.
  4154. ** New function: effective-version
  4155. Returns the "effective" version number. This is just the normal full
  4156. version string without the final micro-version number. See "Changes
  4157. to the distribution" above.
  4158. ** New threading functions: parallel, letpar, par-map, and friends
  4159. These are convenient ways to run calculations in parallel in new
  4160. threads. See "Parallel forms" in the manual for details.
  4161. ** New function 'try-mutex'.
  4162. This function will attempt to lock a mutex but will return immediately
  4163. instead of blocking and indicate failure.
  4164. ** Waiting on a condition variable can have a timeout.
  4165. The function 'wait-condition-variable' now takes a third, optional
  4166. argument that specifies the point in time where the waiting should be
  4167. aborted.
  4168. ** New function 'broadcast-condition-variable'.
  4169. ** New functions 'all-threads' and 'current-thread'.
  4170. ** Signals and system asyncs work better with threads.
  4171. The function 'sigaction' now takes a fourth, optional, argument that
  4172. specifies the thread that the handler should run in. When the
  4173. argument is omitted, the handler will run in the thread that called
  4174. 'sigaction'.
  4175. Likewise, 'system-async-mark' takes a second, optional, argument that
  4176. specifies the thread that the async should run in. When it is
  4177. omitted, the async will run in the thread that called
  4178. 'system-async-mark'.
  4179. C code can use the new functions scm_sigaction_for_thread and
  4180. scm_system_async_mark_for_thread to pass the new thread argument.
  4181. When a thread blocks on a mutex, a condition variable or is waiting
  4182. for IO to be possible, it will still execute system asyncs. This can
  4183. be used to interrupt such a thread by making it execute a 'throw', for
  4184. example.
  4185. ** The function 'system-async' is deprecated.
  4186. You can now pass any zero-argument procedure to 'system-async-mark'.
  4187. The function 'system-async' will just return its argument unchanged
  4188. now.
  4189. ** New functions 'call-with-blocked-asyncs' and
  4190. 'call-with-unblocked-asyncs'
  4191. The expression (call-with-blocked-asyncs PROC) will call PROC and will
  4192. block execution of system asyncs for the current thread by one level
  4193. while PROC runs. Likewise, call-with-unblocked-asyncs will call a
  4194. procedure and will unblock the execution of system asyncs by one
  4195. level for the current thread.
  4196. Only system asyncs are affected by these functions.
  4197. ** The functions 'mask-signals' and 'unmask-signals' are deprecated.
  4198. Use 'call-with-blocked-asyncs' or 'call-with-unblocked-asyncs'
  4199. instead. Those functions are easier to use correctly and can be
  4200. nested.
  4201. ** New function 'unsetenv'.
  4202. ** New macro 'define-syntax-public'.
  4203. It works like 'define-syntax' and also exports the defined macro (but
  4204. only on top-level).
  4205. ** There is support for Infinity and NaNs.
  4206. Following PLT Scheme, Guile can now work with infinite numbers, and
  4207. 'not-a-numbers'.
  4208. There is new syntax for numbers: "+inf.0" (infinity), "-inf.0"
  4209. (negative infinity), "+nan.0" (not-a-number), and "-nan.0" (same as
  4210. "+nan.0"). These numbers are inexact and have no exact counterpart.
  4211. Dividing by an inexact zero returns +inf.0 or -inf.0, depending on the
  4212. sign of the dividend. The infinities are integers, and they answer #t
  4213. for both 'even?' and 'odd?'. The +nan.0 value is not an integer and is
  4214. not '=' to itself, but '+nan.0' is 'eqv?' to itself.
  4215. For example
  4216. (/ 1 0.0)
  4217. => +inf.0
  4218. (/ 0 0.0)
  4219. => +nan.0
  4220. (/ 0)
  4221. ERROR: Numerical overflow
  4222. Two new predicates 'inf?' and 'nan?' can be used to test for the
  4223. special values.
  4224. ** Inexact zero can have a sign.
  4225. Guile can now distinguish between plus and minus inexact zero, if your
  4226. platform supports this, too. The two zeros are equal according to
  4227. '=', but not according to 'eqv?'. For example
  4228. (- 0.0)
  4229. => -0.0
  4230. (= 0.0 (- 0.0))
  4231. => #t
  4232. (eqv? 0.0 (- 0.0))
  4233. => #f
  4234. ** Guile now has exact rationals.
  4235. Guile can now represent fractions such as 1/3 exactly. Computing with
  4236. them is also done exactly, of course:
  4237. (* 1/3 3/2)
  4238. => 1/2
  4239. ** 'floor', 'ceiling', 'round' and 'truncate' now return exact numbers
  4240. for exact arguments.
  4241. For example: (floor 2) now returns an exact 2 where in the past it
  4242. returned an inexact 2.0. Likewise, (floor 5/4) returns an exact 1.
  4243. ** inexact->exact no longer returns only integers.
  4244. Without exact rationals, the closest exact number was always an
  4245. integer, but now inexact->exact returns the fraction that is exactly
  4246. equal to a floating point number. For example:
  4247. (inexact->exact 1.234)
  4248. => 694680242521899/562949953421312
  4249. When you want the old behavior, use 'round' explicitly:
  4250. (inexact->exact (round 1.234))
  4251. => 1
  4252. ** New function 'rationalize'.
  4253. This function finds a simple fraction that is close to a given real
  4254. number. For example (and compare with inexact->exact above):
  4255. (rationalize (inexact->exact 1.234) 1/2000)
  4256. => 58/47
  4257. Note that, as required by R5RS, rationalize returns only then an exact
  4258. result when both its arguments are exact.
  4259. ** 'odd?' and 'even?' work also for inexact integers.
  4260. Previously, (odd? 1.0) would signal an error since only exact integers
  4261. were recognized as integers. Now (odd? 1.0) returns #t, (odd? 2.0)
  4262. returns #f and (odd? 1.5) signals an error.
  4263. ** Guile now has uninterned symbols.
  4264. The new function 'make-symbol' will return an uninterned symbol. This
  4265. is a symbol that is unique and is guaranteed to remain unique.
  4266. However, uninterned symbols can not yet be read back in.
  4267. Use the new function 'symbol-interned?' to check whether a symbol is
  4268. interned or not.
  4269. ** pretty-print has more options.
  4270. The function pretty-print from the (ice-9 pretty-print) module can now
  4271. also be invoked with keyword arguments that control things like
  4272. maximum output width. See the manual for details.
  4273. ** Variables have no longer a special behavior for `equal?'.
  4274. Previously, comparing two variables with `equal?' would recursivly
  4275. compare their values. This is no longer done. Variables are now only
  4276. `equal?' if they are `eq?'.
  4277. ** `(begin)' is now valid.
  4278. You can now use an empty `begin' form. It will yield #<unspecified>
  4279. when evaluated and simply be ignored in a definition context.
  4280. ** Deprecated: procedure->macro
  4281. Change your code to use 'define-macro' or r5rs macros. Also, be aware
  4282. that macro expansion will not be done during evaluation, but prior to
  4283. evaluation.
  4284. ** Soft ports now allow a `char-ready?' procedure
  4285. The vector argument to `make-soft-port' can now have a length of
  4286. either 5 or 6. (Previously the length had to be 5.) The optional 6th
  4287. element is interpreted as an `input-waiting' thunk -- i.e. a thunk
  4288. that returns the number of characters that can be read immediately
  4289. without the soft port blocking.
  4290. ** Deprecated: undefine
  4291. There is no replacement for undefine.
  4292. ** The functions make-keyword-from-dash-symbol and keyword-dash-symbol
  4293. have been discouraged.
  4294. They are relics from a time where a keyword like #:foo was used
  4295. directly as a Tcl option "-foo" and thus keywords were internally
  4296. stored as a symbol with a starting dash. We now store a symbol
  4297. without the dash.
  4298. Use symbol->keyword and keyword->symbol instead.
  4299. ** The `cheap' debug option is now obsolete
  4300. Evaluator trap calls are now unconditionally "cheap" - in other words,
  4301. they pass a debug object to the trap handler rather than a full
  4302. continuation. The trap handler code can capture a full continuation
  4303. by using `call-with-current-continuation' in the usual way, if it so
  4304. desires.
  4305. The `cheap' option is retained for now so as not to break existing
  4306. code which gets or sets it, but setting it now has no effect. It will
  4307. be removed in the next major Guile release.
  4308. ** Evaluator trap calls now support `tweaking'
  4309. `Tweaking' means that the trap handler code can modify the Scheme
  4310. expression that is about to be evaluated (in the case of an
  4311. enter-frame trap) or the value that is being returned (in the case of
  4312. an exit-frame trap). The trap handler code indicates that it wants to
  4313. do this by returning a pair whose car is the symbol 'instead and whose
  4314. cdr is the modified expression or return value.
  4315. * Changes to the C interface
  4316. ** The functions scm_hash_fn_remove_x and scm_hashx_remove_x no longer
  4317. take a 'delete' function argument.
  4318. This argument makes no sense since the delete function is used to
  4319. remove a pair from an alist, and this must not be configurable.
  4320. This is an incompatible change.
  4321. ** The GH interface is now subject to the deprecation mechanism
  4322. The GH interface has been deprecated for quite some time but now it is
  4323. actually removed from Guile when it is configured with
  4324. --disable-deprecated.
  4325. See the manual "Transitioning away from GH" for more information.
  4326. ** A new family of functions for converting between C values and
  4327. Scheme values has been added.
  4328. These functions follow a common naming scheme and are designed to be
  4329. easier to use, thread-safe and more future-proof than the older
  4330. alternatives.
  4331. - int scm_is_* (...)
  4332. These are predicates that return a C boolean: 1 or 0. Instead of
  4333. SCM_NFALSEP, you can now use scm_is_true, for example.
  4334. - <type> scm_to_<type> (SCM val, ...)
  4335. These are functions that convert a Scheme value into an appropriate
  4336. C value. For example, you can use scm_to_int to safely convert from
  4337. a SCM to an int.
  4338. - SCM scm_from_<type> (<type> val, ...)
  4339. These functions convert from a C type to a SCM value; for example,
  4340. scm_from_int for ints.
  4341. There is a huge number of these functions, for numbers, strings,
  4342. symbols, vectors, etc. They are documented in the reference manual in
  4343. the API section together with the types that they apply to.
  4344. ** New functions for dealing with complex numbers in C have been added.
  4345. The new functions are scm_c_make_rectangular, scm_c_make_polar,
  4346. scm_c_real_part, scm_c_imag_part, scm_c_magnitude and scm_c_angle.
  4347. They work like scm_make_rectangular etc but take or return doubles
  4348. directly.
  4349. ** The function scm_make_complex has been discouraged.
  4350. Use scm_c_make_rectangular instead.
  4351. ** The INUM macros have been deprecated.
  4352. A lot of code uses these macros to do general integer conversions,
  4353. although the macros only work correctly with fixnums. Use the
  4354. following alternatives.
  4355. SCM_INUMP -> scm_is_integer or similar
  4356. SCM_NINUMP -> !scm_is_integer or similar
  4357. SCM_MAKINUM -> scm_from_int or similar
  4358. SCM_INUM -> scm_to_int or similar
  4359. SCM_VALIDATE_INUM_* -> Do not use these; scm_to_int, etc. will
  4360. do the validating for you.
  4361. ** The scm_num2<type> and scm_<type>2num functions and scm_make_real
  4362. have been discouraged.
  4363. Use the newer scm_to_<type> and scm_from_<type> functions instead for
  4364. new code. The functions have been discouraged since they don't fit
  4365. the naming scheme.
  4366. ** The 'boolean' macros SCM_FALSEP etc have been discouraged.
  4367. They have strange names, especially SCM_NFALSEP, and SCM_BOOLP
  4368. evaluates its argument twice. Use scm_is_true, etc. instead for new
  4369. code.
  4370. ** The macro SCM_EQ_P has been discouraged.
  4371. Use scm_is_eq for new code, which fits better into the naming
  4372. conventions.
  4373. ** The macros SCM_CONSP, SCM_NCONSP, SCM_NULLP, and SCM_NNULLP have
  4374. been discouraged.
  4375. Use the function scm_is_pair or scm_is_null instead.
  4376. ** The functions scm_round and scm_truncate have been deprecated and
  4377. are now available as scm_c_round and scm_c_truncate, respectively.
  4378. These functions occupy the names that scm_round_number and
  4379. scm_truncate_number should have.
  4380. ** The functions scm_c_string2str, scm_c_substring2str, and
  4381. scm_c_symbol2str have been deprecated.
  4382. Use scm_to_locale_stringbuf or similar instead, maybe together with
  4383. scm_substring.
  4384. ** New functions scm_c_make_string, scm_c_string_length,
  4385. scm_c_string_ref, scm_c_string_set_x, scm_c_substring,
  4386. scm_c_substring_shared, scm_c_substring_copy.
  4387. These are like scm_make_string, scm_length, etc. but are slightly
  4388. easier to use from C.
  4389. ** The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
  4390. SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
  4391. They export too many assumptions about the implementation of strings
  4392. and symbols that are no longer true in the presence of
  4393. mutation-sharing substrings and when Guile switches to some form of
  4394. Unicode.
  4395. When working with strings, it is often best to use the normal string
  4396. functions provided by Guile, such as scm_c_string_ref,
  4397. scm_c_string_set_x, scm_string_append, etc. Be sure to look in the
  4398. manual since many more such functions are now provided than
  4399. previously.
  4400. When you want to convert a SCM string to a C string, use the
  4401. scm_to_locale_string function or similar instead. For symbols, use
  4402. scm_symbol_to_string and then work with that string. Because of the
  4403. new string representation, scm_symbol_to_string does not need to copy
  4404. and is thus quite efficient.
  4405. ** Some string, symbol and keyword functions have been discouraged.
  4406. They don't fit into the uniform naming scheme and are not explicit
  4407. about the character encoding.
  4408. Replace according to the following table:
  4409. scm_allocate_string -> scm_c_make_string
  4410. scm_take_str -> scm_take_locale_stringn
  4411. scm_take0str -> scm_take_locale_string
  4412. scm_mem2string -> scm_from_locale_stringn
  4413. scm_str2string -> scm_from_locale_string
  4414. scm_makfrom0str -> scm_from_locale_string
  4415. scm_mem2symbol -> scm_from_locale_symboln
  4416. scm_mem2uninterned_symbol -> scm_from_locale_stringn + scm_make_symbol
  4417. scm_str2symbol -> scm_from_locale_symbol
  4418. SCM_SYMBOL_HASH -> scm_hashq
  4419. SCM_SYMBOL_INTERNED_P -> scm_symbol_interned_p
  4420. scm_c_make_keyword -> scm_from_locale_keyword
  4421. ** The functions scm_keyword_to_symbol and sym_symbol_to_keyword are
  4422. now also available to C code.
  4423. ** SCM_KEYWORDP and SCM_KEYWORDSYM have been deprecated.
  4424. Use scm_is_keyword and scm_keyword_to_symbol instead, but note that
  4425. the latter returns the true name of the keyword, not the 'dash name',
  4426. as SCM_KEYWORDSYM used to do.
  4427. ** A new way to access arrays in a thread-safe and efficient way has
  4428. been added.
  4429. See the manual, node "Accessing Arrays From C".
  4430. ** The old uniform vector and bitvector implementations have been
  4431. unceremoniously removed.
  4432. This implementation exposed the details of the tagging system of
  4433. Guile. Use the new C API explained in the manual in node "Uniform
  4434. Numeric Vectors" and "Bit Vectors", respectively.
  4435. The following macros are gone: SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
  4436. SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
  4437. SCM_SET_UVECTOR_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
  4438. SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
  4439. SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
  4440. SCM_SET_BITVECTOR_LENGTH, SCM_BITVEC_REF, SCM_BITVEC_SET,
  4441. SCM_BITVEC_CLR.
  4442. ** The macros dealing with vectors have been deprecated.
  4443. Use the new functions scm_is_vector, scm_vector_elements,
  4444. scm_vector_writable_elements, etc, or scm_is_simple_vector,
  4445. SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET, etc instead. See the
  4446. manual for more details.
  4447. Deprecated are SCM_VECTORP, SCM_VELTS, SCM_VECTOR_MAX_LENGTH,
  4448. SCM_VECTOR_LENGTH, SCM_VECTOR_REF, SCM_VECTOR_SET, SCM_WRITABLE_VELTS.
  4449. The following macros have been removed: SCM_VECTOR_BASE,
  4450. SCM_SET_VECTOR_BASE, SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
  4451. SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS.
  4452. ** Some C functions and macros related to arrays have been deprecated.
  4453. Migrate according to the following table:
  4454. scm_make_uve -> scm_make_typed_array, scm_make_u8vector etc.
  4455. scm_make_ra -> scm_make_array
  4456. scm_shap2ra -> scm_make_array
  4457. scm_cvref -> scm_c_generalized_vector_ref
  4458. scm_ra_set_contp -> do not use
  4459. scm_aind -> scm_array_handle_pos
  4460. scm_raprin1 -> scm_display or scm_write
  4461. SCM_ARRAYP -> scm_is_array
  4462. SCM_ARRAY_NDIM -> scm_c_array_rank
  4463. SCM_ARRAY_DIMS -> scm_array_handle_dims
  4464. SCM_ARRAY_CONTP -> do not use
  4465. SCM_ARRAY_MEM -> do not use
  4466. SCM_ARRAY_V -> scm_array_handle_elements or similar
  4467. SCM_ARRAY_BASE -> do not use
  4468. ** SCM_CELL_WORD_LOC has been deprecated.
  4469. Use the new macro SCM_CELL_OBJECT_LOC instead, which returns a pointer
  4470. to a SCM, as opposed to a pointer to a scm_t_bits.
  4471. This was done to allow the correct use of pointers into the Scheme
  4472. heap. Previously, the heap words were of type scm_t_bits and local
  4473. variables and function arguments were of type SCM, making it
  4474. non-standards-conformant to have a pointer that can point to both.
  4475. ** New macros SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, etc.
  4476. These macros should be used instead of SCM_CELL_WORD_2/3 to access the
  4477. second and third words of double smobs. Likewise for
  4478. SCM_SET_SMOB_DATA_2 and SCM_SET_SMOB_DATA_3.
  4479. Also, there is SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS that should be
  4480. used to get and set the 16 exra bits in the zeroth word of a smob.
  4481. And finally, there is SCM_SMOB_OBJECT and SCM_SMOB_SET_OBJECT for
  4482. accesing the first immediate word of a smob as a SCM value, and there
  4483. is SCM_SMOB_OBJECT_LOC for getting a pointer to the first immediate
  4484. smob word. Like wise for SCM_SMOB_OBJECT_2, etc.
  4485. ** New way to deal with non-local exits and re-entries.
  4486. There is a new set of functions that essentially do what
  4487. scm_internal_dynamic_wind does, but in a way that is more convenient
  4488. for C code in some situations. Here is a quick example of how to
  4489. prevent a potential memory leak:
  4490. void
  4491. foo ()
  4492. {
  4493. char *mem;
  4494. scm_dynwind_begin (0);
  4495. mem = scm_malloc (100);
  4496. scm_dynwind_unwind_handler (free, mem, SCM_F_WIND_EXPLICITLY);
  4497. /* MEM would leak if BAR throws an error.
  4498. SCM_DYNWIND_UNWIND_HANDLER frees it nevertheless.
  4499. */
  4500. bar ();
  4501. scm_dynwind_end ();
  4502. /* Because of SCM_F_WIND_EXPLICITLY, MEM will be freed by
  4503. SCM_DYNWIND_END as well.
  4504. */
  4505. }
  4506. For full documentation, see the node "Dynamic Wind" in the manual.
  4507. ** New function scm_dynwind_free
  4508. This function calls 'free' on a given pointer when a dynwind context
  4509. is left. Thus the call to scm_dynwind_unwind_handler above could be
  4510. replaced with simply scm_dynwind_free (mem).
  4511. ** New functions scm_c_call_with_blocked_asyncs and
  4512. scm_c_call_with_unblocked_asyncs
  4513. Like scm_call_with_blocked_asyncs etc. but for C functions.
  4514. ** New functions scm_dynwind_block_asyncs and scm_dynwind_unblock_asyncs
  4515. In addition to scm_c_call_with_blocked_asyncs you can now also use
  4516. scm_dynwind_block_asyncs in a 'dynwind context' (see above). Likewise for
  4517. scm_c_call_with_unblocked_asyncs and scm_dynwind_unblock_asyncs.
  4518. ** The macros SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
  4519. SCM_REALLOW_INTS have been deprecated.
  4520. They do no longer fulfill their original role of blocking signal
  4521. delivery. Depending on what you want to achieve, replace a pair of
  4522. SCM_DEFER_INTS and SCM_ALLOW_INTS with a dynwind context that locks a
  4523. mutex, blocks asyncs, or both. See node "Critical Sections" in the
  4524. manual.
  4525. ** The value 'scm_mask_ints' is no longer writable.
  4526. Previously, you could set scm_mask_ints directly. This is no longer
  4527. possible. Use scm_c_call_with_blocked_asyncs and
  4528. scm_c_call_with_unblocked_asyncs instead.
  4529. ** New way to temporarily set the current input, output or error ports
  4530. C code can now use scm_dynwind_current_<foo>_port in a 'dynwind
  4531. context' (see above). <foo> is one of "input", "output" or "error".
  4532. ** New way to temporarily set fluids
  4533. C code can now use scm_dynwind_fluid in a 'dynwind context' (see
  4534. above) to temporarily set the value of a fluid.
  4535. ** New types scm_t_intmax and scm_t_uintmax.
  4536. On platforms that have them, these types are identical to intmax_t and
  4537. uintmax_t, respectively. On other platforms, they are identical to
  4538. the largest integer types that Guile knows about.
  4539. ** The functions scm_unmemocopy and scm_unmemoize have been removed.
  4540. You should not have used them.
  4541. ** Many public #defines with generic names have been made private.
  4542. #defines with generic names like HAVE_FOO or SIZEOF_FOO have been made
  4543. private or renamed with a more suitable public name.
  4544. ** The macro SCM_TYP16S has been deprecated.
  4545. This macro is not intended for public use.
  4546. ** The macro SCM_SLOPPY_INEXACTP has been deprecated.
  4547. Use scm_is_true (scm_inexact_p (...)) instead.
  4548. ** The macro SCM_SLOPPY_REALP has been deprecated.
  4549. Use scm_is_real instead.
  4550. ** The macro SCM_SLOPPY_COMPLEXP has been deprecated.
  4551. Use scm_is_complex instead.
  4552. ** Some preprocessor defines have been deprecated.
  4553. These defines indicated whether a certain feature was present in Guile
  4554. or not. Going forward, assume that the features are always present.
  4555. The macros are: USE_THREADS, GUILE_ISELECT, READER_EXTENSIONS,
  4556. DEBUG_EXTENSIONS, DYNAMIC_LINKING.
  4557. The following macros have been removed completely: MEMOIZE_LOCALS,
  4558. SCM_RECKLESS, SCM_CAUTIOUS.
  4559. ** The preprocessor define STACK_DIRECTION has been deprecated.
  4560. There should be no need to know about the stack direction for ordinary
  4561. programs.
  4562. ** New function: scm_effective_version
  4563. Returns the "effective" version number. This is just the normal full
  4564. version string without the final micro-version number. See "Changes
  4565. to the distribution" above.
  4566. ** The function scm_call_with_new_thread has a new prototype.
  4567. Instead of taking a list with the thunk and handler, these two
  4568. arguments are now passed directly:
  4569. SCM scm_call_with_new_thread (SCM thunk, SCM handler);
  4570. This is an incompatible change.
  4571. ** New snarfer macro SCM_DEFINE_PUBLIC.
  4572. This is like SCM_DEFINE, but also calls scm_c_export for the defined
  4573. function in the init section.
  4574. ** The snarfer macro SCM_SNARF_INIT is now officially supported.
  4575. ** Garbage collector rewrite.
  4576. The garbage collector is cleaned up a lot, and now uses lazy
  4577. sweeping. This is reflected in the output of (gc-stats); since cells
  4578. are being freed when they are allocated, the cells-allocated field
  4579. stays roughly constant.
  4580. For malloc related triggers, the behavior is changed. It uses the same
  4581. heuristic as the cell-triggered collections. It may be tuned with the
  4582. environment variables GUILE_MIN_YIELD_MALLOC. This is the percentage
  4583. for minimum yield of malloc related triggers. The default is 40.
  4584. GUILE_INIT_MALLOC_LIMIT sets the initial trigger for doing a GC. The
  4585. default is 200 kb.
  4586. Debugging operations for the freelist have been deprecated, along with
  4587. the C variables that control garbage collection. The environment
  4588. variables GUILE_MAX_SEGMENT_SIZE, GUILE_INIT_SEGMENT_SIZE_2,
  4589. GUILE_INIT_SEGMENT_SIZE_1, and GUILE_MIN_YIELD_2 should be used.
  4590. For understanding the memory usage of a GUILE program, the routine
  4591. gc-live-object-stats returns an alist containing the number of live
  4592. objects for every type.
  4593. ** The function scm_definedp has been renamed to scm_defined_p
  4594. The name scm_definedp is deprecated.
  4595. ** The struct scm_cell type has been renamed to scm_t_cell
  4596. This is in accordance to Guile's naming scheme for types. Note that
  4597. the name scm_cell is now used for a function that allocates and
  4598. initializes a new cell (see below).
  4599. ** New functions for memory management
  4600. A new set of functions for memory management has been added since the
  4601. old way (scm_must_malloc, scm_must_free, etc) was error prone and
  4602. indeed, Guile itself contained some long standing bugs that could
  4603. cause aborts in long running programs.
  4604. The new functions are more symmetrical and do not need cooperation
  4605. from smob free routines, among other improvements.
  4606. The new functions are scm_malloc, scm_realloc, scm_calloc, scm_strdup,
  4607. scm_strndup, scm_gc_malloc, scm_gc_calloc, scm_gc_realloc,
  4608. scm_gc_free, scm_gc_register_collectable_memory, and
  4609. scm_gc_unregister_collectable_memory. Refer to the manual for more
  4610. details and for upgrading instructions.
  4611. The old functions for memory management have been deprecated. They
  4612. are: scm_must_malloc, scm_must_realloc, scm_must_free,
  4613. scm_must_strdup, scm_must_strndup, scm_done_malloc, scm_done_free.
  4614. ** Declarations of exported features are marked with SCM_API.
  4615. Every declaration of a feature that belongs to the exported Guile API
  4616. has been marked by adding the macro "SCM_API" to the start of the
  4617. declaration. This macro can expand into different things, the most
  4618. common of which is just "extern" for Unix platforms. On Win32, it can
  4619. be used to control which symbols are exported from a DLL.
  4620. If you `#define SCM_IMPORT' before including <libguile.h>, SCM_API
  4621. will expand into "__declspec (dllimport) extern", which is needed for
  4622. linking to the Guile DLL in Windows.
  4623. There are also SCM_RL_IMPORT, SCM_SRFI1314_IMPORT, and
  4624. SCM_SRFI4_IMPORT, for the corresponding libraries.
  4625. ** SCM_NEWCELL and SCM_NEWCELL2 have been deprecated.
  4626. Use the new functions scm_cell and scm_double_cell instead. The old
  4627. macros had problems because with them allocation and initialization
  4628. was separated and the GC could sometimes observe half initialized
  4629. cells. Only careful coding by the user of SCM_NEWCELL and
  4630. SCM_NEWCELL2 could make this safe and efficient.
  4631. ** CHECK_ENTRY, CHECK_APPLY and CHECK_EXIT have been deprecated.
  4632. Use the variables scm_check_entry_p, scm_check_apply_p and scm_check_exit_p
  4633. instead.
  4634. ** SRCBRKP has been deprecated.
  4635. Use scm_c_source_property_breakpoint_p instead.
  4636. ** Deprecated: scm_makmacro
  4637. Change your code to use either scm_makmmacro or to define macros in
  4638. Scheme, using 'define-macro'.
  4639. ** New function scm_c_port_for_each.
  4640. This function is like scm_port_for_each but takes a pointer to a C
  4641. function as the callback instead of a SCM value.
  4642. ** The names scm_internal_select, scm_thread_sleep, and
  4643. scm_thread_usleep have been discouraged.
  4644. Use scm_std_select, scm_std_sleep, scm_std_usleep instead.
  4645. ** The GC can no longer be blocked.
  4646. The global flags scm_gc_heap_lock and scm_block_gc have been removed.
  4647. The GC can now run (partially) concurrently with other code and thus
  4648. blocking it is not well defined.
  4649. ** Many definitions have been removed that were previously deprecated.
  4650. scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify, s_t_ify,
  4651. scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify, scm_m_0_ify, s_1_ify,
  4652. scm_m_1_ify, scm_debug_newcell, scm_debug_newcell2,
  4653. scm_tc16_allocated, SCM_SET_SYMBOL_HASH, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
  4654. SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY, SCM_GC_SET_ALLOCATED,
  4655. scm_debug_newcell, scm_debug_newcell2, SCM_HUP_SIGNAL, SCM_INT_SIGNAL,
  4656. SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL,
  4657. SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG,
  4658. SCM_NUM_SIGS, scm_top_level_lookup_closure_var,
  4659. *top-level-lookup-closure*, scm_system_transformer, scm_eval_3,
  4660. scm_eval2, root_module_lookup_closure, SCM_SLOPPY_STRINGP,
  4661. SCM_RWSTRINGP, scm_read_only_string_p, scm_make_shared_substring,
  4662. scm_tc7_substring, sym_huh, SCM_VARVCELL, SCM_UDVARIABLEP,
  4663. SCM_DEFVARIABLEP, scm_mkbig, scm_big2inum, scm_adjbig, scm_normbig,
  4664. scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl, SCM_FIXNUM_BIT,
  4665. SCM_SETCHARS, SCM_SLOPPY_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET,
  4666. SCM_LENGTH_MAX, SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH,
  4667. SCM_ROCHARS, SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR,
  4668. scm_sym2vcell, scm_intern, scm_intern0, scm_sysintern, scm_sysintern0,
  4669. scm_sysintern0_no_module_lookup, scm_init_symbols_deprecated,
  4670. scm_vector_set_length_x, scm_contregs, scm_debug_info,
  4671. scm_debug_frame, SCM_DSIDEVAL, SCM_CONST_LONG, SCM_VCELL,
  4672. SCM_GLOBAL_VCELL, SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT,
  4673. SCM_HUGE_LENGTH, SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
  4674. SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
  4675. SCM_VALIDATE_RWSTRING, DIGITS, scm_small_istr2int, scm_istr2int,
  4676. scm_istr2flo, scm_istring2number, scm_istr2int, scm_istr2flo,
  4677. scm_istring2number, scm_vtable_index_vcell, scm_si_vcell, SCM_ECONSP,
  4678. SCM_NECONSP, SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL,
  4679. SCM_GLOC_VAL_LOC, scm_make_gloc, scm_gloc_p, scm_tc16_variable,
  4680. SCM_CHARS, SCM_LENGTH, SCM_SET_STRING_CHARS, SCM_SET_STRING_LENGTH.
  4681. * Changes to bundled modules
  4682. ** (ice-9 debug)
  4683. Using the (ice-9 debug) module no longer automatically switches Guile
  4684. to use the debugging evaluator. If you want to switch to the
  4685. debugging evaluator (which is needed for backtrace information if you
  4686. hit an error), please add an explicit "(debug-enable 'debug)" to your
  4687. code just after the code to use (ice-9 debug).
  4688. Changes since Guile 1.4:
  4689. * Changes to the distribution
  4690. ** A top-level TODO file is included.
  4691. ** Guile now uses a versioning scheme similar to that of the Linux kernel.
  4692. Guile now always uses three numbers to represent the version,
  4693. i.e. "1.6.5". The first number, 1, is the major version number, the
  4694. second number, 6, is the minor version number, and the third number,
  4695. 5, is the micro version number. Changes in major version number
  4696. indicate major changes in Guile.
  4697. Minor version numbers that are even denote stable releases, and odd
  4698. minor version numbers denote development versions (which may be
  4699. unstable). The micro version number indicates a minor sub-revision of
  4700. a given MAJOR.MINOR release.
  4701. In keeping with the new scheme, (minor-version) and scm_minor_version
  4702. no longer return everything but the major version number. They now
  4703. just return the minor version number. Two new functions
  4704. (micro-version) and scm_micro_version have been added to report the
  4705. micro version number.
  4706. In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
  4707. ** New preprocessor definitions are available for checking versions.
  4708. version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
  4709. SCM_MICRO_VERSION to the appropriate integer values.
  4710. ** Guile now actively warns about deprecated features.
  4711. The new configure option `--enable-deprecated=LEVEL' and the
  4712. environment variable GUILE_WARN_DEPRECATED control this mechanism.
  4713. See INSTALL and README for more information.
  4714. ** Guile is much more likely to work on 64-bit architectures.
  4715. Guile now compiles and passes "make check" with only two UNRESOLVED GC
  4716. cases on Alpha and ia64 based machines now. Thanks to John Goerzen
  4717. for the use of a test machine, and thanks to Stefan Jahn for ia64
  4718. patches.
  4719. ** New functions: setitimer and getitimer.
  4720. These implement a fairly direct interface to the libc functions of the
  4721. same name.
  4722. ** The #. reader extension is now disabled by default.
  4723. For safety reasons, #. evaluation is disabled by default. To
  4724. re-enable it, set the fluid read-eval? to #t. For example:
  4725. (fluid-set! read-eval? #t)
  4726. but make sure you realize the potential security risks involved. With
  4727. read-eval? enabled, reading a data file from an untrusted source can
  4728. be dangerous.
  4729. ** New SRFI modules have been added:
  4730. SRFI-0 `cond-expand' is now supported in Guile, without requiring
  4731. using a module.
  4732. (srfi srfi-1) is a library containing many useful pair- and list-processing
  4733. procedures.
  4734. (srfi srfi-2) exports and-let*.
  4735. (srfi srfi-4) implements homogeneous numeric vector datatypes.
  4736. (srfi srfi-6) is a dummy module for now, since guile already provides
  4737. all of the srfi-6 procedures by default: open-input-string,
  4738. open-output-string, get-output-string.
  4739. (srfi srfi-8) exports receive.
  4740. (srfi srfi-9) exports define-record-type.
  4741. (srfi srfi-10) exports define-reader-ctor and implements the reader
  4742. extension #,().
  4743. (srfi srfi-11) exports let-values and let*-values.
  4744. (srfi srfi-13) implements the SRFI String Library.
  4745. (srfi srfi-14) implements the SRFI Character-Set Library.
  4746. (srfi srfi-17) implements setter and getter-with-setter and redefines
  4747. some accessor procedures as procedures with getters. (such as car,
  4748. cdr, vector-ref etc.)
  4749. (srfi srfi-19) implements the SRFI Time/Date Library.
  4750. ** New scripts / "executable modules"
  4751. Subdirectory "scripts" contains Scheme modules that are packaged to
  4752. also be executable as scripts. At this time, these scripts are available:
  4753. display-commentary
  4754. doc-snarf
  4755. generate-autoload
  4756. punify
  4757. read-scheme-source
  4758. use2dot
  4759. See README there for more info.
  4760. These scripts can be invoked from the shell with the new program
  4761. "guile-tools", which keeps track of installation directory for you.
  4762. For example:
  4763. $ guile-tools display-commentary srfi/*.scm
  4764. guile-tools is copied to the standard $bindir on "make install".
  4765. ** New module (ice-9 stack-catch):
  4766. stack-catch is like catch, but saves the current state of the stack in
  4767. the fluid the-last-stack. This fluid can be useful when using the
  4768. debugger and when re-throwing an error.
  4769. ** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
  4770. This has been done to prevent problems on lesser operating systems
  4771. that can't tolerate `*'s in file names. The exported macro continues
  4772. to be named `and-let*', of course.
  4773. On systems that support it, there is also a compatibility module named
  4774. (ice-9 and-let*). It will go away in the next release.
  4775. ** New modules (oop goops) etc.:
  4776. (oop goops)
  4777. (oop goops describe)
  4778. (oop goops save)
  4779. (oop goops active-slot)
  4780. (oop goops composite-slot)
  4781. The Guile Object Oriented Programming System (GOOPS) has been
  4782. integrated into Guile. For further information, consult the GOOPS
  4783. manual and tutorial in the `doc' directory.
  4784. ** New module (ice-9 rdelim).
  4785. This exports the following procedures which were previously defined
  4786. in the default environment:
  4787. read-line read-line! read-delimited read-delimited! %read-delimited!
  4788. %read-line write-line
  4789. For backwards compatibility the definitions are still imported into the
  4790. default environment in this version of Guile. However you should add:
  4791. (use-modules (ice-9 rdelim))
  4792. to any program which uses the definitions, since this may change in
  4793. future.
  4794. Alternatively, if guile-scsh is installed, the (scsh rdelim) module
  4795. can be used for similar functionality.
  4796. ** New module (ice-9 rw)
  4797. This is a subset of the (scsh rw) module from guile-scsh. Currently
  4798. it defines two procedures:
  4799. *** New function: read-string!/partial str [port_or_fdes [start [end]]]
  4800. Read characters from a port or file descriptor into a string STR.
  4801. A port must have an underlying file descriptor -- a so-called
  4802. fport. This procedure is scsh-compatible and can efficiently read
  4803. large strings.
  4804. *** New function: write-string/partial str [port_or_fdes [start [end]]]
  4805. Write characters from a string STR to a port or file descriptor.
  4806. A port must have an underlying file descriptor -- a so-called
  4807. fport. This procedure is mostly compatible and can efficiently
  4808. write large strings.
  4809. ** New module (ice-9 match)
  4810. This module includes Andrew K. Wright's pattern matcher. See
  4811. ice-9/match.scm for brief description or
  4812. http://www.star-lab.com/wright/code.html
  4813. for complete documentation.
  4814. ** New module (ice-9 buffered-input)
  4815. This module provides procedures to construct an input port from an
  4816. underlying source of input that reads and returns its input in chunks.
  4817. The underlying input source is a Scheme procedure, specified by the
  4818. caller, which the port invokes whenever it needs more input.
  4819. This is useful when building an input port whose back end is Readline
  4820. or a UI element such as the GtkEntry widget.
  4821. ** Documentation
  4822. The reference and tutorial documentation that was previously
  4823. distributed separately, as `guile-doc', is now included in the core
  4824. Guile distribution. The documentation consists of the following
  4825. manuals.
  4826. - The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
  4827. to using Guile.
  4828. - The Guile Reference Manual (guile.texi) contains (or is intended to
  4829. contain) reference documentation on all aspects of Guile.
  4830. - The GOOPS Manual (goops.texi) contains both tutorial-style and
  4831. reference documentation for using GOOPS, Guile's Object Oriented
  4832. Programming System.
  4833. - The Revised^5 Report on the Algorithmic Language Scheme
  4834. (r5rs.texi).
  4835. See the README file in the `doc' directory for more details.
  4836. ** There are a couple of examples in the examples/ directory now.
  4837. * Changes to the stand-alone interpreter
  4838. ** New command line option `--use-srfi'
  4839. Using this option, SRFI modules can be loaded on startup and be
  4840. available right from the beginning. This makes programming portable
  4841. Scheme programs easier.
  4842. The option `--use-srfi' expects a comma-separated list of numbers,
  4843. each representing a SRFI number to be loaded into the interpreter
  4844. before starting evaluating a script file or the REPL. Additionally,
  4845. the feature identifier for the loaded SRFIs is recognized by
  4846. `cond-expand' when using this option.
  4847. Example:
  4848. $ guile --use-srfi=8,13
  4849. guile> (receive (x z) (values 1 2) (+ 1 2))
  4850. 3
  4851. guile> (string-pad "bla" 20)
  4852. " bla"
  4853. ** Guile now always starts up in the `(guile-user)' module.
  4854. Previously, scripts executed via the `-s' option would run in the
  4855. `(guile)' module and the repl would run in the `(guile-user)' module.
  4856. Now every user action takes place in the `(guile-user)' module by
  4857. default.
  4858. * Changes to Scheme functions and syntax
  4859. ** Character classifiers work for non-ASCII characters.
  4860. The predicates `char-alphabetic?', `char-numeric?',
  4861. `char-whitespace?', `char-lower?', `char-upper?' and `char-is-both?'
  4862. no longer check whether their arguments are ASCII characters.
  4863. Previously, a character would only be considered alphabetic when it
  4864. was also ASCII, for example.
  4865. ** Previously deprecated Scheme functions have been removed:
  4866. tag - no replacement.
  4867. fseek - replaced by seek.
  4868. list* - replaced by cons*.
  4869. ** It's now possible to create modules with controlled environments
  4870. Example:
  4871. (use-modules (ice-9 safe))
  4872. (define m (make-safe-module))
  4873. ;;; m will now be a module containing only a safe subset of R5RS
  4874. (eval '(+ 1 2) m) --> 3
  4875. (eval 'load m) --> ERROR: Unbound variable: load
  4876. ** Evaluation of "()", the empty list, is now an error.
  4877. Previously, the expression "()" evaluated to the empty list. This has
  4878. been changed to signal a "missing expression" error. The correct way
  4879. to write the empty list as a literal constant is to use quote: "'()".
  4880. ** New concept of `Guile Extensions'.
  4881. A Guile Extension is just a ordinary shared library that can be linked
  4882. at run-time. We found it advantageous to give this simple concept a
  4883. dedicated name to distinguish the issues related to shared libraries
  4884. from the issues related to the module system.
  4885. *** New function: load-extension
  4886. Executing (load-extension lib init) is mostly equivalent to
  4887. (dynamic-call init (dynamic-link lib))
  4888. except when scm_register_extension has been called previously.
  4889. Whenever appropriate, you should use `load-extension' instead of
  4890. dynamic-link and dynamic-call.
  4891. *** New C function: scm_c_register_extension
  4892. This function registers a initialization function for use by
  4893. `load-extension'. Use it when you don't want specific extensions to
  4894. be loaded as shared libraries (for example on platforms that don't
  4895. support dynamic linking).
  4896. ** Auto-loading of compiled-code modules is deprecated.
  4897. Guile used to be able to automatically find and link a shared
  4898. library to satisfy requests for a module. For example, the module
  4899. `(foo bar)' could be implemented by placing a shared library named
  4900. "foo/libbar.so" (or with a different extension) in a directory on the
  4901. load path of Guile.
  4902. This has been found to be too tricky, and is no longer supported. The
  4903. shared libraries are now called "extensions". You should now write a
  4904. small Scheme file that calls `load-extension' to load the shared
  4905. library and initialize it explicitly.
  4906. The shared libraries themselves should be installed in the usual
  4907. places for shared libraries, with names like "libguile-foo-bar".
  4908. For example, place this into a file "foo/bar.scm"
  4909. (define-module (foo bar))
  4910. (load-extension "libguile-foo-bar" "foobar_init")
  4911. ** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
  4912. `eval' is now R5RS, that is it takes two arguments.
  4913. The second argument is an environment specifier, i.e. either
  4914. (scheme-report-environment 5)
  4915. (null-environment 5)
  4916. (interaction-environment)
  4917. or
  4918. any module.
  4919. ** The module system has been made more disciplined.
  4920. The function `eval' will save and restore the current module around
  4921. the evaluation of the specified expression. While this expression is
  4922. evaluated, `(current-module)' will now return the right module, which
  4923. is the module specified as the second argument to `eval'.
  4924. A consequence of this change is that `eval' is not particularly
  4925. useful when you want allow the evaluated code to change what module is
  4926. designated as the current module and have this change persist from one
  4927. call to `eval' to the next. The read-eval-print-loop is an example
  4928. where `eval' is now inadequate. To compensate, there is a new
  4929. function `primitive-eval' that does not take a module specifier and
  4930. that does not save/restore the current module. You should use this
  4931. function together with `set-current-module', `current-module', etc
  4932. when you want to have more control over the state that is carried from
  4933. one eval to the next.
  4934. Additionally, it has been made sure that forms that are evaluated at
  4935. the top level are always evaluated with respect to the current module.
  4936. Previously, subforms of top-level forms such as `begin', `case',
  4937. etc. did not respect changes to the current module although these
  4938. subforms are at the top-level as well.
  4939. To prevent strange behavior, the forms `define-module',
  4940. `use-modules', `use-syntax', and `export' have been restricted to only
  4941. work on the top level. The forms `define-public' and
  4942. `defmacro-public' only export the new binding on the top level. They
  4943. behave just like `define' and `defmacro', respectively, when they are
  4944. used in a lexical environment.
  4945. Also, `export' will no longer silently re-export bindings imported
  4946. from a used module. It will emit a `deprecation' warning and will
  4947. cease to perform any re-export in the next version. If you actually
  4948. want to re-export bindings, use the new `re-export' in place of
  4949. `export'. The new `re-export' will not make copies of variables when
  4950. rexporting them, as `export' did wrongly.
  4951. ** Module system now allows selection and renaming of imported bindings
  4952. Previously, when using `use-modules' or the `#:use-module' clause in
  4953. the `define-module' form, all the bindings (association of symbols to
  4954. values) for imported modules were added to the "current module" on an
  4955. as-is basis. This has been changed to allow finer control through two
  4956. new facilities: selection and renaming.
  4957. You can now select which of the imported module's bindings are to be
  4958. visible in the current module by using the `:select' clause. This
  4959. clause also can be used to rename individual bindings. For example:
  4960. ;; import all bindings no questions asked
  4961. (use-modules (ice-9 common-list))
  4962. ;; import four bindings, renaming two of them;
  4963. ;; the current module sees: every some zonk-y zonk-n
  4964. (use-modules ((ice-9 common-list)
  4965. :select (every some
  4966. (remove-if . zonk-y)
  4967. (remove-if-not . zonk-n))))
  4968. You can also programmatically rename all selected bindings using the
  4969. `:renamer' clause, which specifies a proc that takes a symbol and
  4970. returns another symbol. Because it is common practice to use a prefix,
  4971. we now provide the convenience procedure `symbol-prefix-proc'. For
  4972. example:
  4973. ;; import four bindings, renaming two of them specifically,
  4974. ;; and all four w/ prefix "CL:";
  4975. ;; the current module sees: CL:every CL:some CL:zonk-y CL:zonk-n
  4976. (use-modules ((ice-9 common-list)
  4977. :select (every some
  4978. (remove-if . zonk-y)
  4979. (remove-if-not . zonk-n))
  4980. :renamer (symbol-prefix-proc 'CL:)))
  4981. ;; import four bindings, renaming two of them specifically,
  4982. ;; and all four by upcasing.
  4983. ;; the current module sees: EVERY SOME ZONK-Y ZONK-N
  4984. (define (upcase-symbol sym)
  4985. (string->symbol (string-upcase (symbol->string sym))))
  4986. (use-modules ((ice-9 common-list)
  4987. :select (every some
  4988. (remove-if . zonk-y)
  4989. (remove-if-not . zonk-n))
  4990. :renamer upcase-symbol))
  4991. Note that programmatic renaming is done *after* individual renaming.
  4992. Also, the above examples show `use-modules', but the same facilities are
  4993. available for the `#:use-module' clause of `define-module'.
  4994. See manual for more info.
  4995. ** The semantics of guardians have changed.
  4996. The changes are for the most part compatible. An important criterion
  4997. was to keep the typical usage of guardians as simple as before, but to
  4998. make the semantics safer and (as a result) more useful.
  4999. *** All objects returned from guardians are now properly alive.
  5000. It is now guaranteed that any object referenced by an object returned
  5001. from a guardian is alive. It's now impossible for a guardian to
  5002. return a "contained" object before its "containing" object.
  5003. One incompatible (but probably not very important) change resulting
  5004. from this is that it is no longer possible to guard objects that
  5005. indirectly reference themselves (i.e. are parts of cycles). If you do
  5006. so accidentally, you'll get a warning.
  5007. *** There are now two types of guardians: greedy and sharing.
  5008. If you call (make-guardian #t) or just (make-guardian), you'll get a
  5009. greedy guardian, and for (make-guardian #f) a sharing guardian.
  5010. Greedy guardians are the default because they are more "defensive".
  5011. You can only greedily guard an object once. If you guard an object
  5012. more than once, once in a greedy guardian and the rest of times in
  5013. sharing guardians, then it is guaranteed that the object won't be
  5014. returned from sharing guardians as long as it is greedily guarded
  5015. and/or alive.
  5016. Guardians returned by calls to `make-guardian' can now take one more
  5017. optional parameter, which says whether to throw an error in case an
  5018. attempt is made to greedily guard an object that is already greedily
  5019. guarded. The default is true, i.e. throw an error. If the parameter
  5020. is false, the guardian invocation returns #t if guarding was
  5021. successful and #f if it wasn't.
  5022. Also, since greedy guarding is, in effect, a side-effecting operation
  5023. on objects, a new function is introduced: `destroy-guardian!'.
  5024. Invoking this function on a guardian renders it unoperative and, if
  5025. the guardian is greedy, clears the "greedily guarded" property of the
  5026. objects that were guarded by it, thus undoing the side effect.
  5027. Note that all this hair is hardly very important, since guardian
  5028. objects are usually permanent.
  5029. ** Continuations created by call-with-current-continuation now accept
  5030. any number of arguments, as required by R5RS.
  5031. ** New function `issue-deprecation-warning'
  5032. This function is used to display the deprecation messages that are
  5033. controlled by GUILE_WARN_DEPRECATION as explained in the README.
  5034. (define (id x)
  5035. (issue-deprecation-warning "`id' is deprecated. Use `identity' instead.")
  5036. (identity x))
  5037. guile> (id 1)
  5038. ;; `id' is deprecated. Use `identity' instead.
  5039. 1
  5040. guile> (id 1)
  5041. 1
  5042. ** New syntax `begin-deprecated'
  5043. When deprecated features are included (as determined by the configure
  5044. option --enable-deprecated), `begin-deprecated' is identical to
  5045. `begin'. When deprecated features are excluded, it always evaluates
  5046. to `#f', ignoring the body forms.
  5047. ** New function `make-object-property'
  5048. This function returns a new `procedure with setter' P that can be used
  5049. to attach a property to objects. When calling P as
  5050. (set! (P obj) val)
  5051. where `obj' is any kind of object, it attaches `val' to `obj' in such
  5052. a way that it can be retrieved by calling P as
  5053. (P obj)
  5054. This function will replace procedure properties, symbol properties and
  5055. source properties eventually.
  5056. ** Module (ice-9 optargs) now uses keywords instead of `#&'.
  5057. Instead of #&optional, #&key, etc you should now use #:optional,
  5058. #:key, etc. Since #:optional is a keyword, you can write it as just
  5059. :optional when (read-set! keywords 'prefix) is active.
  5060. The old reader syntax `#&' is still supported, but deprecated. It
  5061. will be removed in the next release.
  5062. ** New define-module option: pure
  5063. Tells the module system not to include any bindings from the root
  5064. module.
  5065. Example:
  5066. (define-module (totally-empty-module)
  5067. :pure)
  5068. ** New define-module option: export NAME1 ...
  5069. Export names NAME1 ...
  5070. This option is required if you want to be able to export bindings from
  5071. a module which doesn't import one of `define-public' or `export'.
  5072. Example:
  5073. (define-module (foo)
  5074. :pure
  5075. :use-module (ice-9 r5rs)
  5076. :export (bar))
  5077. ;;; Note that we're pure R5RS below this point!
  5078. (define (bar)
  5079. ...)
  5080. ** New function: object->string OBJ
  5081. Return a Scheme string obtained by printing a given object.
  5082. ** New function: port? X
  5083. Returns a boolean indicating whether X is a port. Equivalent to
  5084. `(or (input-port? X) (output-port? X))'.
  5085. ** New function: file-port?
  5086. Determines whether a given object is a port that is related to a file.
  5087. ** New function: port-for-each proc
  5088. Apply PROC to each port in the Guile port table in turn. The return
  5089. value is unspecified. More specifically, PROC is applied exactly once
  5090. to every port that exists in the system at the time PORT-FOR-EACH is
  5091. invoked. Changes to the port table while PORT-FOR-EACH is running
  5092. have no effect as far as PORT-FOR-EACH is concerned.
  5093. ** New function: dup2 oldfd newfd
  5094. A simple wrapper for the `dup2' system call. Copies the file
  5095. descriptor OLDFD to descriptor number NEWFD, replacing the
  5096. previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
  5097. Unlike for dup->fdes or primitive-move->fdes, no attempt is made
  5098. to move away ports which are using NEWFD. The return value is
  5099. unspecified.
  5100. ** New function: close-fdes fd
  5101. A simple wrapper for the `close' system call. Close file
  5102. descriptor FD, which must be an integer. Unlike close (*note
  5103. close: Ports and File Descriptors.), the file descriptor will be
  5104. closed even if a port is using it. The return value is
  5105. unspecified.
  5106. ** New function: crypt password salt
  5107. Encrypts `password' using the standard unix password encryption
  5108. algorithm.
  5109. ** New function: chroot path
  5110. Change the root directory of the running process to `path'.
  5111. ** New functions: getlogin, cuserid
  5112. Return the login name or the user name of the current effective user
  5113. id, respectively.
  5114. ** New functions: getpriority which who, setpriority which who prio
  5115. Get or set the priority of the running process.
  5116. ** New function: getpass prompt
  5117. Read a password from the terminal, first displaying `prompt' and
  5118. disabling echoing.
  5119. ** New function: flock file operation
  5120. Set/remove an advisory shared or exclusive lock on `file'.
  5121. ** New functions: sethostname name, gethostname
  5122. Set or get the hostname of the machine the current process is running
  5123. on.
  5124. ** New function: mkstemp! tmpl
  5125. mkstemp creates a new unique file in the file system and returns a
  5126. new buffered port open for reading and writing to the file. TMPL
  5127. is a string specifying where the file should be created: it must
  5128. end with `XXXXXX' and will be changed in place to return the name
  5129. of the temporary file.
  5130. ** New function: open-input-string string
  5131. Return an input string port which delivers the characters from
  5132. `string'. This procedure, together with `open-output-string' and
  5133. `get-output-string' implements SRFI-6.
  5134. ** New function: open-output-string
  5135. Return an output string port which collects all data written to it.
  5136. The data can then be retrieved by `get-output-string'.
  5137. ** New function: get-output-string
  5138. Return the contents of an output string port.
  5139. ** New function: identity
  5140. Return the argument.
  5141. ** socket, connect, accept etc., now have support for IPv6. IPv6 addresses
  5142. are represented in Scheme as integers with normal host byte ordering.
  5143. ** New function: inet-pton family address
  5144. Convert a printable string network address into an integer. Note that
  5145. unlike the C version of this function, the result is an integer with
  5146. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  5147. e.g.,
  5148. (inet-pton AF_INET "127.0.0.1") => 2130706433
  5149. (inet-pton AF_INET6 "::1") => 1
  5150. ** New function: inet-ntop family address
  5151. Convert an integer network address into a printable string. Note that
  5152. unlike the C version of this function, the input is an integer with
  5153. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  5154. e.g.,
  5155. (inet-ntop AF_INET 2130706433) => "127.0.0.1"
  5156. (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
  5157. ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
  5158. ** Deprecated: id
  5159. Use `identity' instead.
  5160. ** Deprecated: -1+
  5161. Use `1-' instead.
  5162. ** Deprecated: return-it
  5163. Do without it.
  5164. ** Deprecated: string-character-length
  5165. Use `string-length' instead.
  5166. ** Deprecated: flags
  5167. Use `logior' instead.
  5168. ** Deprecated: close-all-ports-except.
  5169. This was intended for closing ports in a child process after a fork,
  5170. but it has the undesirable side effect of flushing buffers.
  5171. port-for-each is more flexible.
  5172. ** The (ice-9 popen) module now attempts to set up file descriptors in
  5173. the child process from the current Scheme ports, instead of using the
  5174. current values of file descriptors 0, 1, and 2 in the parent process.
  5175. ** Removed function: builtin-weak-bindings
  5176. There is no such concept as a weak binding any more.
  5177. ** Removed constants: bignum-radix, scm-line-incrementors
  5178. ** define-method: New syntax mandatory.
  5179. The new method syntax is now mandatory:
  5180. (define-method (NAME ARG-SPEC ...) BODY ...)
  5181. (define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
  5182. ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
  5183. REST-ARG ::= ARG-NAME
  5184. If you have old code using the old syntax, import
  5185. (oop goops old-define-method) before (oop goops) as in:
  5186. (use-modules (oop goops old-define-method) (oop goops))
  5187. ** Deprecated function: builtin-variable
  5188. Removed function: builtin-bindings
  5189. There is no longer a distinction between builtin or other variables.
  5190. Use module system operations for all variables.
  5191. ** Lazy-catch handlers are no longer allowed to return.
  5192. That is, a call to `throw', `error', etc is now guaranteed to not
  5193. return.
  5194. ** Bugfixes for (ice-9 getopt-long)
  5195. This module is now tested using test-suite/tests/getopt-long.test.
  5196. The following bugs have been fixed:
  5197. *** Parsing for options that are specified to have `optional' args now checks
  5198. if the next element is an option instead of unconditionally taking it as the
  5199. option arg.
  5200. *** An error is now thrown for `--opt=val' when the option description
  5201. does not specify `(value #t)' or `(value optional)'. This condition used to
  5202. be accepted w/o error, contrary to the documentation.
  5203. *** The error message for unrecognized options is now more informative.
  5204. It used to be "not a record", an artifact of the implementation.
  5205. *** The error message for `--opt' terminating the arg list (no value), when
  5206. `(value #t)' is specified, is now more informative. It used to be "not enough
  5207. args".
  5208. *** "Clumped" single-char args now preserve trailing string, use it as arg.
  5209. The expansion used to be like so:
  5210. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "--xyz")
  5211. Note that the "5d" is dropped. Now it is like so:
  5212. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "5d" "--xyz")
  5213. This enables single-char options to have adjoining arguments as long as their
  5214. constituent characters are not potential single-char options.
  5215. ** (ice-9 session) procedure `arity' now works with (ice-9 optargs) `lambda*'
  5216. The `lambda*' and derivative forms in (ice-9 optargs) now set a procedure
  5217. property `arglist', which can be retrieved by `arity'. The result is that
  5218. `arity' can give more detailed information than before:
  5219. Before:
  5220. guile> (use-modules (ice-9 optargs))
  5221. guile> (define* (foo #:optional a b c) a)
  5222. guile> (arity foo)
  5223. 0 or more arguments in `lambda*:G0'.
  5224. After:
  5225. guile> (arity foo)
  5226. 3 optional arguments: `a', `b' and `c'.
  5227. guile> (define* (bar a b #:key c d #:allow-other-keys) a)
  5228. guile> (arity bar)
  5229. 2 required arguments: `a' and `b', 2 keyword arguments: `c'
  5230. and `d', other keywords allowed.
  5231. guile> (define* (baz a b #:optional c #:rest r) a)
  5232. guile> (arity baz)
  5233. 2 required arguments: `a' and `b', 1 optional argument: `c',
  5234. the rest in `r'.
  5235. * Changes to the C interface
  5236. ** Types have been renamed from scm_*_t to scm_t_*.
  5237. This has been done for POSIX sake. It reserves identifiers ending
  5238. with "_t". What a concept.
  5239. The old names are still available with status `deprecated'.
  5240. ** scm_t_bits (former scm_bits_t) is now a unsigned type.
  5241. ** Deprecated features have been removed.
  5242. *** Macros removed
  5243. SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
  5244. SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
  5245. *** C Functions removed
  5246. scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
  5247. scm_fseek - replaced by scm_seek.
  5248. gc-thunk - replaced by after-gc-hook.
  5249. gh_int2scmb - replaced by gh_bool2scm.
  5250. scm_tc_dblr - replaced by scm_tc16_real.
  5251. scm_tc_dblc - replaced by scm_tc16_complex.
  5252. scm_list_star - replaced by scm_cons_star.
  5253. ** Deprecated: scm_makfromstr
  5254. Use scm_mem2string instead.
  5255. ** Deprecated: scm_make_shared_substring
  5256. Explicit shared substrings will disappear from Guile.
  5257. Instead, "normal" strings will be implemented using sharing
  5258. internally, combined with a copy-on-write strategy.
  5259. ** Deprecated: scm_read_only_string_p
  5260. The concept of read-only strings will disappear in next release of
  5261. Guile.
  5262. ** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
  5263. Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
  5264. ** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
  5265. Call a procedure with the indicated number of arguments. See "Fly
  5266. Evaluation" in the manual.
  5267. ** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
  5268. Call a procedure with the indicated number of arguments and a list of
  5269. further arguments. See "Fly Evaluation" in the manual.
  5270. ** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5
  5271. Create a list of the given number of elements. See "List
  5272. Constructors" in the manual.
  5273. ** Renamed function: scm_listify has been replaced by scm_list_n.
  5274. ** Deprecated macros: SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4,
  5275. SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9.
  5276. Use functions scm_list_N instead.
  5277. ** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
  5278. Used by an application to read arbitrary number of bytes from a port.
  5279. Same semantics as libc read, except that scm_c_read only returns less
  5280. than SIZE bytes if at end-of-file.
  5281. Warning: Doesn't update port line and column counts!
  5282. ** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
  5283. Used by an application to write arbitrary number of bytes to an SCM
  5284. port. Similar semantics as libc write. However, unlike libc
  5285. write, scm_c_write writes the requested number of bytes and has no
  5286. return value.
  5287. Warning: Doesn't update port line and column counts!
  5288. ** New function: scm_init_guile ()
  5289. In contrast to scm_boot_guile, scm_init_guile will return normally
  5290. after initializing Guile. It is not available on all systems, tho.
  5291. ** New functions: scm_str2symbol, scm_mem2symbol
  5292. The function scm_str2symbol takes a const char* pointing to a zero-terminated
  5293. field of characters and creates a scheme symbol object from that C string.
  5294. The function scm_mem2symbol takes a const char* and a number of characters and
  5295. creates a symbol from the characters in that memory area.
  5296. ** New functions: scm_primitive_make_property
  5297. scm_primitive_property_ref
  5298. scm_primitive_property_set_x
  5299. scm_primitive_property_del_x
  5300. These functions implement a new way to deal with object properties.
  5301. See libguile/properties.c for their documentation.
  5302. ** New function: scm_done_free (long size)
  5303. This function is the inverse of scm_done_malloc. Use it to report the
  5304. amount of smob memory you free. The previous method, which involved
  5305. calling scm_done_malloc with negative argument, was somewhat
  5306. unintuitive (and is still available, of course).
  5307. ** New function: scm_c_memq (SCM obj, SCM list)
  5308. This function provides a fast C level alternative for scm_memq for the case
  5309. that the list parameter is known to be a proper list. The function is a
  5310. replacement for scm_sloppy_memq, but is stricter in its requirements on its
  5311. list input parameter, since for anything else but a proper list the function's
  5312. behaviour is undefined - it may even crash or loop endlessly. Further, for
  5313. the case that the object is not found in the list, scm_c_memq returns #f which
  5314. is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
  5315. ** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
  5316. scm_remember_upto_here
  5317. These functions replace the function scm_remember.
  5318. ** Deprecated function: scm_remember
  5319. Use one of the new functions scm_remember_upto_here_1,
  5320. scm_remember_upto_here_2 or scm_remember_upto_here instead.
  5321. ** New function: scm_allocate_string
  5322. This function replaces the function scm_makstr.
  5323. ** Deprecated function: scm_makstr
  5324. Use the new function scm_allocate_string instead.
  5325. ** New global variable scm_gc_running_p introduced.
  5326. Use this variable to find out if garbage collection is being executed. Up to
  5327. now applications have used scm_gc_heap_lock to test if garbage collection was
  5328. running, which also works because of the fact that up to know only the garbage
  5329. collector has set this variable. But, this is an implementation detail that
  5330. may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
  5331. of this variable is (and has been) not fully safe anyway.
  5332. ** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
  5333. Use these instead of SCM_LENGTH_MAX.
  5334. ** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
  5335. SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
  5336. SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
  5337. Use these instead of SCM_LENGTH.
  5338. ** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
  5339. SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
  5340. SCM_SET_BITVECTOR_LENGTH
  5341. Use these instead of SCM_SETLENGTH
  5342. ** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
  5343. SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
  5344. SCM_ARRAY_MEM
  5345. Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
  5346. SCM_VELTS.
  5347. ** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
  5348. SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
  5349. SCM_SET_VECTOR_BASE
  5350. Use these instead of SCM_SETCHARS.
  5351. ** New macro: SCM_BITVECTOR_P
  5352. ** New macro: SCM_STRING_COERCE_0TERMINATION_X
  5353. Use instead of SCM_COERCE_SUBSTR.
  5354. ** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
  5355. For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
  5356. ** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
  5357. SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
  5358. SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
  5359. SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
  5360. SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
  5361. SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
  5362. SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
  5363. SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
  5364. SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
  5365. SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
  5366. SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
  5367. SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
  5368. SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
  5369. SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
  5370. SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_SETAND_CAR, SCM_SETOR_CAR
  5371. Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
  5372. Use scm_memory_error instead of SCM_NALLOC.
  5373. Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
  5374. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
  5375. Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
  5376. Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
  5377. Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
  5378. Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
  5379. Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
  5380. Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
  5381. Use SCM_STRINGP instead of SCM_RWSTRINGP.
  5382. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
  5383. Use SCM_STRING_CHARS instead of SCM_ROCHARS.
  5384. Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
  5385. Use a type specific setter macro instead of SCM_SETLENGTH.
  5386. Use a type specific setter macro instead of SCM_SETCHARS.
  5387. Use a type specific length macro instead of SCM_LENGTH_MAX.
  5388. Use SCM_GCMARKP instead of SCM_GC8MARKP.
  5389. Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
  5390. Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
  5391. Use SCM_TYP16 instead of SCM_GCTYP16.
  5392. Use SCM_CDR instead of SCM_GCCDR.
  5393. Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
  5394. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
  5395. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
  5396. Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
  5397. Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
  5398. Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
  5399. Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
  5400. ** Removed function: scm_struct_init
  5401. ** Removed variable: scm_symhash_dim
  5402. ** Renamed function: scm_make_cont has been replaced by
  5403. scm_make_continuation, which has a different interface.
  5404. ** Deprecated function: scm_call_catching_errors
  5405. Use scm_catch or scm_lazy_catch from throw.[ch] instead.
  5406. ** Deprecated function: scm_strhash
  5407. Use scm_string_hash instead.
  5408. ** Deprecated function: scm_vector_set_length_x
  5409. Instead, create a fresh vector of the desired size and copy the contents.
  5410. ** scm_gensym has changed prototype
  5411. scm_gensym now only takes one argument.
  5412. ** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
  5413. scm_tc7_lvector
  5414. There is now only a single symbol type scm_tc7_symbol.
  5415. The tag scm_tc7_lvector was not used anyway.
  5416. ** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
  5417. Use scm_make_smob_type and scm_set_smob_XXX instead.
  5418. ** New function scm_set_smob_apply.
  5419. This can be used to set an apply function to a smob type.
  5420. ** Deprecated function: scm_strprint_obj
  5421. Use scm_object_to_string instead.
  5422. ** Deprecated function: scm_wta
  5423. Use scm_wrong_type_arg, or another appropriate error signalling function
  5424. instead.
  5425. ** Explicit support for obarrays has been deprecated.
  5426. Use `scm_str2symbol' and the generic hashtable functions instead.
  5427. ** The concept of `vcells' has been deprecated.
  5428. The data type `variable' is now used exclusively. `Vcells' have been
  5429. a low-level concept so you are likely not affected by this change.
  5430. *** Deprecated functions: scm_sym2vcell, scm_sysintern,
  5431. scm_sysintern0, scm_symbol_value0, scm_intern, scm_intern0.
  5432. Use scm_c_define or scm_c_lookup instead, as appropriate.
  5433. *** New functions: scm_c_module_lookup, scm_c_lookup,
  5434. scm_c_module_define, scm_c_define, scm_module_lookup, scm_lookup,
  5435. scm_module_define, scm_define.
  5436. These functions work with variables instead of with vcells.
  5437. ** New functions for creating and defining `subr's and `gsubr's.
  5438. The new functions more clearly distinguish between creating a subr (or
  5439. gsubr) object and adding it to the current module.
  5440. These new functions are available: scm_c_make_subr, scm_c_define_subr,
  5441. scm_c_make_subr_with_generic, scm_c_define_subr_with_generic,
  5442. scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
  5443. scm_c_define_gsubr_with_generic.
  5444. ** Deprecated functions: scm_make_subr, scm_make_subr_opt,
  5445. scm_make_subr_with_generic, scm_make_gsubr,
  5446. scm_make_gsubr_with_generic.
  5447. Use the new ones from above instead.
  5448. ** C interface to the module system has changed.
  5449. While we suggest that you avoid as many explicit module system
  5450. operations from C as possible for the time being, the C interface has
  5451. been made more similar to the high-level Scheme module system.
  5452. *** New functions: scm_c_define_module, scm_c_use_module,
  5453. scm_c_export, scm_c_resolve_module.
  5454. They mostly work like their Scheme namesakes. scm_c_define_module
  5455. takes a function that is called a context where the new module is
  5456. current.
  5457. *** Deprecated functions: scm_the_root_module, scm_make_module,
  5458. scm_ensure_user_module, scm_load_scheme_module.
  5459. Use the new functions instead.
  5460. ** Renamed function: scm_internal_with_fluids becomes
  5461. scm_c_with_fluids.
  5462. scm_internal_with_fluids is available as a deprecated function.
  5463. ** New function: scm_c_with_fluid.
  5464. Just like scm_c_with_fluids, but takes one fluid and one value instead
  5465. of lists of same.
  5466. ** Deprecated typedefs: long_long, ulong_long.
  5467. They are of questionable utility and they pollute the global
  5468. namespace.
  5469. ** Deprecated typedef: scm_sizet
  5470. It is of questionable utility now that Guile requires ANSI C, and is
  5471. oddly named.
  5472. ** Deprecated typedefs: scm_port_rw_active, scm_port,
  5473. scm_ptob_descriptor, scm_debug_info, scm_debug_frame, scm_fport,
  5474. scm_option, scm_rstate, scm_rng, scm_array, scm_array_dim.
  5475. Made more compliant with the naming policy by adding a _t at the end.
  5476. ** Deprecated functions: scm_mkbig, scm_big2num, scm_adjbig,
  5477. scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl
  5478. With the exception of the mysterious scm_2ulong2big, they are still
  5479. available under new names (scm_i_mkbig etc). These functions are not
  5480. intended to be used in user code. You should avoid dealing with
  5481. bignums directly, and should deal with numbers in general (which can
  5482. be bignums).
  5483. ** Change in behavior: scm_num2long, scm_num2ulong
  5484. The scm_num2[u]long functions don't any longer accept an inexact
  5485. argument. This change in behavior is motivated by concordance with
  5486. R5RS: It is more common that a primitive doesn't want to accept an
  5487. inexact for an exact.
  5488. ** New functions: scm_short2num, scm_ushort2num, scm_int2num,
  5489. scm_uint2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
  5490. scm_num2ushort, scm_num2int, scm_num2uint, scm_num2ptrdiff,
  5491. scm_num2size.
  5492. These are conversion functions between the various ANSI C integral
  5493. types and Scheme numbers. NOTE: The scm_num2xxx functions don't
  5494. accept an inexact argument.
  5495. ** New functions: scm_float2num, scm_double2num,
  5496. scm_num2float, scm_num2double.
  5497. These are conversion functions between the two ANSI C float types and
  5498. Scheme numbers.
  5499. ** New number validation macros:
  5500. SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,INT,UINT}[_DEF]
  5501. See above.
  5502. ** New functions: scm_gc_protect_object, scm_gc_unprotect_object
  5503. These are just nicer-named old scm_protect_object and
  5504. scm_unprotect_object.
  5505. ** Deprecated functions: scm_protect_object, scm_unprotect_object
  5506. ** New functions: scm_gc_[un]register_root, scm_gc_[un]register_roots
  5507. These functions can be used to register pointers to locations that
  5508. hold SCM values.
  5509. ** Deprecated function: scm_create_hook.
  5510. Its sins are: misleading name, non-modularity and lack of general
  5511. usefulness.
  5512. Changes since Guile 1.3.4:
  5513. * Changes to the distribution
  5514. ** Trees from nightly snapshots and CVS now require you to run autogen.sh.
  5515. We've changed the way we handle generated files in the Guile source
  5516. repository. As a result, the procedure for building trees obtained
  5517. from the nightly FTP snapshots or via CVS has changed:
  5518. - You must have appropriate versions of autoconf, automake, and
  5519. libtool installed on your system. See README for info on how to
  5520. obtain these programs.
  5521. - Before configuring the tree, you must first run the script
  5522. `autogen.sh' at the top of the source tree.
  5523. The Guile repository used to contain not only source files, written by
  5524. humans, but also some generated files, like configure scripts and
  5525. Makefile.in files. Even though the contents of these files could be
  5526. derived mechanically from other files present, we thought it would
  5527. make the tree easier to build if we checked them into CVS.
  5528. However, this approach means that minor differences between
  5529. developer's installed tools and habits affected the whole team.
  5530. So we have removed the generated files from the repository, and
  5531. added the autogen.sh script, which will reconstruct them
  5532. appropriately.
  5533. ** configure now has experimental options to remove support for certain
  5534. features:
  5535. --disable-arrays omit array and uniform array support
  5536. --disable-posix omit posix interfaces
  5537. --disable-networking omit networking interfaces
  5538. --disable-regex omit regular expression interfaces
  5539. These are likely to become separate modules some day.
  5540. ** New configure option --enable-debug-freelist
  5541. This enables a debugging version of SCM_NEWCELL(), and also registers
  5542. an extra primitive, the setter `gc-set-debug-check-freelist!'.
  5543. Configure with the --enable-debug-freelist option to enable
  5544. the gc-set-debug-check-freelist! primitive, and then use:
  5545. (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
  5546. (gc-set-debug-check-freelist! #f) # turn off checking
  5547. Checking of the freelist forces a traversal of the freelist and
  5548. a garbage collection before each allocation of a cell. This can
  5549. slow down the interpreter dramatically, so the setter should be used to
  5550. turn on this extra processing only when necessary.
  5551. ** New configure option --enable-debug-malloc
  5552. Include code for debugging of calls to scm_must_malloc/realloc/free.
  5553. Checks that
  5554. 1. objects freed by scm_must_free has been mallocated by scm_must_malloc
  5555. 2. objects reallocated by scm_must_realloc has been allocated by
  5556. scm_must_malloc
  5557. 3. reallocated objects are reallocated with the same what string
  5558. But, most importantly, it records the number of allocated objects of
  5559. each kind. This is useful when searching for memory leaks.
  5560. A Guile compiled with this option provides the primitive
  5561. `malloc-stats' which returns an alist with pairs of kind and the
  5562. number of objects of that kind.
  5563. ** All includes are now referenced relative to the root directory
  5564. Since some users have had problems with mixups between Guile and
  5565. system headers, we have decided to always refer to Guile headers via
  5566. their parent directories. This essentially creates a "private name
  5567. space" for Guile headers. This means that the compiler only is given
  5568. -I options for the root build and root source directory.
  5569. ** Header files kw.h and genio.h have been removed.
  5570. ** The module (ice-9 getopt-gnu-style) has been removed.
  5571. ** New module (ice-9 documentation)
  5572. Implements the interface to documentation strings associated with
  5573. objects.
  5574. ** New module (ice-9 time)
  5575. Provides a macro `time', which displays execution time of a given form.
  5576. ** New module (ice-9 history)
  5577. Loading this module enables value history in the repl.
  5578. * Changes to the stand-alone interpreter
  5579. ** New command line option --debug
  5580. Start Guile with debugging evaluator and backtraces enabled.
  5581. This is useful when debugging your .guile init file or scripts.
  5582. ** New help facility
  5583. Usage: (help NAME) gives documentation about objects named NAME (a symbol)
  5584. (help REGEXP) ditto for objects with names matching REGEXP (a string)
  5585. (help 'NAME) gives documentation for NAME, even if it is not an object
  5586. (help ,EXPR) gives documentation for object returned by EXPR
  5587. (help (my module)) gives module commentary for `(my module)'
  5588. (help) gives this text
  5589. `help' searches among bindings exported from loaded modules, while
  5590. `apropos' searches among bindings visible from the "current" module.
  5591. Examples: (help help)
  5592. (help cons)
  5593. (help "output-string")
  5594. ** `help' and `apropos' now prints full module names
  5595. ** Dynamic linking now uses libltdl from the libtool package.
  5596. The old system dependent code for doing dynamic linking has been
  5597. replaced with calls to the libltdl functions which do all the hairy
  5598. details for us.
  5599. The major improvement is that you can now directly pass libtool
  5600. library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
  5601. will be able to do the best shared library job you can get, via
  5602. libltdl.
  5603. The way dynamic libraries are found has changed and is not really
  5604. portable across platforms, probably. It is therefore recommended to
  5605. use absolute filenames when possible.
  5606. If you pass a filename without an extension to `dynamic-link', it will
  5607. try a few appropriate ones. Thus, the most platform ignorant way is
  5608. to specify a name like "libfoo", without any directories and
  5609. extensions.
  5610. ** Guile COOP threads are now compatible with LinuxThreads
  5611. Previously, COOP threading wasn't possible in applications linked with
  5612. Linux POSIX threads due to their use of the stack pointer to find the
  5613. thread context. This has now been fixed with a workaround which uses
  5614. the pthreads to allocate the stack.
  5615. ** New primitives: `pkgdata-dir', `site-dir', `library-dir'
  5616. ** Positions of erring expression in scripts
  5617. With version 1.3.4, the location of the erring expression in Guile
  5618. scipts is no longer automatically reported. (This should have been
  5619. documented before the 1.3.4 release.)
  5620. You can get this information by enabling recording of positions of
  5621. source expressions and running the debugging evaluator. Put this at
  5622. the top of your script (or in your "site" file):
  5623. (read-enable 'positions)
  5624. (debug-enable 'debug)
  5625. ** Backtraces in scripts
  5626. It is now possible to get backtraces in scripts.
  5627. Put
  5628. (debug-enable 'debug 'backtrace)
  5629. at the top of the script.
  5630. (The first options enables the debugging evaluator.
  5631. The second enables backtraces.)
  5632. ** Part of module system symbol lookup now implemented in C
  5633. The eval closure of most modules is now implemented in C. Since this
  5634. was one of the bottlenecks for loading speed, Guile now loads code
  5635. substantially faster than before.
  5636. ** Attempting to get the value of an unbound variable now produces
  5637. an exception with a key of 'unbound-variable instead of 'misc-error.
  5638. ** The initial default output port is now unbuffered if it's using a
  5639. tty device. Previously in this situation it was line-buffered.
  5640. ** New hook: after-gc-hook
  5641. after-gc-hook takes over the role of gc-thunk. This hook is run at
  5642. the first SCM_TICK after a GC. (Thus, the code is run at the same
  5643. point during evaluation as signal handlers.)
  5644. Note that this hook should be used only for diagnostic and debugging
  5645. purposes. It is not certain that it will continue to be well-defined
  5646. when this hook is run in the future.
  5647. C programmers: Note the new C level hooks scm_before_gc_c_hook,
  5648. scm_before_sweep_c_hook, scm_after_gc_c_hook.
  5649. ** Improvements to garbage collector
  5650. Guile 1.4 has a new policy for triggering heap allocation and
  5651. determining the sizes of heap segments. It fixes a number of problems
  5652. in the old GC.
  5653. 1. The new policy can handle two separate pools of cells
  5654. (2-word/4-word) better. (The old policy would run wild, allocating
  5655. more and more memory for certain programs.)
  5656. 2. The old code would sometimes allocate far too much heap so that the
  5657. Guile process became gigantic. The new code avoids this.
  5658. 3. The old code would sometimes allocate too little so that few cells
  5659. were freed at GC so that, in turn, too much time was spent in GC.
  5660. 4. The old code would often trigger heap allocation several times in a
  5661. row. (The new scheme predicts how large the segments needs to be
  5662. in order not to need further allocation.)
  5663. All in all, the new GC policy will make larger applications more
  5664. efficient.
  5665. The new GC scheme also is prepared for POSIX threading. Threads can
  5666. allocate private pools of cells ("clusters") with just a single
  5667. function call. Allocation of single cells from such a cluster can
  5668. then proceed without any need of inter-thread synchronization.
  5669. ** New environment variables controlling GC parameters
  5670. GUILE_MAX_SEGMENT_SIZE Maximal segment size
  5671. (default = 2097000)
  5672. Allocation of 2-word cell heaps:
  5673. GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
  5674. (default = 360000)
  5675. GUILE_MIN_YIELD_1 Minimum number of freed cells at each
  5676. GC in percent of total heap size
  5677. (default = 40)
  5678. Allocation of 4-word cell heaps
  5679. (used for real numbers and misc other objects):
  5680. GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
  5681. (See entry "Way for application to customize GC parameters" under
  5682. section "Changes to the scm_ interface" below.)
  5683. ** Guile now implements reals using 4-word cells
  5684. This speeds up computation with reals. (They were earlier allocated
  5685. with `malloc'.) There is still some room for optimizations, however.
  5686. ** Some further steps toward POSIX thread support have been taken
  5687. *** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
  5688. don't have much effect any longer, and many of them will be removed in
  5689. next release.
  5690. *** Signals
  5691. are only handled at the top of the evaluator loop, immediately after
  5692. I/O, and in scm_equalp.
  5693. *** The GC can allocate thread private pools of pairs.
  5694. * Changes to Scheme functions and syntax
  5695. ** close-input-port and close-output-port are now R5RS
  5696. These procedures have been turned into primitives and have R5RS behaviour.
  5697. ** New procedure: simple-format PORT MESSAGE ARG1 ...
  5698. (ice-9 boot) makes `format' an alias for `simple-format' until possibly
  5699. extended by the more sophisticated version in (ice-9 format)
  5700. (simple-format port message . args)
  5701. Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
  5702. MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
  5703. the escapes are replaced with corresponding members of ARGS:
  5704. ~A formats using `display' and ~S formats using `write'.
  5705. If DESTINATION is #t, then use the `current-output-port',
  5706. if DESTINATION is #f, then return a string containing the formatted text.
  5707. Does not add a trailing newline."
  5708. ** string-ref: the second argument is no longer optional.
  5709. ** string, list->string: no longer accept strings in their arguments,
  5710. only characters, for compatibility with R5RS.
  5711. ** New procedure: port-closed? PORT
  5712. Returns #t if PORT is closed or #f if it is open.
  5713. ** Deprecated: list*
  5714. The list* functionality is now provided by cons* (SRFI-1 compliant)
  5715. ** New procedure: cons* ARG1 ARG2 ... ARGn
  5716. Like `list', but the last arg provides the tail of the constructed list,
  5717. returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
  5718. Requires at least one argument. If given one argument, that argument
  5719. is returned as result.
  5720. This function is called `list*' in some other Schemes and in Common LISP.
  5721. ** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
  5722. ** New procedure: object-documentation OBJECT
  5723. Returns the documentation string associated with OBJECT. The
  5724. procedure uses a caching mechanism so that subsequent lookups are
  5725. faster.
  5726. Exported by (ice-9 documentation).
  5727. ** module-name now returns full names of modules
  5728. Previously, only the last part of the name was returned (`session' for
  5729. `(ice-9 session)'). Ex: `(ice-9 session)'.
  5730. * Changes to the gh_ interface
  5731. ** Deprecated: gh_int2scmb
  5732. Use gh_bool2scm instead.
  5733. * Changes to the scm_ interface
  5734. ** Guile primitives now carry docstrings!
  5735. Thanks to Greg Badros!
  5736. ** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  5737. Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  5738. macros and must contain a docstring that is extracted into foo.doc using a new
  5739. guile-doc-snarf script (that uses guile-doc-snarf.awk).
  5740. However, a major overhaul of these macros is scheduled for the next release of
  5741. guile.
  5742. ** Guile primitives use a new technique for validation of arguments
  5743. SCM_VALIDATE_* macros are defined to ease the redundancy and improve
  5744. the readability of argument checking.
  5745. ** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
  5746. ** New macros: SCM_PACK, SCM_UNPACK
  5747. Compose/decompose an SCM value.
  5748. The SCM type is now treated as an abstract data type and may be defined as a
  5749. long, a void* or as a struct, depending on the architecture and compile time
  5750. options. This makes it easier to find several types of bugs, for example when
  5751. SCM values are treated as integers without conversion. Values of the SCM type
  5752. should be treated as "atomic" values. These macros are used when
  5753. composing/decomposing an SCM value, either because you want to access
  5754. individual bits, or because you want to treat it as an integer value.
  5755. E.g., in order to set bit 7 in an SCM value x, use the expression
  5756. SCM_PACK (SCM_UNPACK (x) | 0x80)
  5757. ** The name property of hooks is deprecated.
  5758. Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
  5759. You can emulate this feature by using object properties.
  5760. ** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
  5761. SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
  5762. SCM_NVECTORP
  5763. These macros will be removed in a future release of Guile.
  5764. ** The following types, functions and macros from numbers.h are deprecated:
  5765. scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
  5766. SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
  5767. ** Port internals: the rw_random variable in the scm_port structure
  5768. must be set to non-zero in any random access port. In recent Guile
  5769. releases it was only set for bidirectional random-access ports.
  5770. ** Port internals: the seek ptob procedure is now responsible for
  5771. resetting the buffers if required. The change was made so that in the
  5772. special case of reading the current position (i.e., seek p 0 SEEK_CUR)
  5773. the fport and strport ptobs can avoid resetting the buffers,
  5774. in particular to avoid discarding unread chars. An existing port
  5775. type can be fixed by adding something like the following to the
  5776. beginning of the ptob seek procedure:
  5777. if (pt->rw_active == SCM_PORT_READ)
  5778. scm_end_input (object);
  5779. else if (pt->rw_active == SCM_PORT_WRITE)
  5780. ptob->flush (object);
  5781. although to actually avoid resetting the buffers and discard unread
  5782. chars requires further hacking that depends on the characteristics
  5783. of the ptob.
  5784. ** Deprecated functions: scm_fseek, scm_tag
  5785. These functions are no longer used and will be removed in a future version.
  5786. ** The scm_sysmissing procedure is no longer used in libguile.
  5787. Unless it turns out to be unexpectedly useful to somebody, it will be
  5788. removed in a future version.
  5789. ** The format of error message strings has changed
  5790. The two C procedures: scm_display_error and scm_error, as well as the
  5791. primitive `scm-error', now use scm_simple_format to do their work.
  5792. This means that the message strings of all code must be updated to use
  5793. ~A where %s was used before, and ~S where %S was used before.
  5794. During the period when there still are a lot of old Guiles out there,
  5795. you might want to support both old and new versions of Guile.
  5796. There are basically two methods to achieve this. Both methods use
  5797. autoconf. Put
  5798. AC_CHECK_FUNCS(scm_simple_format)
  5799. in your configure.in.
  5800. Method 1: Use the string concatenation features of ANSI C's
  5801. preprocessor.
  5802. In C:
  5803. #ifdef HAVE_SCM_SIMPLE_FORMAT
  5804. #define FMT_S "~S"
  5805. #else
  5806. #define FMT_S "%S"
  5807. #endif
  5808. Then represent each of your error messages using a preprocessor macro:
  5809. #define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
  5810. In Scheme:
  5811. (define fmt-s (if (defined? 'simple-format) "~S" "%S"))
  5812. (define make-message string-append)
  5813. (define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
  5814. Method 2: Use the oldfmt function found in doc/oldfmt.c.
  5815. In C:
  5816. scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
  5817. ...);
  5818. In Scheme:
  5819. (scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
  5820. ...)
  5821. ** Deprecated: coop_mutex_init, coop_condition_variable_init
  5822. Don't use the functions coop_mutex_init and
  5823. coop_condition_variable_init. They will change.
  5824. Use scm_mutex_init and scm_cond_init instead.
  5825. ** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
  5826. `scm_cond_timedwait' atomically unlocks MUTEX and waits on
  5827. COND, as `scm_cond_wait' does, but it also bounds the duration
  5828. of the wait. If COND has not been signaled before time ABSTIME,
  5829. the mutex MUTEX is re-acquired and `scm_cond_timedwait'
  5830. returns the error code `ETIMEDOUT'.
  5831. The ABSTIME parameter specifies an absolute time, with the same
  5832. origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
  5833. to 00:00:00 GMT, January 1, 1970.
  5834. ** New function: scm_cond_broadcast (scm_cond_t *COND)
  5835. `scm_cond_broadcast' restarts all the threads that are waiting
  5836. on the condition variable COND. Nothing happens if no threads are
  5837. waiting on COND.
  5838. ** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
  5839. `scm_key_create' allocates a new TSD key. The key is stored in
  5840. the location pointed to by KEY. There is no limit on the number
  5841. of keys allocated at a given time. The value initially associated
  5842. with the returned key is `NULL' in all currently executing threads.
  5843. The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
  5844. function associated with the key. When a thread terminates,
  5845. DESTR_FUNCTION is called on the value associated with the key in
  5846. that thread. The DESTR_FUNCTION is not called if a key is deleted
  5847. with `scm_key_delete' or a value is changed with
  5848. `scm_setspecific'. The order in which destructor functions are
  5849. called at thread termination time is unspecified.
  5850. Destructors are not yet implemented.
  5851. ** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
  5852. `scm_setspecific' changes the value associated with KEY in the
  5853. calling thread, storing the given POINTER instead.
  5854. ** New function: scm_getspecific (scm_key_t KEY)
  5855. `scm_getspecific' returns the value currently associated with
  5856. KEY in the calling thread.
  5857. ** New function: scm_key_delete (scm_key_t KEY)
  5858. `scm_key_delete' deallocates a TSD key. It does not check
  5859. whether non-`NULL' values are associated with that key in the
  5860. currently executing threads, nor call the destructor function
  5861. associated with the key.
  5862. ** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
  5863. Initialize a C level hook HOOK with associated HOOK_DATA and type
  5864. TYPE. (See scm_c_hook_run ().)
  5865. ** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
  5866. Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
  5867. is true, add it last, otherwise first. The same FUNC can be added
  5868. multiple times if FUNC_DATA differ and vice versa.
  5869. ** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
  5870. Remove hook function FUNC with associated FUNC_DATA from HOOK. A
  5871. function is only removed if both FUNC and FUNC_DATA matches.
  5872. ** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
  5873. Run hook HOOK passing DATA to the hook functions.
  5874. If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
  5875. returned is undefined.
  5876. If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
  5877. returns a non-NULL value. This value is returned as the result of
  5878. scm_c_hook_run. If all functions return NULL, NULL is returned.
  5879. If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
  5880. returns a NULL value, and NULL is returned. If all functions returns
  5881. a non-NULL value, the last value is returned.
  5882. ** New C level GC hooks
  5883. Five new C level hooks has been added to the garbage collector.
  5884. scm_before_gc_c_hook
  5885. scm_after_gc_c_hook
  5886. are run before locking and after unlocking the heap. The system is
  5887. thus in a mode where evaluation can take place. (Except that
  5888. scm_before_gc_c_hook must not allocate new cells.)
  5889. scm_before_mark_c_hook
  5890. scm_before_sweep_c_hook
  5891. scm_after_sweep_c_hook
  5892. are run when the heap is locked. These are intended for extension of
  5893. the GC in a modular fashion. Examples are the weaks and guardians
  5894. modules.
  5895. ** Way for application to customize GC parameters
  5896. The application can set up other default values for the GC heap
  5897. allocation parameters
  5898. GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
  5899. GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
  5900. GUILE_MAX_SEGMENT_SIZE,
  5901. by setting
  5902. scm_default_init_heap_size_1, scm_default_min_yield_1,
  5903. scm_default_init_heap_size_2, scm_default_min_yield_2,
  5904. scm_default_max_segment_size
  5905. respectively before callong scm_boot_guile.
  5906. (See entry "New environment variables ..." in section
  5907. "Changes to the stand-alone interpreter" above.)
  5908. ** scm_protect_object/scm_unprotect_object now nest
  5909. This means that you can call scm_protect_object multiple times on an
  5910. object and count on the object being protected until
  5911. scm_unprotect_object has been call the same number of times.
  5912. The functions also have better time complexity.
  5913. Still, it is usually possible to structure the application in a way
  5914. that you don't need to use these functions. For example, if you use a
  5915. protected standard Guile list to keep track of live objects rather
  5916. than some custom data type, objects will die a natural death when they
  5917. are no longer needed.
  5918. ** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
  5919. Guile does not provide the float representation for inexact real numbers any
  5920. more. Now, only doubles are used to represent inexact real numbers. Further,
  5921. the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
  5922. and scm_tc16_complex, respectively.
  5923. ** Removed deprecated type scm_smobfuns
  5924. ** Removed deprecated function scm_newsmob
  5925. ** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
  5926. There is an ongoing discussion among the developers whether to
  5927. deprecate `scm_make_smob_type_mfpe' or not. Please use the current
  5928. standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
  5929. until this issue has been settled.
  5930. ** Removed deprecated type tag scm_tc16_kw
  5931. ** Added type tag scm_tc16_keyword
  5932. (This was introduced already in release 1.3.4 but was not documented
  5933. until now.)
  5934. ** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
  5935. * Changes to system call interfaces:
  5936. ** The "select" procedure now tests port buffers for the ability to
  5937. provide input or accept output. Previously only the underlying file
  5938. descriptors were checked.
  5939. ** New variable PIPE_BUF: the maximum number of bytes that can be
  5940. atomically written to a pipe.
  5941. ** If a facility is not available on the system when Guile is
  5942. compiled, the corresponding primitive procedure will not be defined.
  5943. Previously it would have been defined but would throw a system-error
  5944. exception if called. Exception handlers which catch this case may
  5945. need minor modification: an error will be thrown with key
  5946. 'unbound-variable instead of 'system-error. Alternatively it's
  5947. now possible to use `defined?' to check whether the facility is
  5948. available.
  5949. ** Procedures which depend on the timezone should now give the correct
  5950. result on systems which cache the TZ environment variable, even if TZ
  5951. is changed without calling tzset.
  5952. * Changes to the networking interfaces:
  5953. ** New functions: htons, ntohs, htonl, ntohl: for converting short and
  5954. long integers between network and host format. For now, it's not
  5955. particularly convenient to do this kind of thing, but consider:
  5956. (define write-network-long
  5957. (lambda (value port)
  5958. (let ((v (make-uniform-vector 1 1 0)))
  5959. (uniform-vector-set! v 0 (htonl value))
  5960. (uniform-vector-write v port))))
  5961. (define read-network-long
  5962. (lambda (port)
  5963. (let ((v (make-uniform-vector 1 1 0)))
  5964. (uniform-vector-read! v port)
  5965. (ntohl (uniform-vector-ref v 0)))))
  5966. ** If inet-aton fails, it now throws an error with key 'misc-error
  5967. instead of 'system-error, since errno is not relevant.
  5968. ** Certain gethostbyname/gethostbyaddr failures now throw errors with
  5969. specific keys instead of 'system-error. The latter is inappropriate
  5970. since errno will not have been set. The keys are:
  5971. 'host-not-found, 'try-again, 'no-recovery and 'no-data.
  5972. ** sethostent, setnetent, setprotoent, setservent: now take an
  5973. optional argument STAYOPEN, which specifies whether the database
  5974. remains open after a database entry is accessed randomly (e.g., using
  5975. gethostbyname for the hosts database.) The default is #f. Previously
  5976. #t was always used.
  5977. Changes since Guile 1.3.2:
  5978. * Changes to the stand-alone interpreter
  5979. ** Debugger
  5980. An initial version of the Guile debugger written by Chris Hanson has
  5981. been added. The debugger is still under development but is included
  5982. in the distribution anyway since it is already quite useful.
  5983. Type
  5984. (debug)
  5985. after an error to enter the debugger. Type `help' inside the debugger
  5986. for a description of available commands.
  5987. If you prefer to have stack frames numbered and printed in
  5988. anti-chronological order and prefer up in the stack to be down on the
  5989. screen as is the case in gdb, you can put
  5990. (debug-enable 'backwards)
  5991. in your .guile startup file. (However, this means that Guile can't
  5992. use indentation to indicate stack level.)
  5993. The debugger is autoloaded into Guile at the first use.
  5994. ** Further enhancements to backtraces
  5995. There is a new debug option `width' which controls the maximum width
  5996. on the screen of printed stack frames. Fancy printing parameters
  5997. ("level" and "length" as in Common LISP) are adaptively adjusted for
  5998. each stack frame to give maximum information while still fitting
  5999. within the bounds. If the stack frame can't be made to fit by
  6000. adjusting parameters, it is simply cut off at the end. This is marked
  6001. with a `$'.
  6002. ** Some modules are now only loaded when the repl is started
  6003. The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
  6004. regex) are now loaded into (guile-user) only if the repl has been
  6005. started. The effect is that the startup time for scripts has been
  6006. reduced to 30% of what it was previously.
  6007. Correctly written scripts load the modules they require at the top of
  6008. the file and should not be affected by this change.
  6009. ** Hooks are now represented as smobs
  6010. * Changes to Scheme functions and syntax
  6011. ** Readline support has changed again.
  6012. The old (readline-activator) module is gone. Use (ice-9 readline)
  6013. instead, which now contains all readline functionality. So the code
  6014. to activate readline is now
  6015. (use-modules (ice-9 readline))
  6016. (activate-readline)
  6017. This should work at any time, including from the guile prompt.
  6018. To avoid confusion about the terms of Guile's license, please only
  6019. enable readline for your personal use; please don't make it the
  6020. default for others. Here is why we make this rather odd-sounding
  6021. request:
  6022. Guile is normally licensed under a weakened form of the GNU General
  6023. Public License, which allows you to link code with Guile without
  6024. placing that code under the GPL. This exception is important to some
  6025. people.
  6026. However, since readline is distributed under the GNU General Public
  6027. License, when you link Guile with readline, either statically or
  6028. dynamically, you effectively change Guile's license to the strict GPL.
  6029. Whenever you link any strictly GPL'd code into Guile, uses of Guile
  6030. which are normally permitted become forbidden. This is a rather
  6031. non-obvious consequence of the licensing terms.
  6032. So, to make sure things remain clear, please let people choose for
  6033. themselves whether to link GPL'd libraries like readline with Guile.
  6034. ** regexp-substitute/global has changed slightly, but incompatibly.
  6035. If you include a function in the item list, the string of the match
  6036. object it receives is the same string passed to
  6037. regexp-substitute/global, not some suffix of that string.
  6038. Correspondingly, the match's positions are relative to the entire
  6039. string, not the suffix.
  6040. If the regexp can match the empty string, the way matches are chosen
  6041. from the string has changed. regexp-substitute/global recognizes the
  6042. same set of matches that list-matches does; see below.
  6043. ** New function: list-matches REGEXP STRING [FLAGS]
  6044. Return a list of match objects, one for every non-overlapping, maximal
  6045. match of REGEXP in STRING. The matches appear in left-to-right order.
  6046. list-matches only reports matches of the empty string if there are no
  6047. other matches which begin on, end at, or include the empty match's
  6048. position.
  6049. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  6050. ** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
  6051. For each match of REGEXP in STRING, apply PROC to the match object,
  6052. and the last value PROC returned, or INIT for the first call. Return
  6053. the last value returned by PROC. We apply PROC to the matches as they
  6054. appear from left to right.
  6055. This function recognizes matches according to the same criteria as
  6056. list-matches.
  6057. Thus, you could define list-matches like this:
  6058. (define (list-matches regexp string . flags)
  6059. (reverse! (apply fold-matches regexp string '() cons flags)))
  6060. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  6061. ** Hooks
  6062. *** New function: hook? OBJ
  6063. Return #t if OBJ is a hook, otherwise #f.
  6064. *** New function: make-hook-with-name NAME [ARITY]
  6065. Return a hook with name NAME and arity ARITY. The default value for
  6066. ARITY is 0. The only effect of NAME is that it will appear when the
  6067. hook object is printed to ease debugging.
  6068. *** New function: hook-empty? HOOK
  6069. Return #t if HOOK doesn't contain any procedures, otherwise #f.
  6070. *** New function: hook->list HOOK
  6071. Return a list of the procedures that are called when run-hook is
  6072. applied to HOOK.
  6073. ** `map' signals an error if its argument lists are not all the same length.
  6074. This is the behavior required by R5RS, so this change is really a bug
  6075. fix. But it seems to affect a lot of people's code, so we're
  6076. mentioning it here anyway.
  6077. ** Print-state handling has been made more transparent
  6078. Under certain circumstances, ports are represented as a port with an
  6079. associated print state. Earlier, this pair was represented as a pair
  6080. (see "Some magic has been added to the printer" below). It is now
  6081. indistinguishable (almost; see `get-print-state') from a port on the
  6082. user level.
  6083. *** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
  6084. Return a new port with the associated print state PRINT-STATE.
  6085. *** New function: get-print-state OUTPUT-PORT
  6086. Return the print state associated with this port if it exists,
  6087. otherwise return #f.
  6088. *** New function: directory-stream? OBJECT
  6089. Returns true iff OBJECT is a directory stream --- the sort of object
  6090. returned by `opendir'.
  6091. ** New function: using-readline?
  6092. Return #t if readline is in use in the current repl.
  6093. ** structs will be removed in 1.4
  6094. Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
  6095. and use GOOPS objects as the fundamental record type.
  6096. * Changes to the scm_ interface
  6097. ** structs will be removed in 1.4
  6098. The entire current struct interface (struct.c, struct.h) will be
  6099. replaced in Guile 1.4. We will merge GOOPS into libguile and use
  6100. GOOPS objects as the fundamental record type.
  6101. ** The internal representation of subr's has changed
  6102. Instead of giving a hint to the subr name, the CAR field of the subr
  6103. now contains an index to a subr entry in scm_subr_table.
  6104. *** New variable: scm_subr_table
  6105. An array of subr entries. A subr entry contains the name, properties
  6106. and documentation associated with the subr. The properties and
  6107. documentation slots are not yet used.
  6108. ** A new scheme for "forwarding" calls to a builtin to a generic function
  6109. It is now possible to extend the functionality of some Guile
  6110. primitives by letting them defer a call to a GOOPS generic function on
  6111. argument mismatch. This means that there is no loss of efficiency in
  6112. normal evaluation.
  6113. Example:
  6114. (use-modules (oop goops)) ; Must be GOOPS version 0.2.
  6115. (define-method + ((x <string>) (y <string>))
  6116. (string-append x y))
  6117. + will still be as efficient as usual in numerical calculations, but
  6118. can also be used for concatenating strings.
  6119. Who will be the first one to extend Guile's numerical tower to
  6120. rationals? :) [OK, there a few other things to fix before this can
  6121. be made in a clean way.]
  6122. *** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
  6123. New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
  6124. New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
  6125. These do the same job as SCM_PROC and SCM_PROC1, but they also define
  6126. a variable GENERIC which can be used by the dispatch macros below.
  6127. [This is experimental code which may change soon.]
  6128. *** New macros for forwarding control to a generic on arg type error
  6129. New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
  6130. New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
  6131. These correspond to the scm_wta function call, and have the same
  6132. behaviour until the user has called the GOOPS primitive
  6133. `enable-primitive-generic!'. After that, these macros will apply the
  6134. generic function GENERIC to the argument(s) instead of calling
  6135. scm_wta.
  6136. [This is experimental code which may change soon.]
  6137. *** New macros for argument testing with generic dispatch
  6138. New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
  6139. New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
  6140. These correspond to the SCM_ASSERT macro, but will defer control to
  6141. GENERIC on error after `enable-primitive-generic!' has been called.
  6142. [This is experimental code which may change soon.]
  6143. ** New function: SCM scm_eval_body (SCM body, SCM env)
  6144. Evaluates the body of a special form.
  6145. ** The internal representation of struct's has changed
  6146. Previously, four slots were allocated for the procedure(s) of entities
  6147. and operators. The motivation for this representation had to do with
  6148. the structure of the evaluator, the wish to support tail-recursive
  6149. generic functions, and efficiency. Since the generic function
  6150. dispatch mechanism has changed, there is no longer a need for such an
  6151. expensive representation, and the representation has been simplified.
  6152. This should not make any difference for most users.
  6153. ** GOOPS support has been cleaned up.
  6154. Some code has been moved from eval.c to objects.c and code in both of
  6155. these compilation units has been cleaned up and better structured.
  6156. *** New functions for applying generic functions
  6157. New function: SCM scm_apply_generic (GENERIC, ARGS)
  6158. New function: SCM scm_call_generic_0 (GENERIC)
  6159. New function: SCM scm_call_generic_1 (GENERIC, ARG1)
  6160. New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
  6161. New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
  6162. ** Deprecated function: scm_make_named_hook
  6163. It is now replaced by:
  6164. ** New function: SCM scm_create_hook (const char *name, int arity)
  6165. Creates a hook in the same way as make-hook above but also
  6166. binds a variable named NAME to it.
  6167. This is the typical way of creating a hook from C code.
  6168. Currently, the variable is created in the "current" module.
  6169. This might change when we get the new module system.
  6170. [The behaviour is identical to scm_make_named_hook.]
  6171. Changes since Guile 1.3:
  6172. * Changes to mailing lists
  6173. ** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
  6174. See the README file to find current addresses for all the Guile
  6175. mailing lists.
  6176. * Changes to the distribution
  6177. ** Readline support is no longer included with Guile by default.
  6178. Based on the different license terms of Guile and Readline, we
  6179. concluded that Guile should not *by default* cause the linking of
  6180. Readline into an application program. Readline support is now offered
  6181. as a separate module, which is linked into an application only when
  6182. you explicitly specify it.
  6183. Although Guile is GNU software, its distribution terms add a special
  6184. exception to the usual GNU General Public License (GPL). Guile's
  6185. license includes a clause that allows you to link Guile with non-free
  6186. programs. We add this exception so as not to put Guile at a
  6187. disadvantage vis-a-vis other extensibility packages that support other
  6188. languages.
  6189. In contrast, the GNU Readline library is distributed under the GNU
  6190. General Public License pure and simple. This means that you may not
  6191. link Readline, even dynamically, into an application unless it is
  6192. distributed under a free software license that is compatible the GPL.
  6193. Because of this difference in distribution terms, an application that
  6194. can use Guile may not be able to use Readline. Now users will be
  6195. explicitly offered two independent decisions about the use of these
  6196. two packages.
  6197. You can activate the readline support by issuing
  6198. (use-modules (readline-activator))
  6199. (activate-readline)
  6200. from your ".guile" file, for example.
  6201. * Changes to the stand-alone interpreter
  6202. ** All builtins now print as primitives.
  6203. Previously builtin procedures not belonging to the fundamental subr
  6204. types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
  6205. Now, they print as #<primitive-procedure NAME>.
  6206. ** Backtraces slightly more intelligible.
  6207. gsubr-apply and macro transformer application frames no longer appear
  6208. in backtraces.
  6209. * Changes to Scheme functions and syntax
  6210. ** Guile now correctly handles internal defines by rewriting them into
  6211. their equivalent letrec. Previously, internal defines would
  6212. incrementally add to the innermost environment, without checking
  6213. whether the restrictions specified in RnRS were met. This lead to the
  6214. correct behaviour when these restriction actually were met, but didn't
  6215. catch all illegal uses. Such an illegal use could lead to crashes of
  6216. the Guile interpreter or other unwanted results. An example of
  6217. incorrect internal defines that made Guile behave erratically:
  6218. (let ()
  6219. (define a 1)
  6220. (define (b) a)
  6221. (define c (1+ (b)))
  6222. (define d 3)
  6223. (b))
  6224. => 2
  6225. The problem with this example is that the definition of `c' uses the
  6226. value of `b' directly. This confuses the meoization machine of Guile
  6227. so that the second call of `b' (this time in a larger environment that
  6228. also contains bindings for `c' and `d') refers to the binding of `c'
  6229. instead of `a'. You could also make Guile crash with a variation on
  6230. this theme:
  6231. (define (foo flag)
  6232. (define a 1)
  6233. (define (b flag) (if flag a 1))
  6234. (define c (1+ (b flag)))
  6235. (define d 3)
  6236. (b #t))
  6237. (foo #f)
  6238. (foo #t)
  6239. From now on, Guile will issue an `Unbound variable: b' error message
  6240. for both examples.
  6241. ** Hooks
  6242. A hook contains a list of functions which should be called on
  6243. particular occasions in an existing program. Hooks are used for
  6244. customization.
  6245. A window manager might have a hook before-window-map-hook. The window
  6246. manager uses the function run-hooks to call all functions stored in
  6247. before-window-map-hook each time a window is mapped. The user can
  6248. store functions in the hook using add-hook!.
  6249. In Guile, hooks are first class objects.
  6250. *** New function: make-hook [N_ARGS]
  6251. Return a hook for hook functions which can take N_ARGS arguments.
  6252. The default value for N_ARGS is 0.
  6253. (See also scm_make_named_hook below.)
  6254. *** New function: add-hook! HOOK PROC [APPEND_P]
  6255. Put PROC at the beginning of the list of functions stored in HOOK.
  6256. If APPEND_P is supplied, and non-false, put PROC at the end instead.
  6257. PROC must be able to take the number of arguments specified when the
  6258. hook was created.
  6259. If PROC already exists in HOOK, then remove it first.
  6260. *** New function: remove-hook! HOOK PROC
  6261. Remove PROC from the list of functions in HOOK.
  6262. *** New function: reset-hook! HOOK
  6263. Clear the list of hook functions stored in HOOK.
  6264. *** New function: run-hook HOOK ARG1 ...
  6265. Run all hook functions stored in HOOK with arguments ARG1 ... .
  6266. The number of arguments supplied must correspond to the number given
  6267. when the hook was created.
  6268. ** The function `dynamic-link' now takes optional keyword arguments.
  6269. The only keyword argument that is currently defined is `:global
  6270. BOOL'. With it, you can control whether the shared library will be
  6271. linked in global mode or not. In global mode, the symbols from the
  6272. linked library can be used to resolve references from other
  6273. dynamically linked libraries. In non-global mode, the linked
  6274. library is essentially invisible and can only be accessed via
  6275. `dynamic-func', etc. The default is now to link in global mode.
  6276. Previously, the default has been non-global mode.
  6277. The `#:global' keyword is only effective on platforms that support
  6278. the dlopen family of functions.
  6279. ** New function `provided?'
  6280. - Function: provided? FEATURE
  6281. Return true iff FEATURE is supported by this installation of
  6282. Guile. FEATURE must be a symbol naming a feature; the global
  6283. variable `*features*' is a list of available features.
  6284. ** Changes to the module (ice-9 expect):
  6285. *** The expect-strings macro now matches `$' in a regular expression
  6286. only at a line-break or end-of-file by default. Previously it would
  6287. match the end of the string accumulated so far. The old behaviour
  6288. can be obtained by setting the variable `expect-strings-exec-flags'
  6289. to 0.
  6290. *** The expect-strings macro now uses a variable `expect-strings-exec-flags'
  6291. for the regexp-exec flags. If `regexp/noteol' is included, then `$'
  6292. in a regular expression will still match before a line-break or
  6293. end-of-file. The default is `regexp/noteol'.
  6294. *** The expect-strings macro now uses a variable
  6295. `expect-strings-compile-flags' for the flags to be supplied to
  6296. `make-regexp'. The default is `regexp/newline', which was previously
  6297. hard-coded.
  6298. *** The expect macro now supplies two arguments to a match procedure:
  6299. the current accumulated string and a flag to indicate whether
  6300. end-of-file has been reached. Previously only the string was supplied.
  6301. If end-of-file is reached, the match procedure will be called an
  6302. additional time with the same accumulated string as the previous call
  6303. but with the flag set.
  6304. ** New module (ice-9 format), implementing the Common Lisp `format' function.
  6305. This code, and the documentation for it that appears here, was
  6306. borrowed from SLIB, with minor adaptations for Guile.
  6307. - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
  6308. An almost complete implementation of Common LISP format description
  6309. according to the CL reference book `Common LISP' from Guy L.
  6310. Steele, Digital Press. Backward compatible to most of the
  6311. available Scheme format implementations.
  6312. Returns `#t', `#f' or a string; has side effect of printing
  6313. according to FORMAT-STRING. If DESTINATION is `#t', the output is
  6314. to the current output port and `#t' is returned. If DESTINATION
  6315. is `#f', a formatted string is returned as the result of the call.
  6316. NEW: If DESTINATION is a string, DESTINATION is regarded as the
  6317. format string; FORMAT-STRING is then the first argument and the
  6318. output is returned as a string. If DESTINATION is a number, the
  6319. output is to the current error port if available by the
  6320. implementation. Otherwise DESTINATION must be an output port and
  6321. `#t' is returned.
  6322. FORMAT-STRING must be a string. In case of a formatting error
  6323. format returns `#f' and prints a message on the current output or
  6324. error port. Characters are output as if the string were output by
  6325. the `display' function with the exception of those prefixed by a
  6326. tilde (~). For a detailed description of the FORMAT-STRING syntax
  6327. please consult a Common LISP format reference manual. For a test
  6328. suite to verify this format implementation load `formatst.scm'.
  6329. Please send bug reports to `lutzeb@cs.tu-berlin.de'.
  6330. Note: `format' is not reentrant, i.e. only one `format'-call may
  6331. be executed at a time.
  6332. *** Format Specification (Format version 3.0)
  6333. Please consult a Common LISP format reference manual for a detailed
  6334. description of the format string syntax. For a demonstration of the
  6335. implemented directives see `formatst.scm'.
  6336. This implementation supports directive parameters and modifiers (`:'
  6337. and `@' characters). Multiple parameters must be separated by a comma
  6338. (`,'). Parameters can be numerical parameters (positive or negative),
  6339. character parameters (prefixed by a quote character (`''), variable
  6340. parameters (`v'), number of rest arguments parameter (`#'), empty and
  6341. default parameters. Directive characters are case independent. The
  6342. general form of a directive is:
  6343. DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
  6344. DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
  6345. *** Implemented CL Format Control Directives
  6346. Documentation syntax: Uppercase characters represent the
  6347. corresponding control directive characters. Lowercase characters
  6348. represent control directive parameter descriptions.
  6349. `~A'
  6350. Any (print as `display' does).
  6351. `~@A'
  6352. left pad.
  6353. `~MINCOL,COLINC,MINPAD,PADCHARA'
  6354. full padding.
  6355. `~S'
  6356. S-expression (print as `write' does).
  6357. `~@S'
  6358. left pad.
  6359. `~MINCOL,COLINC,MINPAD,PADCHARS'
  6360. full padding.
  6361. `~D'
  6362. Decimal.
  6363. `~@D'
  6364. print number sign always.
  6365. `~:D'
  6366. print comma separated.
  6367. `~MINCOL,PADCHAR,COMMACHARD'
  6368. padding.
  6369. `~X'
  6370. Hexadecimal.
  6371. `~@X'
  6372. print number sign always.
  6373. `~:X'
  6374. print comma separated.
  6375. `~MINCOL,PADCHAR,COMMACHARX'
  6376. padding.
  6377. `~O'
  6378. Octal.
  6379. `~@O'
  6380. print number sign always.
  6381. `~:O'
  6382. print comma separated.
  6383. `~MINCOL,PADCHAR,COMMACHARO'
  6384. padding.
  6385. `~B'
  6386. Binary.
  6387. `~@B'
  6388. print number sign always.
  6389. `~:B'
  6390. print comma separated.
  6391. `~MINCOL,PADCHAR,COMMACHARB'
  6392. padding.
  6393. `~NR'
  6394. Radix N.
  6395. `~N,MINCOL,PADCHAR,COMMACHARR'
  6396. padding.
  6397. `~@R'
  6398. print a number as a Roman numeral.
  6399. `~:@R'
  6400. print a number as an "old fashioned" Roman numeral.
  6401. `~:R'
  6402. print a number as an ordinal English number.
  6403. `~:@R'
  6404. print a number as a cardinal English number.
  6405. `~P'
  6406. Plural.
  6407. `~@P'
  6408. prints `y' and `ies'.
  6409. `~:P'
  6410. as `~P but jumps 1 argument backward.'
  6411. `~:@P'
  6412. as `~@P but jumps 1 argument backward.'
  6413. `~C'
  6414. Character.
  6415. `~@C'
  6416. prints a character as the reader can understand it (i.e. `#\'
  6417. prefixing).
  6418. `~:C'
  6419. prints a character as emacs does (eg. `^C' for ASCII 03).
  6420. `~F'
  6421. Fixed-format floating-point (prints a flonum like MMM.NNN).
  6422. `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
  6423. `~@F'
  6424. If the number is positive a plus sign is printed.
  6425. `~E'
  6426. Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
  6427. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
  6428. `~@E'
  6429. If the number is positive a plus sign is printed.
  6430. `~G'
  6431. General floating-point (prints a flonum either fixed or
  6432. exponential).
  6433. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
  6434. `~@G'
  6435. If the number is positive a plus sign is printed.
  6436. `~$'
  6437. Dollars floating-point (prints a flonum in fixed with signs
  6438. separated).
  6439. `~DIGITS,SCALE,WIDTH,PADCHAR$'
  6440. `~@$'
  6441. If the number is positive a plus sign is printed.
  6442. `~:@$'
  6443. A sign is always printed and appears before the padding.
  6444. `~:$'
  6445. The sign appears before the padding.
  6446. `~%'
  6447. Newline.
  6448. `~N%'
  6449. print N newlines.
  6450. `~&'
  6451. print newline if not at the beginning of the output line.
  6452. `~N&'
  6453. prints `~&' and then N-1 newlines.
  6454. `~|'
  6455. Page Separator.
  6456. `~N|'
  6457. print N page separators.
  6458. `~~'
  6459. Tilde.
  6460. `~N~'
  6461. print N tildes.
  6462. `~'<newline>
  6463. Continuation Line.
  6464. `~:'<newline>
  6465. newline is ignored, white space left.
  6466. `~@'<newline>
  6467. newline is left, white space ignored.
  6468. `~T'
  6469. Tabulation.
  6470. `~@T'
  6471. relative tabulation.
  6472. `~COLNUM,COLINCT'
  6473. full tabulation.
  6474. `~?'
  6475. Indirection (expects indirect arguments as a list).
  6476. `~@?'
  6477. extracts indirect arguments from format arguments.
  6478. `~(STR~)'
  6479. Case conversion (converts by `string-downcase').
  6480. `~:(STR~)'
  6481. converts by `string-capitalize'.
  6482. `~@(STR~)'
  6483. converts by `string-capitalize-first'.
  6484. `~:@(STR~)'
  6485. converts by `string-upcase'.
  6486. `~*'
  6487. Argument Jumping (jumps 1 argument forward).
  6488. `~N*'
  6489. jumps N arguments forward.
  6490. `~:*'
  6491. jumps 1 argument backward.
  6492. `~N:*'
  6493. jumps N arguments backward.
  6494. `~@*'
  6495. jumps to the 0th argument.
  6496. `~N@*'
  6497. jumps to the Nth argument (beginning from 0)
  6498. `~[STR0~;STR1~;...~;STRN~]'
  6499. Conditional Expression (numerical clause conditional).
  6500. `~N['
  6501. take argument from N.
  6502. `~@['
  6503. true test conditional.
  6504. `~:['
  6505. if-else-then conditional.
  6506. `~;'
  6507. clause separator.
  6508. `~:;'
  6509. default clause follows.
  6510. `~{STR~}'
  6511. Iteration (args come from the next argument (a list)).
  6512. `~N{'
  6513. at most N iterations.
  6514. `~:{'
  6515. args from next arg (a list of lists).
  6516. `~@{'
  6517. args from the rest of arguments.
  6518. `~:@{'
  6519. args from the rest args (lists).
  6520. `~^'
  6521. Up and out.
  6522. `~N^'
  6523. aborts if N = 0
  6524. `~N,M^'
  6525. aborts if N = M
  6526. `~N,M,K^'
  6527. aborts if N <= M <= K
  6528. *** Not Implemented CL Format Control Directives
  6529. `~:A'
  6530. print `#f' as an empty list (see below).
  6531. `~:S'
  6532. print `#f' as an empty list (see below).
  6533. `~<~>'
  6534. Justification.
  6535. `~:^'
  6536. (sorry I don't understand its semantics completely)
  6537. *** Extended, Replaced and Additional Control Directives
  6538. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
  6539. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
  6540. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
  6541. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
  6542. `~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
  6543. COMMAWIDTH is the number of characters between two comma
  6544. characters.
  6545. `~I'
  6546. print a R4RS complex number as `~F~@Fi' with passed parameters for
  6547. `~F'.
  6548. `~Y'
  6549. Pretty print formatting of an argument for scheme code lists.
  6550. `~K'
  6551. Same as `~?.'
  6552. `~!'
  6553. Flushes the output if format DESTINATION is a port.
  6554. `~_'
  6555. Print a `#\space' character
  6556. `~N_'
  6557. print N `#\space' characters.
  6558. `~/'
  6559. Print a `#\tab' character
  6560. `~N/'
  6561. print N `#\tab' characters.
  6562. `~NC'
  6563. Takes N as an integer representation for a character. No arguments
  6564. are consumed. N is converted to a character by `integer->char'. N
  6565. must be a positive decimal number.
  6566. `~:S'
  6567. Print out readproof. Prints out internal objects represented as
  6568. `#<...>' as strings `"#<...>"' so that the format output can always
  6569. be processed by `read'.
  6570. `~:A'
  6571. Print out readproof. Prints out internal objects represented as
  6572. `#<...>' as strings `"#<...>"' so that the format output can always
  6573. be processed by `read'.
  6574. `~Q'
  6575. Prints information and a copyright notice on the format
  6576. implementation.
  6577. `~:Q'
  6578. prints format version.
  6579. `~F, ~E, ~G, ~$'
  6580. may also print number strings, i.e. passing a number as a string
  6581. and format it accordingly.
  6582. *** Configuration Variables
  6583. The format module exports some configuration variables to suit the
  6584. systems and users needs. There should be no modification necessary for
  6585. the configuration that comes with Guile. Format detects automatically
  6586. if the running scheme system implements floating point numbers and
  6587. complex numbers.
  6588. format:symbol-case-conv
  6589. Symbols are converted by `symbol->string' so the case type of the
  6590. printed symbols is implementation dependent.
  6591. `format:symbol-case-conv' is a one arg closure which is either
  6592. `#f' (no conversion), `string-upcase', `string-downcase' or
  6593. `string-capitalize'. (default `#f')
  6594. format:iobj-case-conv
  6595. As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
  6596. implementation internal objects. (default `#f')
  6597. format:expch
  6598. The character prefixing the exponent value in `~E' printing.
  6599. (default `#\E')
  6600. *** Compatibility With Other Format Implementations
  6601. SLIB format 2.x:
  6602. See `format.doc'.
  6603. SLIB format 1.4:
  6604. Downward compatible except for padding support and `~A', `~S',
  6605. `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
  6606. `printf' padding support which is completely replaced by the CL
  6607. `format' padding style.
  6608. MIT C-Scheme 7.1:
  6609. Downward compatible except for `~', which is not documented
  6610. (ignores all characters inside the format string up to a newline
  6611. character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
  6612. numerical and variable parameters and `:/@' modifiers in the CL
  6613. sense).
  6614. Elk 1.5/2.0:
  6615. Downward compatible except for `~A' and `~S' which print in
  6616. uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
  6617. directive parameters or modifiers)).
  6618. Scheme->C 01nov91:
  6619. Downward compatible except for an optional destination parameter:
  6620. S2C accepts a format call without a destination which returns a
  6621. formatted string. This is equivalent to a #f destination in S2C.
  6622. (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
  6623. parameters or modifiers)).
  6624. ** Changes to string-handling functions.
  6625. These functions were added to support the (ice-9 format) module, above.
  6626. *** New function: string-upcase STRING
  6627. *** New function: string-downcase STRING
  6628. These are non-destructive versions of the existing string-upcase! and
  6629. string-downcase! functions.
  6630. *** New function: string-capitalize! STRING
  6631. *** New function: string-capitalize STRING
  6632. These functions convert the first letter of each word in the string to
  6633. upper case. Thus:
  6634. (string-capitalize "howdy there")
  6635. => "Howdy There"
  6636. As with the other functions, string-capitalize! modifies the string in
  6637. place, while string-capitalize returns a modified copy of its argument.
  6638. *** New function: string-ci->symbol STRING
  6639. Return a symbol whose name is STRING, but having the same case as if
  6640. the symbol had be read by `read'.
  6641. Guile can be configured to be sensitive or insensitive to case
  6642. differences in Scheme identifiers. If Guile is case-insensitive, all
  6643. symbols are converted to lower case on input. The `string-ci->symbol'
  6644. function returns a symbol whose name in STRING, transformed as Guile
  6645. would if STRING were input.
  6646. *** New function: substring-move! STRING1 START END STRING2 START
  6647. Copy the substring of STRING1 from START (inclusive) to END
  6648. (exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
  6649. string, and the source and destination areas may overlap; in all
  6650. cases, the function behaves as if all the characters were copied
  6651. simultanously.
  6652. *** Extended functions: substring-move-left! substring-move-right!
  6653. These functions now correctly copy arbitrarily overlapping substrings;
  6654. they are both synonyms for substring-move!.
  6655. ** New module (ice-9 getopt-long), with the function `getopt-long'.
  6656. getopt-long is a function for parsing command-line arguments in a
  6657. manner consistent with other GNU programs.
  6658. (getopt-long ARGS GRAMMAR)
  6659. Parse the arguments ARGS according to the argument list grammar GRAMMAR.
  6660. ARGS should be a list of strings. Its first element should be the
  6661. name of the program; subsequent elements should be the arguments
  6662. that were passed to the program on the command line. The
  6663. `program-arguments' procedure returns a list of this form.
  6664. GRAMMAR is a list of the form:
  6665. ((OPTION (PROPERTY VALUE) ...) ...)
  6666. Each OPTION should be a symbol. `getopt-long' will accept a
  6667. command-line option named `--OPTION'.
  6668. Each option can have the following (PROPERTY VALUE) pairs:
  6669. (single-char CHAR) --- Accept `-CHAR' as a single-character
  6670. equivalent to `--OPTION'. This is how to specify traditional
  6671. Unix-style flags.
  6672. (required? BOOL) --- If BOOL is true, the option is required.
  6673. getopt-long will raise an error if it is not found in ARGS.
  6674. (value BOOL) --- If BOOL is #t, the option accepts a value; if
  6675. it is #f, it does not; and if it is the symbol
  6676. `optional', the option may appear in ARGS with or
  6677. without a value.
  6678. (predicate FUNC) --- If the option accepts a value (i.e. you
  6679. specified `(value #t)' for this option), then getopt
  6680. will apply FUNC to the value, and throw an exception
  6681. if it returns #f. FUNC should be a procedure which
  6682. accepts a string and returns a boolean value; you may
  6683. need to use quasiquotes to get it into GRAMMAR.
  6684. The (PROPERTY VALUE) pairs may occur in any order, but each
  6685. property may occur only once. By default, options do not have
  6686. single-character equivalents, are not required, and do not take
  6687. values.
  6688. In ARGS, single-character options may be combined, in the usual
  6689. Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
  6690. accepts values, then it must be the last option in the
  6691. combination; the value is the next argument. So, for example, using
  6692. the following grammar:
  6693. ((apples (single-char #\a))
  6694. (blimps (single-char #\b) (value #t))
  6695. (catalexis (single-char #\c) (value #t)))
  6696. the following argument lists would be acceptable:
  6697. ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
  6698. for "blimps" and "catalexis")
  6699. ("-ab" "bang" "-c" "couth") (same)
  6700. ("-ac" "couth" "-b" "bang") (same)
  6701. ("-abc" "couth" "bang") (an error, since `-b' is not the
  6702. last option in its combination)
  6703. If an option's value is optional, then `getopt-long' decides
  6704. whether it has a value by looking at what follows it in ARGS. If
  6705. the next element is a string, and it does not appear to be an
  6706. option itself, then that string is the option's value.
  6707. The value of a long option can appear as the next element in ARGS,
  6708. or it can follow the option name, separated by an `=' character.
  6709. Thus, using the same grammar as above, the following argument lists
  6710. are equivalent:
  6711. ("--apples" "Braeburn" "--blimps" "Goodyear")
  6712. ("--apples=Braeburn" "--blimps" "Goodyear")
  6713. ("--blimps" "Goodyear" "--apples=Braeburn")
  6714. If the option "--" appears in ARGS, argument parsing stops there;
  6715. subsequent arguments are returned as ordinary arguments, even if
  6716. they resemble options. So, in the argument list:
  6717. ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
  6718. `getopt-long' will recognize the `apples' option as having the
  6719. value "Granny Smith", but it will not recognize the `blimp'
  6720. option; it will return the strings "--blimp" and "Goodyear" as
  6721. ordinary argument strings.
  6722. The `getopt-long' function returns the parsed argument list as an
  6723. assocation list, mapping option names --- the symbols from GRAMMAR
  6724. --- onto their values, or #t if the option does not accept a value.
  6725. Unused options do not appear in the alist.
  6726. All arguments that are not the value of any option are returned
  6727. as a list, associated with the empty list.
  6728. `getopt-long' throws an exception if:
  6729. - it finds an unrecognized option in ARGS
  6730. - a required option is omitted
  6731. - an option that requires an argument doesn't get one
  6732. - an option that doesn't accept an argument does get one (this can
  6733. only happen using the long option `--opt=value' syntax)
  6734. - an option predicate fails
  6735. So, for example:
  6736. (define grammar
  6737. `((lockfile-dir (required? #t)
  6738. (value #t)
  6739. (single-char #\k)
  6740. (predicate ,file-is-directory?))
  6741. (verbose (required? #f)
  6742. (single-char #\v)
  6743. (value #f))
  6744. (x-includes (single-char #\x))
  6745. (rnet-server (single-char #\y)
  6746. (predicate ,string?))))
  6747. (getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
  6748. "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
  6749. grammar)
  6750. => ((() "foo1" "-fred" "foo2" "foo3")
  6751. (rnet-server . "lamprod")
  6752. (x-includes . "/usr/include")
  6753. (lockfile-dir . "/tmp")
  6754. (verbose . #t))
  6755. ** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
  6756. It will be removed in a few releases.
  6757. ** New syntax: lambda*
  6758. ** New syntax: define*
  6759. ** New syntax: define*-public
  6760. ** New syntax: defmacro*
  6761. ** New syntax: defmacro*-public
  6762. Guile now supports optional arguments.
  6763. `lambda*', `define*', `define*-public', `defmacro*' and
  6764. `defmacro*-public' are identical to the non-* versions except that
  6765. they use an extended type of parameter list that has the following BNF
  6766. syntax (parentheses are literal, square brackets indicate grouping,
  6767. and `*', `+' and `?' have the usual meaning):
  6768. ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
  6769. [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
  6770. [[#&rest identifier]|[. identifier]]? ) | [identifier]
  6771. ext-var-decl ::= identifier | ( identifier expression )
  6772. The semantics are best illustrated with the following documentation
  6773. and examples for `lambda*':
  6774. lambda* args . body
  6775. lambda extended for optional and keyword arguments
  6776. lambda* creates a procedure that takes optional arguments. These
  6777. are specified by putting them inside brackets at the end of the
  6778. paramater list, but before any dotted rest argument. For example,
  6779. (lambda* (a b #&optional c d . e) '())
  6780. creates a procedure with fixed arguments a and b, optional arguments c
  6781. and d, and rest argument e. If the optional arguments are omitted
  6782. in a call, the variables for them are unbound in the procedure. This
  6783. can be checked with the bound? macro.
  6784. lambda* can also take keyword arguments. For example, a procedure
  6785. defined like this:
  6786. (lambda* (#&key xyzzy larch) '())
  6787. can be called with any of the argument lists (#:xyzzy 11)
  6788. (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
  6789. are given as keywords are bound to values.
  6790. Optional and keyword arguments can also be given default values
  6791. which they take on when they are not present in a call, by giving a
  6792. two-item list in place of an optional argument, for example in:
  6793. (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
  6794. foo is a fixed argument, bar is an optional argument with default
  6795. value 42, and baz is a keyword argument with default value 73.
  6796. Default value expressions are not evaluated unless they are needed
  6797. and until the procedure is called.
  6798. lambda* now supports two more special parameter list keywords.
  6799. lambda*-defined procedures now throw an error by default if a
  6800. keyword other than one of those specified is found in the actual
  6801. passed arguments. However, specifying #&allow-other-keys
  6802. immediately after the kyword argument declarations restores the
  6803. previous behavior of ignoring unknown keywords. lambda* also now
  6804. guarantees that if the same keyword is passed more than once, the
  6805. last one passed is the one that takes effect. For example,
  6806. ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
  6807. #:heads 37 #:tails 42 #:heads 99)
  6808. would result in (99 47) being displayed.
  6809. #&rest is also now provided as a synonym for the dotted syntax rest
  6810. argument. The argument lists (a . b) and (a #&rest b) are equivalent in
  6811. all respects to lambda*. This is provided for more similarity to DSSSL,
  6812. MIT-Scheme and Kawa among others, as well as for refugees from other
  6813. Lisp dialects.
  6814. Further documentation may be found in the optargs.scm file itself.
  6815. The optional argument module also exports the macros `let-optional',
  6816. `let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
  6817. are not documented here because they may be removed in the future, but
  6818. full documentation is still available in optargs.scm.
  6819. ** New syntax: and-let*
  6820. Guile now supports the `and-let*' form, described in the draft SRFI-2.
  6821. Syntax: (land* (<clause> ...) <body> ...)
  6822. Each <clause> should have one of the following forms:
  6823. (<variable> <expression>)
  6824. (<expression>)
  6825. <bound-variable>
  6826. Each <variable> or <bound-variable> should be an identifier. Each
  6827. <expression> should be a valid expression. The <body> should be a
  6828. possibly empty sequence of expressions, like the <body> of a
  6829. lambda form.
  6830. Semantics: A LAND* expression is evaluated by evaluating the
  6831. <expression> or <bound-variable> of each of the <clause>s from
  6832. left to right. The value of the first <expression> or
  6833. <bound-variable> that evaluates to a false value is returned; the
  6834. remaining <expression>s and <bound-variable>s are not evaluated.
  6835. The <body> forms are evaluated iff all the <expression>s and
  6836. <bound-variable>s evaluate to true values.
  6837. The <expression>s and the <body> are evaluated in an environment
  6838. binding each <variable> of the preceding (<variable> <expression>)
  6839. clauses to the value of the <expression>. Later bindings
  6840. shadow earlier bindings.
  6841. Guile's and-let* macro was contributed by Michael Livshin.
  6842. ** New sorting functions
  6843. *** New function: sorted? SEQUENCE LESS?
  6844. Returns `#t' when the sequence argument is in non-decreasing order
  6845. according to LESS? (that is, there is no adjacent pair `... x y
  6846. ...' for which `(less? y x)').
  6847. Returns `#f' when the sequence contains at least one out-of-order
  6848. pair. It is an error if the sequence is neither a list nor a
  6849. vector.
  6850. *** New function: merge LIST1 LIST2 LESS?
  6851. LIST1 and LIST2 are sorted lists.
  6852. Returns the sorted list of all elements in LIST1 and LIST2.
  6853. Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
  6854. in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
  6855. and that a < b1 in LIST1. Then a < b1 < b2 in the result.
  6856. (Here "<" should read "comes before".)
  6857. *** New procedure: merge! LIST1 LIST2 LESS?
  6858. Merges two lists, re-using the pairs of LIST1 and LIST2 to build
  6859. the result. If the code is compiled, and LESS? constructs no new
  6860. pairs, no pairs at all will be allocated. The first pair of the
  6861. result will be either the first pair of LIST1 or the first pair of
  6862. LIST2.
  6863. *** New function: sort SEQUENCE LESS?
  6864. Accepts either a list or a vector, and returns a new sequence
  6865. which is sorted. The new sequence is the same type as the input.
  6866. Always `(sorted? (sort sequence less?) less?)'. The original
  6867. sequence is not altered in any way. The new sequence shares its
  6868. elements with the old one; no elements are copied.
  6869. *** New procedure: sort! SEQUENCE LESS
  6870. Returns its sorted result in the original boxes. No new storage is
  6871. allocated at all. Proper usage: (set! slist (sort! slist <))
  6872. *** New function: stable-sort SEQUENCE LESS?
  6873. Similar to `sort' but stable. That is, if "equal" elements are
  6874. ordered a < b in the original sequence, they will have the same order
  6875. in the result.
  6876. *** New function: stable-sort! SEQUENCE LESS?
  6877. Similar to `sort!' but stable.
  6878. Uses temporary storage when sorting vectors.
  6879. *** New functions: sort-list, sort-list!
  6880. Added for compatibility with scsh.
  6881. ** New built-in random number support
  6882. *** New function: random N [STATE]
  6883. Accepts a positive integer or real N and returns a number of the
  6884. same type between zero (inclusive) and N (exclusive). The values
  6885. returned have a uniform distribution.
  6886. The optional argument STATE must be of the type produced by
  6887. `copy-random-state' or `seed->random-state'. It defaults to the value
  6888. of the variable `*random-state*'. This object is used to maintain the
  6889. state of the pseudo-random-number generator and is altered as a side
  6890. effect of the `random' operation.
  6891. *** New variable: *random-state*
  6892. Holds a data structure that encodes the internal state of the
  6893. random-number generator that `random' uses by default. The nature
  6894. of this data structure is implementation-dependent. It may be
  6895. printed out and successfully read back in, but may or may not
  6896. function correctly as a random-number state object in another
  6897. implementation.
  6898. *** New function: copy-random-state [STATE]
  6899. Returns a new object of type suitable for use as the value of the
  6900. variable `*random-state*' and as a second argument to `random'.
  6901. If argument STATE is given, a copy of it is returned. Otherwise a
  6902. copy of `*random-state*' is returned.
  6903. *** New function: seed->random-state SEED
  6904. Returns a new object of type suitable for use as the value of the
  6905. variable `*random-state*' and as a second argument to `random'.
  6906. SEED is a string or a number. A new state is generated and
  6907. initialized using SEED.
  6908. *** New function: random:uniform [STATE]
  6909. Returns an uniformly distributed inexact real random number in the
  6910. range between 0 and 1.
  6911. *** New procedure: random:solid-sphere! VECT [STATE]
  6912. Fills VECT with inexact real random numbers the sum of whose
  6913. squares is less than 1.0. Thinking of VECT as coordinates in
  6914. space of dimension N = `(vector-length VECT)', the coordinates are
  6915. uniformly distributed within the unit N-shere. The sum of the
  6916. squares of the numbers is returned. VECT can be either a vector
  6917. or a uniform vector of doubles.
  6918. *** New procedure: random:hollow-sphere! VECT [STATE]
  6919. Fills VECT with inexact real random numbers the sum of whose squares
  6920. is equal to 1.0. Thinking of VECT as coordinates in space of
  6921. dimension n = `(vector-length VECT)', the coordinates are uniformly
  6922. distributed over the surface of the unit n-shere. VECT can be either
  6923. a vector or a uniform vector of doubles.
  6924. *** New function: random:normal [STATE]
  6925. Returns an inexact real in a normal distribution with mean 0 and
  6926. standard deviation 1. For a normal distribution with mean M and
  6927. standard deviation D use `(+ M (* D (random:normal)))'.
  6928. *** New procedure: random:normal-vector! VECT [STATE]
  6929. Fills VECT with inexact real random numbers which are independent and
  6930. standard normally distributed (i.e., with mean 0 and variance 1).
  6931. VECT can be either a vector or a uniform vector of doubles.
  6932. *** New function: random:exp STATE
  6933. Returns an inexact real in an exponential distribution with mean 1.
  6934. For an exponential distribution with mean U use (* U (random:exp)).
  6935. ** The range of logand, logior, logxor, logtest, and logbit? have changed.
  6936. These functions now operate on numbers in the range of a C unsigned
  6937. long.
  6938. These functions used to operate on numbers in the range of a C signed
  6939. long; however, this seems inappropriate, because Guile integers don't
  6940. overflow.
  6941. ** New function: make-guardian
  6942. This is an implementation of guardians as described in
  6943. R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
  6944. Generation-Based Garbage Collector" ACM SIGPLAN Conference on
  6945. Programming Language Design and Implementation, June 1993
  6946. ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
  6947. ** New functions: delq1!, delv1!, delete1!
  6948. These procedures behave similar to delq! and friends but delete only
  6949. one object if at all.
  6950. ** New function: unread-string STRING PORT
  6951. Unread STRING to PORT, that is, push it back onto the port so that
  6952. next read operation will work on the pushed back characters.
  6953. ** unread-char can now be called multiple times
  6954. If unread-char is called multiple times, the unread characters will be
  6955. read again in last-in first-out order.
  6956. ** the procedures uniform-array-read! and uniform-array-write! now
  6957. work on any kind of port, not just ports which are open on a file.
  6958. ** Now 'l' in a port mode requests line buffering.
  6959. ** The procedure truncate-file now works on string ports as well
  6960. as file ports. If the size argument is omitted, the current
  6961. file position is used.
  6962. ** new procedure: seek PORT/FDES OFFSET WHENCE
  6963. The arguments are the same as for the old fseek procedure, but it
  6964. works on string ports as well as random-access file ports.
  6965. ** the fseek procedure now works on string ports, since it has been
  6966. redefined using seek.
  6967. ** the setvbuf procedure now uses a default size if mode is _IOFBF and
  6968. size is not supplied.
  6969. ** the newline procedure no longer flushes the port if it's not
  6970. line-buffered: previously it did if it was the current output port.
  6971. ** open-pipe and close-pipe are no longer primitive procedures, but
  6972. an emulation can be obtained using `(use-modules (ice-9 popen))'.
  6973. ** the freopen procedure has been removed.
  6974. ** new procedure: drain-input PORT
  6975. Drains PORT's read buffers (including any pushed-back characters)
  6976. and returns the contents as a single string.
  6977. ** New function: map-in-order PROC LIST1 LIST2 ...
  6978. Version of `map' which guarantees that the procedure is applied to the
  6979. lists in serial order.
  6980. ** Renamed `serial-array-copy!' and `serial-array-map!' to
  6981. `array-copy-in-order!' and `array-map-in-order!'. The old names are
  6982. now obsolete and will go away in release 1.5.
  6983. ** New syntax: collect BODY1 ...
  6984. Version of `begin' which returns a list of the results of the body
  6985. forms instead of the result of the last body form. In contrast to
  6986. `begin', `collect' allows an empty body.
  6987. ** New functions: read-history FILENAME, write-history FILENAME
  6988. Read/write command line history from/to file. Returns #t on success
  6989. and #f if an error occured.
  6990. ** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
  6991. These procedures return a list of definitions available in the specified
  6992. argument, a relative module reference. In the case of no argument,
  6993. `(current-module)' is now consulted for definitions to return, instead
  6994. of simply returning #f, the former behavior.
  6995. ** The #/ syntax for lists is no longer supported.
  6996. Earlier versions of Scheme accepted this syntax, but printed a
  6997. warning.
  6998. ** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
  6999. Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
  7000. modules.
  7001. * Changes to the gh_ interface
  7002. ** gh_scm2doubles
  7003. Now takes a second argument which is the result array. If this
  7004. pointer is NULL, a new array is malloced (the old behaviour).
  7005. ** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
  7006. gh_scm2shorts, gh_scm2longs, gh_scm2floats
  7007. New functions.
  7008. * Changes to the scm_ interface
  7009. ** Function: scm_make_named_hook (char* name, int n_args)
  7010. Creates a hook in the same way as make-hook above but also
  7011. binds a variable named NAME to it.
  7012. This is the typical way of creating a hook from C code.
  7013. Currently, the variable is created in the "current" module. This
  7014. might change when we get the new module system.
  7015. ** The smob interface
  7016. The interface for creating smobs has changed. For documentation, see
  7017. data-rep.info (made from guile-core/doc/data-rep.texi).
  7018. *** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
  7019. >>> This function will be removed in 1.3.4. <<<
  7020. It is replaced by:
  7021. *** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
  7022. This function adds a new smob type, named NAME, with instance size
  7023. SIZE to the system. The return value is a tag that is used in
  7024. creating instances of the type. If SIZE is 0, then no memory will
  7025. be allocated when instances of the smob are created, and nothing
  7026. will be freed by the default free function.
  7027. *** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
  7028. This function sets the smob marking procedure for the smob type
  7029. specified by the tag TC. TC is the tag returned by
  7030. `scm_make_smob_type'.
  7031. *** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
  7032. This function sets the smob freeing procedure for the smob type
  7033. specified by the tag TC. TC is the tag returned by
  7034. `scm_make_smob_type'.
  7035. *** Function: void scm_set_smob_print (tc, print)
  7036. - Function: void scm_set_smob_print (long tc,
  7037. scm_sizet (*print) (SCM,
  7038. SCM,
  7039. scm_print_state *))
  7040. This function sets the smob printing procedure for the smob type
  7041. specified by the tag TC. TC is the tag returned by
  7042. `scm_make_smob_type'.
  7043. *** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
  7044. This function sets the smob equality-testing predicate for the
  7045. smob type specified by the tag TC. TC is the tag returned by
  7046. `scm_make_smob_type'.
  7047. *** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
  7048. Make VALUE contain a smob instance of the type with type code TC and
  7049. smob data DATA. VALUE must be previously declared as C type `SCM'.
  7050. *** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
  7051. This macro expands to a block of code that creates a smob instance
  7052. of the type with type code TC and smob data DATA, and returns that
  7053. `SCM' value. It should be the last piece of code in a block.
  7054. ** The interfaces for using I/O ports and implementing port types
  7055. (ptobs) have changed significantly. The new interface is based on
  7056. shared access to buffers and a new set of ptob procedures.
  7057. *** scm_newptob has been removed
  7058. It is replaced by:
  7059. *** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
  7060. - Function: SCM scm_make_port_type (char *type_name,
  7061. int (*fill_buffer) (SCM port),
  7062. void (*write_flush) (SCM port));
  7063. Similarly to the new smob interface, there is a set of function
  7064. setters by which the user can customize the behaviour of his port
  7065. type. See ports.h (scm_set_port_XXX).
  7066. ** scm_strport_to_string: New function: creates a new string from
  7067. a string port's buffer.
  7068. ** Plug in interface for random number generators
  7069. The variable `scm_the_rng' in random.c contains a value and three
  7070. function pointers which together define the current random number
  7071. generator being used by the Scheme level interface and the random
  7072. number library functions.
  7073. The user is free to replace the default generator with the generator
  7074. of his own choice.
  7075. *** Variable: size_t scm_the_rng.rstate_size
  7076. The size of the random state type used by the current RNG
  7077. measured in chars.
  7078. *** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
  7079. Given the random STATE, return 32 random bits.
  7080. *** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
  7081. Seed random state STATE using string S of length N.
  7082. *** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
  7083. Given random state STATE, return a malloced copy.
  7084. ** Default RNG
  7085. The default RNG is the MWC (Multiply With Carry) random number
  7086. generator described by George Marsaglia at the Department of
  7087. Statistics and Supercomputer Computations Research Institute, The
  7088. Florida State University (http://stat.fsu.edu/~geo).
  7089. It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
  7090. passes all tests in the DIEHARD test suite
  7091. (http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
  7092. costs one multiply and one add on platforms which either supports long
  7093. longs (gcc does this on most systems) or have 64 bit longs. The cost
  7094. is four multiply on other systems but this can be optimized by writing
  7095. scm_i_uniform32 in assembler.
  7096. These functions are provided through the scm_the_rng interface for use
  7097. by libguile and the application.
  7098. *** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
  7099. Given the random STATE, return 32 random bits.
  7100. Don't use this function directly. Instead go through the plugin
  7101. interface (see "Plug in interface" above).
  7102. *** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
  7103. Initialize STATE using SEED of length N.
  7104. *** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
  7105. Return a malloc:ed copy of STATE. This function can easily be re-used
  7106. in the interfaces to other RNGs.
  7107. ** Random number library functions
  7108. These functions use the current RNG through the scm_the_rng interface.
  7109. It might be a good idea to use these functions from your C code so
  7110. that only one random generator is used by all code in your program.
  7111. The default random state is stored in:
  7112. *** Variable: SCM scm_var_random_state
  7113. Contains the vcell of the Scheme variable "*random-state*" which is
  7114. used as default state by all random number functions in the Scheme
  7115. level interface.
  7116. Example:
  7117. double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
  7118. *** Function: scm_rstate *scm_c_default_rstate (void)
  7119. This is a convenience function which returns the value of
  7120. scm_var_random_state. An error message is generated if this value
  7121. isn't a random state.
  7122. *** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
  7123. Make a new random state from the string SEED of length LENGTH.
  7124. It is generally not a good idea to use multiple random states in a
  7125. program. While subsequent random numbers generated from one random
  7126. state are guaranteed to be reasonably independent, there is no such
  7127. guarantee for numbers generated from different random states.
  7128. *** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
  7129. Return 32 random bits.
  7130. *** Function: double scm_c_uniform01 (scm_rstate *STATE)
  7131. Return a sample from the uniform(0,1) distribution.
  7132. *** Function: double scm_c_normal01 (scm_rstate *STATE)
  7133. Return a sample from the normal(0,1) distribution.
  7134. *** Function: double scm_c_exp1 (scm_rstate *STATE)
  7135. Return a sample from the exp(1) distribution.
  7136. *** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
  7137. Return a sample from the discrete uniform(0,M) distribution.
  7138. *** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
  7139. Return a sample from the discrete uniform(0,M) distribution.
  7140. M must be a bignum object. The returned value may be an INUM.
  7141. Changes in Guile 1.3 (released Monday, October 19, 1998):
  7142. * Changes to the distribution
  7143. ** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
  7144. To avoid conflicts, programs should name environment variables after
  7145. themselves, except when there's a common practice establishing some
  7146. other convention.
  7147. For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
  7148. giving the former precedence, and printing a warning message if the
  7149. latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
  7150. ** The header files related to multi-byte characters have been removed.
  7151. They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
  7152. which referred to these explicitly will probably need to be rewritten,
  7153. since the support for the variant string types has been removed; see
  7154. below.
  7155. ** The header files append.h and sequences.h have been removed. These
  7156. files implemented non-R4RS operations which would encourage
  7157. non-portable programming style and less easy-to-read code.
  7158. * Changes to the stand-alone interpreter
  7159. ** New procedures have been added to implement a "batch mode":
  7160. *** Function: batch-mode?
  7161. Returns a boolean indicating whether the interpreter is in batch
  7162. mode.
  7163. *** Function: set-batch-mode?! ARG
  7164. If ARG is true, switches the interpreter to batch mode. The `#f'
  7165. case has not been implemented.
  7166. ** Guile now provides full command-line editing, when run interactively.
  7167. To use this feature, you must have the readline library installed.
  7168. The Guile build process will notice it, and automatically include
  7169. support for it.
  7170. The readline library is available via anonymous FTP from any GNU
  7171. mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
  7172. ** the-last-stack is now a fluid.
  7173. * Changes to the procedure for linking libguile with your programs
  7174. ** You can now use the `guile-config' utility to build programs that use Guile.
  7175. Guile now includes a command-line utility called `guile-config', which
  7176. can provide information about how to compile and link programs that
  7177. use Guile.
  7178. *** `guile-config compile' prints any C compiler flags needed to use Guile.
  7179. You should include this command's output on the command line you use
  7180. to compile C or C++ code that #includes the Guile header files. It's
  7181. usually just a `-I' flag to help the compiler find the Guile headers.
  7182. *** `guile-config link' prints any linker flags necessary to link with Guile.
  7183. This command writes to its standard output a list of flags which you
  7184. must pass to the linker to link your code against the Guile library.
  7185. The flags include '-lguile' itself, any other libraries the Guile
  7186. library depends upon, and any `-L' flags needed to help the linker
  7187. find those libraries.
  7188. For example, here is a Makefile rule that builds a program named 'foo'
  7189. from the object files ${FOO_OBJECTS}, and links them against Guile:
  7190. foo: ${FOO_OBJECTS}
  7191. ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
  7192. Previous Guile releases recommended that you use autoconf to detect
  7193. which of a predefined set of libraries were present on your system.
  7194. It is more robust to use `guile-config', since it records exactly which
  7195. libraries the installed Guile library requires.
  7196. This was originally called `build-guile', but was renamed to
  7197. `guile-config' before Guile 1.3 was released, to be consistent with
  7198. the analogous script for the GTK+ GUI toolkit, which is called
  7199. `gtk-config'.
  7200. ** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
  7201. If you are using the GNU autoconf package to configure your program,
  7202. you can use the GUILE_FLAGS autoconf macro to call `guile-config'
  7203. (described above) and gather the necessary values for use in your
  7204. Makefiles.
  7205. The GUILE_FLAGS macro expands to configure script code which runs the
  7206. `guile-config' script, to find out where Guile's header files and
  7207. libraries are installed. It sets two variables, marked for
  7208. substitution, as by AC_SUBST.
  7209. GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
  7210. code that uses Guile header files. This is almost always just a
  7211. -I flag.
  7212. GUILE_LDFLAGS --- flags to pass to the linker to link a
  7213. program against Guile. This includes `-lguile' for the Guile
  7214. library itself, any libraries that Guile itself requires (like
  7215. -lqthreads), and so on. It may also include a -L flag to tell the
  7216. compiler where to find the libraries.
  7217. GUILE_FLAGS is defined in the file guile.m4, in the top-level
  7218. directory of the Guile distribution. You can copy it into your
  7219. package's aclocal.m4 file, and then use it in your configure.in file.
  7220. If you are using the `aclocal' program, distributed with GNU automake,
  7221. to maintain your aclocal.m4 file, the Guile installation process
  7222. installs guile.m4 where aclocal will find it. All you need to do is
  7223. use GUILE_FLAGS in your configure.in file, and then run `aclocal';
  7224. this will copy the definition of GUILE_FLAGS into your aclocal.m4
  7225. file.
  7226. * Changes to Scheme functions and syntax
  7227. ** Multi-byte strings have been removed, as have multi-byte and wide
  7228. ports. We felt that these were the wrong approach to
  7229. internationalization support.
  7230. ** New function: readline [PROMPT]
  7231. Read a line from the terminal, and allow the user to edit it,
  7232. prompting with PROMPT. READLINE provides a large set of Emacs-like
  7233. editing commands, lets the user recall previously typed lines, and
  7234. works on almost every kind of terminal, including dumb terminals.
  7235. READLINE assumes that the cursor is at the beginning of the line when
  7236. it is invoked. Thus, you can't print a prompt yourself, and then call
  7237. READLINE; you need to package up your prompt as a string, pass it to
  7238. the function, and let READLINE print the prompt itself. This is
  7239. because READLINE needs to know the prompt's screen width.
  7240. For Guile to provide this function, you must have the readline
  7241. library, version 2.1 or later, installed on your system. Readline is
  7242. available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
  7243. any GNU mirror site.
  7244. See also ADD-HISTORY function.
  7245. ** New function: add-history STRING
  7246. Add STRING as the most recent line in the history used by the READLINE
  7247. command. READLINE does not add lines to the history itself; you must
  7248. call ADD-HISTORY to make previous input available to the user.
  7249. ** The behavior of the read-line function has changed.
  7250. This function now uses standard C library functions to read the line,
  7251. for speed. This means that it doesn not respect the value of
  7252. scm-line-incrementors; it assumes that lines are delimited with
  7253. #\newline.
  7254. (Note that this is read-line, the function that reads a line of text
  7255. from a port, not readline, the function that reads a line from a
  7256. terminal, providing full editing capabilities.)
  7257. ** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
  7258. This module provides some simple argument parsing. It exports one
  7259. function:
  7260. Function: getopt-gnu-style ARG-LS
  7261. Parse a list of program arguments into an alist of option
  7262. descriptions.
  7263. Each item in the list of program arguments is examined to see if
  7264. it meets the syntax of a GNU long-named option. An argument like
  7265. `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
  7266. returned alist, where MUMBLE is a keyword object with the same
  7267. name as the argument. An argument like `--MUMBLE=FROB' produces
  7268. an element of the form (MUMBLE . FROB), where FROB is a string.
  7269. As a special case, the returned alist also contains a pair whose
  7270. car is the symbol `rest'. The cdr of this pair is a list
  7271. containing all the items in the argument list that are not options
  7272. of the form mentioned above.
  7273. The argument `--' is treated specially: all items in the argument
  7274. list appearing after such an argument are not examined, and are
  7275. returned in the special `rest' list.
  7276. This function does not parse normal single-character switches.
  7277. You will need to parse them out of the `rest' list yourself.
  7278. ** The read syntax for byte vectors and short vectors has changed.
  7279. Instead of #bytes(...), write #y(...).
  7280. Instead of #short(...), write #h(...).
  7281. This may seem nutty, but, like the other uniform vectors, byte vectors
  7282. and short vectors want to have the same print and read syntax (and,
  7283. more basic, want to have read syntax!). Changing the read syntax to
  7284. use multiple characters after the hash sign breaks with the
  7285. conventions used in R5RS and the conventions used for the other
  7286. uniform vectors. It also introduces complexity in the current reader,
  7287. both on the C and Scheme levels. (The Right solution is probably to
  7288. change the syntax and prototypes for uniform vectors entirely.)
  7289. ** The new module (ice-9 session) provides useful interactive functions.
  7290. *** New procedure: (apropos REGEXP OPTION ...)
  7291. Display a list of top-level variables whose names match REGEXP, and
  7292. the modules they are imported from. Each OPTION should be one of the
  7293. following symbols:
  7294. value --- Show the value of each matching variable.
  7295. shadow --- Show bindings shadowed by subsequently imported modules.
  7296. full --- Same as both `shadow' and `value'.
  7297. For example:
  7298. guile> (apropos "trace" 'full)
  7299. debug: trace #<procedure trace args>
  7300. debug: untrace #<procedure untrace args>
  7301. the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
  7302. the-scm-module: before-backtrace-hook ()
  7303. the-scm-module: backtrace #<primitive-procedure backtrace>
  7304. the-scm-module: after-backtrace-hook ()
  7305. the-scm-module: has-shown-backtrace-hint? #f
  7306. guile>
  7307. ** There are new functions and syntax for working with macros.
  7308. Guile implements macros as a special object type. Any variable whose
  7309. top-level binding is a macro object acts as a macro. The macro object
  7310. specifies how the expression should be transformed before evaluation.
  7311. *** Macro objects now print in a reasonable way, resembling procedures.
  7312. *** New function: (macro? OBJ)
  7313. True iff OBJ is a macro object.
  7314. *** New function: (primitive-macro? OBJ)
  7315. Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
  7316. macro transformers, implemented in eval.c rather than Scheme code.
  7317. Why do we have this function?
  7318. - For symmetry with procedure? and primitive-procedure?,
  7319. - to allow custom print procedures to tell whether a macro is
  7320. primitive, and display it differently, and
  7321. - to allow compilers and user-written evaluators to distinguish
  7322. builtin special forms from user-defined ones, which could be
  7323. compiled.
  7324. *** New function: (macro-type OBJ)
  7325. Return a value indicating what kind of macro OBJ is. Possible return
  7326. values are:
  7327. The symbol `syntax' --- a macro created by procedure->syntax.
  7328. The symbol `macro' --- a macro created by procedure->macro.
  7329. The symbol `macro!' --- a macro created by procedure->memoizing-macro.
  7330. The boolean #f --- if OBJ is not a macro object.
  7331. *** New function: (macro-name MACRO)
  7332. Return the name of the macro object MACRO's procedure, as returned by
  7333. procedure-name.
  7334. *** New function: (macro-transformer MACRO)
  7335. Return the transformer procedure for MACRO.
  7336. *** New syntax: (use-syntax MODULE ... TRANSFORMER)
  7337. Specify a new macro expander to use in the current module. Each
  7338. MODULE is a module name, with the same meaning as in the `use-modules'
  7339. form; each named module's exported bindings are added to the current
  7340. top-level environment. TRANSFORMER is an expression evaluated in the
  7341. resulting environment which must yield a procedure to use as the
  7342. module's eval transformer: every expression evaluated in this module
  7343. is passed to this function, and the result passed to the Guile
  7344. interpreter.
  7345. *** macro-eval! is removed. Use local-eval instead.
  7346. ** Some magic has been added to the printer to better handle user
  7347. written printing routines (like record printers, closure printers).
  7348. The problem is that these user written routines must have access to
  7349. the current `print-state' to be able to handle fancy things like
  7350. detection of circular references. These print-states have to be
  7351. passed to the builtin printing routines (display, write, etc) to
  7352. properly continue the print chain.
  7353. We didn't want to change all existing print code so that it
  7354. explicitly passes thru a print state in addition to a port. Instead,
  7355. we extented the possible values that the builtin printing routines
  7356. accept as a `port'. In addition to a normal port, they now also take
  7357. a pair of a normal port and a print-state. Printing will go to the
  7358. port and the print-state will be used to control the detection of
  7359. circular references, etc. If the builtin function does not care for a
  7360. print-state, it is simply ignored.
  7361. User written callbacks are now called with such a pair as their
  7362. `port', but because every function now accepts this pair as a PORT
  7363. argument, you don't have to worry about that. In fact, it is probably
  7364. safest to not check for these pairs.
  7365. However, it is sometimes necessary to continue a print chain on a
  7366. different port, for example to get a intermediate string
  7367. representation of the printed value, mangle that string somehow, and
  7368. then to finally print the mangled string. Use the new function
  7369. inherit-print-state OLD-PORT NEW-PORT
  7370. for this. It constructs a new `port' that prints to NEW-PORT but
  7371. inherits the print-state of OLD-PORT.
  7372. ** struct-vtable-offset renamed to vtable-offset-user
  7373. ** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
  7374. ** There is now a third optional argument to make-vtable-vtable
  7375. (and fourth to make-struct) when constructing new types (vtables).
  7376. This argument initializes field vtable-index-printer of the vtable.
  7377. ** The detection of circular references has been extended to structs.
  7378. That is, a structure that -- in the process of being printed -- prints
  7379. itself does not lead to infinite recursion.
  7380. ** There is now some basic support for fluids. Please read
  7381. "libguile/fluid.h" to find out more. It is accessible from Scheme with
  7382. the following functions and macros:
  7383. Function: make-fluid
  7384. Create a new fluid object. Fluids are not special variables or
  7385. some other extension to the semantics of Scheme, but rather
  7386. ordinary Scheme objects. You can store them into variables (that
  7387. are still lexically scoped, of course) or into any other place you
  7388. like. Every fluid has a initial value of `#f'.
  7389. Function: fluid? OBJ
  7390. Test whether OBJ is a fluid.
  7391. Function: fluid-ref FLUID
  7392. Function: fluid-set! FLUID VAL
  7393. Access/modify the fluid FLUID. Modifications are only visible
  7394. within the current dynamic root (that includes threads).
  7395. Function: with-fluids* FLUIDS VALUES THUNK
  7396. FLUIDS is a list of fluids and VALUES a corresponding list of
  7397. values for these fluids. Before THUNK gets called the values are
  7398. installed in the fluids and the old values of the fluids are
  7399. saved in the VALUES list. When the flow of control leaves THUNK
  7400. or reenters it, the values get swapped again. You might think of
  7401. this as a `safe-fluid-excursion'. Note that the VALUES list is
  7402. modified by `with-fluids*'.
  7403. Macro: with-fluids ((FLUID VALUE) ...) FORM ...
  7404. The same as `with-fluids*' but with a different syntax. It looks
  7405. just like `let', but both FLUID and VALUE are evaluated. Remember,
  7406. fluids are not special variables but ordinary objects. FLUID
  7407. should evaluate to a fluid.
  7408. ** Changes to system call interfaces:
  7409. *** close-port, close-input-port and close-output-port now return a
  7410. boolean instead of an `unspecified' object. #t means that the port
  7411. was successfully closed, while #f means it was already closed. It is
  7412. also now possible for these procedures to raise an exception if an
  7413. error occurs (some errors from write can be delayed until close.)
  7414. *** the first argument to chmod, fcntl, ftell and fseek can now be a
  7415. file descriptor.
  7416. *** the third argument to fcntl is now optional.
  7417. *** the first argument to chown can now be a file descriptor or a port.
  7418. *** the argument to stat can now be a port.
  7419. *** The following new procedures have been added (most use scsh
  7420. interfaces):
  7421. *** procedure: close PORT/FD
  7422. Similar to close-port (*note close-port: Closing Ports.), but also
  7423. works on file descriptors. A side effect of closing a file
  7424. descriptor is that any ports using that file descriptor are moved
  7425. to a different file descriptor and have their revealed counts set
  7426. to zero.
  7427. *** procedure: port->fdes PORT
  7428. Returns the integer file descriptor underlying PORT. As a side
  7429. effect the revealed count of PORT is incremented.
  7430. *** procedure: fdes->ports FDES
  7431. Returns a list of existing ports which have FDES as an underlying
  7432. file descriptor, without changing their revealed counts.
  7433. *** procedure: fdes->inport FDES
  7434. Returns an existing input port which has FDES as its underlying
  7435. file descriptor, if one exists, and increments its revealed count.
  7436. Otherwise, returns a new input port with a revealed count of 1.
  7437. *** procedure: fdes->outport FDES
  7438. Returns an existing output port which has FDES as its underlying
  7439. file descriptor, if one exists, and increments its revealed count.
  7440. Otherwise, returns a new output port with a revealed count of 1.
  7441. The next group of procedures perform a `dup2' system call, if NEWFD
  7442. (an integer) is supplied, otherwise a `dup'. The file descriptor to be
  7443. duplicated can be supplied as an integer or contained in a port. The
  7444. type of value returned varies depending on which procedure is used.
  7445. All procedures also have the side effect when performing `dup2' that
  7446. any ports using NEWFD are moved to a different file descriptor and have
  7447. their revealed counts set to zero.
  7448. *** procedure: dup->fdes PORT/FD [NEWFD]
  7449. Returns an integer file descriptor.
  7450. *** procedure: dup->inport PORT/FD [NEWFD]
  7451. Returns a new input port using the new file descriptor.
  7452. *** procedure: dup->outport PORT/FD [NEWFD]
  7453. Returns a new output port using the new file descriptor.
  7454. *** procedure: dup PORT/FD [NEWFD]
  7455. Returns a new port if PORT/FD is a port, with the same mode as the
  7456. supplied port, otherwise returns an integer file descriptor.
  7457. *** procedure: dup->port PORT/FD MODE [NEWFD]
  7458. Returns a new port using the new file descriptor. MODE supplies a
  7459. mode string for the port (*note open-file: File Ports.).
  7460. *** procedure: setenv NAME VALUE
  7461. Modifies the environment of the current process, which is also the
  7462. default environment inherited by child processes.
  7463. If VALUE is `#f', then NAME is removed from the environment.
  7464. Otherwise, the string NAME=VALUE is added to the environment,
  7465. replacing any existing string with name matching NAME.
  7466. The return value is unspecified.
  7467. *** procedure: truncate-file OBJ SIZE
  7468. Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
  7469. can be a string containing a file name or an integer file
  7470. descriptor or port open for output on the file. The underlying
  7471. system calls are `truncate' and `ftruncate'.
  7472. The return value is unspecified.
  7473. *** procedure: setvbuf PORT MODE [SIZE]
  7474. Set the buffering mode for PORT. MODE can be:
  7475. `_IONBF'
  7476. non-buffered
  7477. `_IOLBF'
  7478. line buffered
  7479. `_IOFBF'
  7480. block buffered, using a newly allocated buffer of SIZE bytes.
  7481. However if SIZE is zero or unspecified, the port will be made
  7482. non-buffered.
  7483. This procedure should not be used after I/O has been performed with
  7484. the port.
  7485. Ports are usually block buffered by default, with a default buffer
  7486. size. Procedures e.g., *Note open-file: File Ports, which accept a
  7487. mode string allow `0' to be added to request an unbuffered port.
  7488. *** procedure: fsync PORT/FD
  7489. Copies any unwritten data for the specified output file descriptor
  7490. to disk. If PORT/FD is a port, its buffer is flushed before the
  7491. underlying file descriptor is fsync'd. The return value is
  7492. unspecified.
  7493. *** procedure: open-fdes PATH FLAGS [MODES]
  7494. Similar to `open' but returns a file descriptor instead of a port.
  7495. *** procedure: execle PATH ENV [ARG] ...
  7496. Similar to `execl', but the environment of the new process is
  7497. specified by ENV, which must be a list of strings as returned by
  7498. the `environ' procedure.
  7499. This procedure is currently implemented using the `execve' system
  7500. call, but we call it `execle' because of its Scheme calling
  7501. interface.
  7502. *** procedure: strerror ERRNO
  7503. Returns the Unix error message corresponding to ERRNO, an integer.
  7504. *** procedure: primitive-exit [STATUS]
  7505. Terminate the current process without unwinding the Scheme stack.
  7506. This is would typically be useful after a fork. The exit status
  7507. is STATUS if supplied, otherwise zero.
  7508. *** procedure: times
  7509. Returns an object with information about real and processor time.
  7510. The following procedures accept such an object as an argument and
  7511. return a selected component:
  7512. `tms:clock'
  7513. The current real time, expressed as time units relative to an
  7514. arbitrary base.
  7515. `tms:utime'
  7516. The CPU time units used by the calling process.
  7517. `tms:stime'
  7518. The CPU time units used by the system on behalf of the
  7519. calling process.
  7520. `tms:cutime'
  7521. The CPU time units used by terminated child processes of the
  7522. calling process, whose status has been collected (e.g., using
  7523. `waitpid').
  7524. `tms:cstime'
  7525. Similarly, the CPU times units used by the system on behalf of
  7526. terminated child processes.
  7527. ** Removed: list-length
  7528. ** Removed: list-append, list-append!
  7529. ** Removed: list-reverse, list-reverse!
  7530. ** array-map renamed to array-map!
  7531. ** serial-array-map renamed to serial-array-map!
  7532. ** catch doesn't take #f as first argument any longer
  7533. Previously, it was possible to pass #f instead of a key to `catch'.
  7534. That would cause `catch' to pass a jump buffer object to the procedure
  7535. passed as second argument. The procedure could then use this jump
  7536. buffer objekt as an argument to throw.
  7537. This mechanism has been removed since its utility doesn't motivate the
  7538. extra complexity it introduces.
  7539. ** The `#/' notation for lists now provokes a warning message from Guile.
  7540. This syntax will be removed from Guile in the near future.
  7541. To disable the warning message, set the GUILE_HUSH environment
  7542. variable to any non-empty value.
  7543. ** The newline character now prints as `#\newline', following the
  7544. normal Scheme notation, not `#\nl'.
  7545. * Changes to the gh_ interface
  7546. ** The gh_enter function now takes care of loading the Guile startup files.
  7547. gh_enter works by calling scm_boot_guile; see the remarks below.
  7548. ** Function: void gh_write (SCM x)
  7549. Write the printed representation of the scheme object x to the current
  7550. output port. Corresponds to the scheme level `write'.
  7551. ** gh_list_length renamed to gh_length.
  7552. ** vector handling routines
  7553. Several major changes. In particular, gh_vector() now resembles
  7554. (vector ...) (with a caveat -- see manual), and gh_make_vector() now
  7555. exists and behaves like (make-vector ...). gh_vset() and gh_vref()
  7556. have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
  7557. vector-related gh_ functions have been implemented.
  7558. ** pair and list routines
  7559. Implemented several of the R4RS pair and list functions that were
  7560. missing.
  7561. ** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
  7562. New function. Converts double arrays back and forth between Scheme
  7563. and C.
  7564. * Changes to the scm_ interface
  7565. ** The function scm_boot_guile now takes care of loading the startup files.
  7566. Guile's primary initialization function, scm_boot_guile, now takes
  7567. care of loading `boot-9.scm', in the `ice-9' module, to initialize
  7568. Guile, define the module system, and put together some standard
  7569. bindings. It also loads `init.scm', which is intended to hold
  7570. site-specific initialization code.
  7571. Since Guile cannot operate properly until boot-9.scm is loaded, there
  7572. is no reason to separate loading boot-9.scm from Guile's other
  7573. initialization processes.
  7574. This job used to be done by scm_compile_shell_switches, which didn't
  7575. make much sense; in particular, it meant that people using Guile for
  7576. non-shell-like applications had to jump through hoops to get Guile
  7577. initialized properly.
  7578. ** The function scm_compile_shell_switches no longer loads the startup files.
  7579. Now, Guile always loads the startup files, whenever it is initialized;
  7580. see the notes above for scm_boot_guile and scm_load_startup_files.
  7581. ** Function: scm_load_startup_files
  7582. This new function takes care of loading Guile's initialization file
  7583. (`boot-9.scm'), and the site initialization file, `init.scm'. Since
  7584. this is always called by the Guile initialization process, it's
  7585. probably not too useful to call this yourself, but it's there anyway.
  7586. ** The semantics of smob marking have changed slightly.
  7587. The smob marking function (the `mark' member of the scm_smobfuns
  7588. structure) is no longer responsible for setting the mark bit on the
  7589. smob. The generic smob handling code in the garbage collector will
  7590. set this bit. The mark function need only ensure that any other
  7591. objects the smob refers to get marked.
  7592. Note that this change means that the smob's GC8MARK bit is typically
  7593. already set upon entry to the mark function. Thus, marking functions
  7594. which look like this:
  7595. {
  7596. if (SCM_GC8MARKP (ptr))
  7597. return SCM_BOOL_F;
  7598. SCM_SETGC8MARK (ptr);
  7599. ... mark objects to which the smob refers ...
  7600. }
  7601. are now incorrect, since they will return early, and fail to mark any
  7602. other objects the smob refers to. Some code in the Guile library used
  7603. to work this way.
  7604. ** The semantics of the I/O port functions in scm_ptobfuns have changed.
  7605. If you have implemented your own I/O port type, by writing the
  7606. functions required by the scm_ptobfuns and then calling scm_newptob,
  7607. you will need to change your functions slightly.
  7608. The functions in a scm_ptobfuns structure now expect the port itself
  7609. as their argument; they used to expect the `stream' member of the
  7610. port's scm_port_table structure. This allows functions in an
  7611. scm_ptobfuns structure to easily access the port's cell (and any flags
  7612. it its CAR), and the port's scm_port_table structure.
  7613. Guile now passes the I/O port itself as the `port' argument in the
  7614. following scm_ptobfuns functions:
  7615. int (*free) (SCM port);
  7616. int (*fputc) (int, SCM port);
  7617. int (*fputs) (char *, SCM port);
  7618. scm_sizet (*fwrite) SCM_P ((char *ptr,
  7619. scm_sizet size,
  7620. scm_sizet nitems,
  7621. SCM port));
  7622. int (*fflush) (SCM port);
  7623. int (*fgetc) (SCM port);
  7624. int (*fclose) (SCM port);
  7625. The interfaces to the `mark', `print', `equalp', and `fgets' methods
  7626. are unchanged.
  7627. If you have existing code which defines its own port types, it is easy
  7628. to convert your code to the new interface; simply apply SCM_STREAM to
  7629. the port argument to yield the value you code used to expect.
  7630. Note that since both the port and the stream have the same type in the
  7631. C code --- they are both SCM values --- the C compiler will not remind
  7632. you if you forget to update your scm_ptobfuns functions.
  7633. ** Function: int scm_internal_select (int fds,
  7634. SELECT_TYPE *rfds,
  7635. SELECT_TYPE *wfds,
  7636. SELECT_TYPE *efds,
  7637. struct timeval *timeout);
  7638. This is a replacement for the `select' function provided by the OS.
  7639. It enables I/O blocking and sleeping to happen for one cooperative
  7640. thread without blocking other threads. It also avoids busy-loops in
  7641. these situations. It is intended that all I/O blocking and sleeping
  7642. will finally go through this function. Currently, this function is
  7643. only available on systems providing `gettimeofday' and `select'.
  7644. ** Function: SCM scm_internal_stack_catch (SCM tag,
  7645. scm_catch_body_t body,
  7646. void *body_data,
  7647. scm_catch_handler_t handler,
  7648. void *handler_data)
  7649. A new sibling to the other two C level `catch' functions
  7650. scm_internal_catch and scm_internal_lazy_catch. Use it if you want
  7651. the stack to be saved automatically into the variable `the-last-stack'
  7652. (scm_the_last_stack_var) on error. This is necessary if you want to
  7653. use advanced error reporting, such as calling scm_display_error and
  7654. scm_display_backtrace. (They both take a stack object as argument.)
  7655. ** Function: SCM scm_spawn_thread (scm_catch_body_t body,
  7656. void *body_data,
  7657. scm_catch_handler_t handler,
  7658. void *handler_data)
  7659. Spawns a new thread. It does a job similar to
  7660. scm_call_with_new_thread but takes arguments more suitable when
  7661. spawning threads from application C code.
  7662. ** The hook scm_error_callback has been removed. It was originally
  7663. intended as a way for the user to install his own error handler. But
  7664. that method works badly since it intervenes between throw and catch,
  7665. thereby changing the semantics of expressions like (catch #t ...).
  7666. The correct way to do it is to use one of the C level catch functions
  7667. in throw.c: scm_internal_catch/lazy_catch/stack_catch.
  7668. ** Removed functions:
  7669. scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
  7670. scm_list_reverse, scm_list_reverse_x
  7671. ** New macros: SCM_LISTn where n is one of the integers 0-9.
  7672. These can be used for pretty list creation from C. The idea is taken
  7673. from Erick Gallesio's STk.
  7674. ** scm_array_map renamed to scm_array_map_x
  7675. ** mbstrings are now removed
  7676. This means that the type codes scm_tc7_mb_string and
  7677. scm_tc7_mb_substring has been removed.
  7678. ** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
  7679. Since we no longer support multi-byte strings, these I/O functions
  7680. have been simplified, and renamed. Here are their old names, and
  7681. their new names and arguments:
  7682. scm_gen_putc -> void scm_putc (int c, SCM port);
  7683. scm_gen_puts -> void scm_puts (char *s, SCM port);
  7684. scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
  7685. scm_gen_getc -> void scm_getc (SCM port);
  7686. ** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
  7687. ** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
  7688. SCM_TYP7S now masks away the bit which distinguishes substrings from
  7689. strings.
  7690. ** scm_catch_body_t: Backward incompatible change!
  7691. Body functions to scm_internal_catch and friends do not any longer
  7692. take a second argument. This is because it is no longer possible to
  7693. pass a #f arg to catch.
  7694. ** Calls to scm_protect_object and scm_unprotect now nest properly.
  7695. The function scm_protect_object protects its argument from being freed
  7696. by the garbage collector. scm_unprotect_object removes that
  7697. protection.
  7698. These functions now nest properly. That is, for every object O, there
  7699. is a counter which scm_protect_object(O) increments and
  7700. scm_unprotect_object(O) decrements, if the counter is greater than
  7701. zero. Every object's counter is zero when it is first created. If an
  7702. object's counter is greater than zero, the garbage collector will not
  7703. reclaim its storage.
  7704. This allows you to use scm_protect_object in your code without
  7705. worrying that some other function you call will call
  7706. scm_unprotect_object, and allow it to be freed. Assuming that the
  7707. functions you call are well-behaved, and unprotect only those objects
  7708. they protect, you can follow the same rule and have confidence that
  7709. objects will be freed only at appropriate times.
  7710. Changes in Guile 1.2 (released Tuesday, June 24 1997):
  7711. * Changes to the distribution
  7712. ** Nightly snapshots are now available from ftp.red-bean.com.
  7713. The old server, ftp.cyclic.com, has been relinquished to its rightful
  7714. owner.
  7715. Nightly snapshots of the Guile development sources are now available via
  7716. anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
  7717. Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
  7718. For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
  7719. ** To run Guile without installing it, the procedure has changed a bit.
  7720. If you used a separate build directory to compile Guile, you'll need
  7721. to include the build directory in SCHEME_LOAD_PATH, as well as the
  7722. source directory. See the `INSTALL' file for examples.
  7723. * Changes to the procedure for linking libguile with your programs
  7724. ** The standard Guile load path for Scheme code now includes
  7725. $(datadir)/guile (usually /usr/local/share/guile). This means that
  7726. you can install your own Scheme files there, and Guile will find them.
  7727. (Previous versions of Guile only checked a directory whose name
  7728. contained the Guile version number, so you had to re-install or move
  7729. your Scheme sources each time you installed a fresh version of Guile.)
  7730. The load path also includes $(datadir)/guile/site; we recommend
  7731. putting individual Scheme files there. If you want to install a
  7732. package with multiple source files, create a directory for them under
  7733. $(datadir)/guile.
  7734. ** Guile 1.2 will now use the Rx regular expression library, if it is
  7735. installed on your system. When you are linking libguile into your own
  7736. programs, this means you will have to link against -lguile, -lqt (if
  7737. you configured Guile with thread support), and -lrx.
  7738. If you are using autoconf to generate configuration scripts for your
  7739. application, the following lines should suffice to add the appropriate
  7740. libraries to your link command:
  7741. ### Find Rx, quickthreads and libguile.
  7742. AC_CHECK_LIB(rx, main)
  7743. AC_CHECK_LIB(qt, main)
  7744. AC_CHECK_LIB(guile, scm_shell)
  7745. The Guile 1.2 distribution does not contain sources for the Rx
  7746. library, as Guile 1.0 did. If you want to use Rx, you'll need to
  7747. retrieve it from a GNU FTP site and install it separately.
  7748. * Changes to Scheme functions and syntax
  7749. ** The dynamic linking features of Guile are now enabled by default.
  7750. You can disable them by giving the `--disable-dynamic-linking' option
  7751. to configure.
  7752. (dynamic-link FILENAME)
  7753. Find the object file denoted by FILENAME (a string) and link it
  7754. into the running Guile application. When everything works out,
  7755. return a Scheme object suitable for representing the linked object
  7756. file. Otherwise an error is thrown. How object files are
  7757. searched is system dependent.
  7758. (dynamic-object? VAL)
  7759. Determine whether VAL represents a dynamically linked object file.
  7760. (dynamic-unlink DYNOBJ)
  7761. Unlink the indicated object file from the application. DYNOBJ
  7762. should be one of the values returned by `dynamic-link'.
  7763. (dynamic-func FUNCTION DYNOBJ)
  7764. Search the C function indicated by FUNCTION (a string or symbol)
  7765. in DYNOBJ and return some Scheme object that can later be used
  7766. with `dynamic-call' to actually call this function. Right now,
  7767. these Scheme objects are formed by casting the address of the
  7768. function to `long' and converting this number to its Scheme
  7769. representation.
  7770. (dynamic-call FUNCTION DYNOBJ)
  7771. Call the C function indicated by FUNCTION and DYNOBJ. The
  7772. function is passed no arguments and its return value is ignored.
  7773. When FUNCTION is something returned by `dynamic-func', call that
  7774. function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
  7775. etc.), look it up in DYNOBJ; this is equivalent to
  7776. (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
  7777. Interrupts are deferred while the C function is executing (with
  7778. SCM_DEFER_INTS/SCM_ALLOW_INTS).
  7779. (dynamic-args-call FUNCTION DYNOBJ ARGS)
  7780. Call the C function indicated by FUNCTION and DYNOBJ, but pass it
  7781. some arguments and return its return value. The C function is
  7782. expected to take two arguments and return an `int', just like
  7783. `main':
  7784. int c_func (int argc, char **argv);
  7785. ARGS must be a list of strings and is converted into an array of
  7786. `char *'. The array is passed in ARGV and its size in ARGC. The
  7787. return value is converted to a Scheme number and returned from the
  7788. call to `dynamic-args-call'.
  7789. When dynamic linking is disabled or not supported on your system,
  7790. the above functions throw errors, but they are still available.
  7791. Here is a small example that works on GNU/Linux:
  7792. (define libc-obj (dynamic-link "libc.so"))
  7793. (dynamic-args-call 'rand libc-obj '())
  7794. See the file `libguile/DYNAMIC-LINKING' for additional comments.
  7795. ** The #/ syntax for module names is depreciated, and will be removed
  7796. in a future version of Guile. Instead of
  7797. #/foo/bar/baz
  7798. instead write
  7799. (foo bar baz)
  7800. The latter syntax is more consistent with existing Lisp practice.
  7801. ** Guile now does fancier printing of structures. Structures are the
  7802. underlying implementation for records, which in turn are used to
  7803. implement modules, so all of these object now print differently and in
  7804. a more informative way.
  7805. The Scheme printer will examine the builtin variable *struct-printer*
  7806. whenever it needs to print a structure object. When this variable is
  7807. not `#f' it is deemed to be a procedure and will be applied to the
  7808. structure object and the output port. When *struct-printer* is `#f'
  7809. or the procedure return `#f' the structure object will be printed in
  7810. the boring #<struct 80458270> form.
  7811. This hook is used by some routines in ice-9/boot-9.scm to implement
  7812. type specific printing routines. Please read the comments there about
  7813. "printing structs".
  7814. One of the more specific uses of structs are records. The printing
  7815. procedure that could be passed to MAKE-RECORD-TYPE is now actually
  7816. called. It should behave like a *struct-printer* procedure (described
  7817. above).
  7818. ** Guile now supports a new R4RS-compliant syntax for keywords. A
  7819. token of the form #:NAME, where NAME has the same syntax as a Scheme
  7820. symbol, is the external representation of the keyword named NAME.
  7821. Keyword objects print using this syntax as well, so values containing
  7822. keyword objects can be read back into Guile. When used in an
  7823. expression, keywords are self-quoting objects.
  7824. Guile suports this read syntax, and uses this print syntax, regardless
  7825. of the current setting of the `keyword' read option. The `keyword'
  7826. read option only controls whether Guile recognizes the `:NAME' syntax,
  7827. which is incompatible with R4RS. (R4RS says such token represent
  7828. symbols.)
  7829. ** Guile has regular expression support again. Guile 1.0 included
  7830. functions for matching regular expressions, based on the Rx library.
  7831. In Guile 1.1, the Guile/Rx interface was removed to simplify the
  7832. distribution, and thus Guile had no regular expression support. Guile
  7833. 1.2 again supports the most commonly used functions, and supports all
  7834. of SCSH's regular expression functions.
  7835. If your system does not include a POSIX regular expression library,
  7836. and you have not linked Guile with a third-party regexp library such as
  7837. Rx, these functions will not be available. You can tell whether your
  7838. Guile installation includes regular expression support by checking
  7839. whether the `*features*' list includes the `regex' symbol.
  7840. *** regexp functions
  7841. By default, Guile supports POSIX extended regular expressions. That
  7842. means that the characters `(', `)', `+' and `?' are special, and must
  7843. be escaped if you wish to match the literal characters.
  7844. This regular expression interface was modeled after that implemented
  7845. by SCSH, the Scheme Shell. It is intended to be upwardly compatible
  7846. with SCSH regular expressions.
  7847. **** Function: string-match PATTERN STR [START]
  7848. Compile the string PATTERN into a regular expression and compare
  7849. it with STR. The optional numeric argument START specifies the
  7850. position of STR at which to begin matching.
  7851. `string-match' returns a "match structure" which describes what,
  7852. if anything, was matched by the regular expression. *Note Match
  7853. Structures::. If STR does not match PATTERN at all,
  7854. `string-match' returns `#f'.
  7855. Each time `string-match' is called, it must compile its PATTERN
  7856. argument into a regular expression structure. This operation is
  7857. expensive, which makes `string-match' inefficient if the same regular
  7858. expression is used several times (for example, in a loop). For better
  7859. performance, you can compile a regular expression in advance and then
  7860. match strings against the compiled regexp.
  7861. **** Function: make-regexp STR [FLAGS]
  7862. Compile the regular expression described by STR, and return the
  7863. compiled regexp structure. If STR does not describe a legal
  7864. regular expression, `make-regexp' throws a
  7865. `regular-expression-syntax' error.
  7866. FLAGS may be the bitwise-or of one or more of the following:
  7867. **** Constant: regexp/extended
  7868. Use POSIX Extended Regular Expression syntax when interpreting
  7869. STR. If not set, POSIX Basic Regular Expression syntax is used.
  7870. If the FLAGS argument is omitted, we assume regexp/extended.
  7871. **** Constant: regexp/icase
  7872. Do not differentiate case. Subsequent searches using the
  7873. returned regular expression will be case insensitive.
  7874. **** Constant: regexp/newline
  7875. Match-any-character operators don't match a newline.
  7876. A non-matching list ([^...]) not containing a newline matches a
  7877. newline.
  7878. Match-beginning-of-line operator (^) matches the empty string
  7879. immediately after a newline, regardless of whether the FLAGS
  7880. passed to regexp-exec contain regexp/notbol.
  7881. Match-end-of-line operator ($) matches the empty string
  7882. immediately before a newline, regardless of whether the FLAGS
  7883. passed to regexp-exec contain regexp/noteol.
  7884. **** Function: regexp-exec REGEXP STR [START [FLAGS]]
  7885. Match the compiled regular expression REGEXP against `str'. If
  7886. the optional integer START argument is provided, begin matching
  7887. from that position in the string. Return a match structure
  7888. describing the results of the match, or `#f' if no match could be
  7889. found.
  7890. FLAGS may be the bitwise-or of one or more of the following:
  7891. **** Constant: regexp/notbol
  7892. The match-beginning-of-line operator always fails to match (but
  7893. see the compilation flag regexp/newline above) This flag may be
  7894. used when different portions of a string are passed to
  7895. regexp-exec and the beginning of the string should not be
  7896. interpreted as the beginning of the line.
  7897. **** Constant: regexp/noteol
  7898. The match-end-of-line operator always fails to match (but see the
  7899. compilation flag regexp/newline above)
  7900. **** Function: regexp? OBJ
  7901. Return `#t' if OBJ is a compiled regular expression, or `#f'
  7902. otherwise.
  7903. Regular expressions are commonly used to find patterns in one string
  7904. and replace them with the contents of another string.
  7905. **** Function: regexp-substitute PORT MATCH [ITEM...]
  7906. Write to the output port PORT selected contents of the match
  7907. structure MATCH. Each ITEM specifies what should be written, and
  7908. may be one of the following arguments:
  7909. * A string. String arguments are written out verbatim.
  7910. * An integer. The submatch with that number is written.
  7911. * The symbol `pre'. The portion of the matched string preceding
  7912. the regexp match is written.
  7913. * The symbol `post'. The portion of the matched string
  7914. following the regexp match is written.
  7915. PORT may be `#f', in which case nothing is written; instead,
  7916. `regexp-substitute' constructs a string from the specified ITEMs
  7917. and returns that.
  7918. **** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
  7919. Similar to `regexp-substitute', but can be used to perform global
  7920. substitutions on STR. Instead of taking a match structure as an
  7921. argument, `regexp-substitute/global' takes two string arguments: a
  7922. REGEXP string describing a regular expression, and a TARGET string
  7923. which should be matched against this regular expression.
  7924. Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
  7925. exceptions:
  7926. * A function may be supplied. When this function is called, it
  7927. will be passed one argument: a match structure for a given
  7928. regular expression match. It should return a string to be
  7929. written out to PORT.
  7930. * The `post' symbol causes `regexp-substitute/global' to recurse
  7931. on the unmatched portion of STR. This *must* be supplied in
  7932. order to perform global search-and-replace on STR; if it is
  7933. not present among the ITEMs, then `regexp-substitute/global'
  7934. will return after processing a single match.
  7935. *** Match Structures
  7936. A "match structure" is the object returned by `string-match' and
  7937. `regexp-exec'. It describes which portion of a string, if any, matched
  7938. the given regular expression. Match structures include: a reference to
  7939. the string that was checked for matches; the starting and ending
  7940. positions of the regexp match; and, if the regexp included any
  7941. parenthesized subexpressions, the starting and ending positions of each
  7942. submatch.
  7943. In each of the regexp match functions described below, the `match'
  7944. argument must be a match structure returned by a previous call to
  7945. `string-match' or `regexp-exec'. Most of these functions return some
  7946. information about the original target string that was matched against a
  7947. regular expression; we will call that string TARGET for easy reference.
  7948. **** Function: regexp-match? OBJ
  7949. Return `#t' if OBJ is a match structure returned by a previous
  7950. call to `regexp-exec', or `#f' otherwise.
  7951. **** Function: match:substring MATCH [N]
  7952. Return the portion of TARGET matched by subexpression number N.
  7953. Submatch 0 (the default) represents the entire regexp match. If
  7954. the regular expression as a whole matched, but the subexpression
  7955. number N did not match, return `#f'.
  7956. **** Function: match:start MATCH [N]
  7957. Return the starting position of submatch number N.
  7958. **** Function: match:end MATCH [N]
  7959. Return the ending position of submatch number N.
  7960. **** Function: match:prefix MATCH
  7961. Return the unmatched portion of TARGET preceding the regexp match.
  7962. **** Function: match:suffix MATCH
  7963. Return the unmatched portion of TARGET following the regexp match.
  7964. **** Function: match:count MATCH
  7965. Return the number of parenthesized subexpressions from MATCH.
  7966. Note that the entire regular expression match itself counts as a
  7967. subexpression, and failed submatches are included in the count.
  7968. **** Function: match:string MATCH
  7969. Return the original TARGET string.
  7970. *** Backslash Escapes
  7971. Sometimes you will want a regexp to match characters like `*' or `$'
  7972. exactly. For example, to check whether a particular string represents
  7973. a menu entry from an Info node, it would be useful to match it against
  7974. a regexp like `^* [^:]*::'. However, this won't work; because the
  7975. asterisk is a metacharacter, it won't match the `*' at the beginning of
  7976. the string. In this case, we want to make the first asterisk un-magic.
  7977. You can do this by preceding the metacharacter with a backslash
  7978. character `\'. (This is also called "quoting" the metacharacter, and
  7979. is known as a "backslash escape".) When Guile sees a backslash in a
  7980. regular expression, it considers the following glyph to be an ordinary
  7981. character, no matter what special meaning it would ordinarily have.
  7982. Therefore, we can make the above example work by changing the regexp to
  7983. `^\* [^:]*::'. The `\*' sequence tells the regular expression engine
  7984. to match only a single asterisk in the target string.
  7985. Since the backslash is itself a metacharacter, you may force a
  7986. regexp to match a backslash in the target string by preceding the
  7987. backslash with itself. For example, to find variable references in a
  7988. TeX program, you might want to find occurrences of the string `\let\'
  7989. followed by any number of alphabetic characters. The regular expression
  7990. `\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
  7991. each match a single backslash in the target string.
  7992. **** Function: regexp-quote STR
  7993. Quote each special character found in STR with a backslash, and
  7994. return the resulting string.
  7995. *Very important:* Using backslash escapes in Guile source code (as
  7996. in Emacs Lisp or C) can be tricky, because the backslash character has
  7997. special meaning for the Guile reader. For example, if Guile encounters
  7998. the character sequence `\n' in the middle of a string while processing
  7999. Scheme code, it replaces those characters with a newline character.
  8000. Similarly, the character sequence `\t' is replaced by a horizontal tab.
  8001. Several of these "escape sequences" are processed by the Guile reader
  8002. before your code is executed. Unrecognized escape sequences are
  8003. ignored: if the characters `\*' appear in a string, they will be
  8004. translated to the single character `*'.
  8005. This translation is obviously undesirable for regular expressions,
  8006. since we want to be able to include backslashes in a string in order to
  8007. escape regexp metacharacters. Therefore, to make sure that a backslash
  8008. is preserved in a string in your Guile program, you must use *two*
  8009. consecutive backslashes:
  8010. (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
  8011. The string in this example is preprocessed by the Guile reader before
  8012. any code is executed. The resulting argument to `make-regexp' is the
  8013. string `^\* [^:]*', which is what we really want.
  8014. This also means that in order to write a regular expression that
  8015. matches a single backslash character, the regular expression string in
  8016. the source code must include *four* backslashes. Each consecutive pair
  8017. of backslashes gets translated by the Guile reader to a single
  8018. backslash, and the resulting double-backslash is interpreted by the
  8019. regexp engine as matching a single backslash character. Hence:
  8020. (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
  8021. The reason for the unwieldiness of this syntax is historical. Both
  8022. regular expression pattern matchers and Unix string processing systems
  8023. have traditionally used backslashes with the special meanings described
  8024. above. The POSIX regular expression specification and ANSI C standard
  8025. both require these semantics. Attempting to abandon either convention
  8026. would cause other kinds of compatibility problems, possibly more severe
  8027. ones. Therefore, without extending the Scheme reader to support
  8028. strings with different quoting conventions (an ungainly and confusing
  8029. extension when implemented in other languages), we must adhere to this
  8030. cumbersome escape syntax.
  8031. * Changes to the gh_ interface
  8032. * Changes to the scm_ interface
  8033. * Changes to system call interfaces:
  8034. ** The value returned by `raise' is now unspecified. It throws an exception
  8035. if an error occurs.
  8036. *** A new procedure `sigaction' can be used to install signal handlers
  8037. (sigaction signum [action] [flags])
  8038. signum is the signal number, which can be specified using the value
  8039. of SIGINT etc.
  8040. If action is omitted, sigaction returns a pair: the CAR is the current
  8041. signal hander, which will be either an integer with the value SIG_DFL
  8042. (default action) or SIG_IGN (ignore), or the Scheme procedure which
  8043. handles the signal, or #f if a non-Scheme procedure handles the
  8044. signal. The CDR contains the current sigaction flags for the handler.
  8045. If action is provided, it is installed as the new handler for signum.
  8046. action can be a Scheme procedure taking one argument, or the value of
  8047. SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
  8048. whatever signal handler was installed before sigaction was first used.
  8049. Flags can optionally be specified for the new handler (SA_RESTART is
  8050. always used if the system provides it, so need not be specified.) The
  8051. return value is a pair with information about the old handler as
  8052. described above.
  8053. This interface does not provide access to the "signal blocking"
  8054. facility. Maybe this is not needed, since the thread support may
  8055. provide solutions to the problem of consistent access to data
  8056. structures.
  8057. *** A new procedure `flush-all-ports' is equivalent to running
  8058. `force-output' on every port open for output.
  8059. ** Guile now provides information on how it was built, via the new
  8060. global variable, %guile-build-info. This variable records the values
  8061. of the standard GNU makefile directory variables as an assocation
  8062. list, mapping variable names (symbols) onto directory paths (strings).
  8063. For example, to find out where the Guile link libraries were
  8064. installed, you can say:
  8065. guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
  8066. * Changes to the scm_ interface
  8067. ** The new function scm_handle_by_message_noexit is just like the
  8068. existing scm_handle_by_message function, except that it doesn't call
  8069. exit to terminate the process. Instead, it prints a message and just
  8070. returns #f. This might be a more appropriate catch-all handler for
  8071. new dynamic roots and threads.
  8072. Changes in Guile 1.1 (released Friday, May 16 1997):
  8073. * Changes to the distribution.
  8074. The Guile 1.0 distribution has been split up into several smaller
  8075. pieces:
  8076. guile-core --- the Guile interpreter itself.
  8077. guile-tcltk --- the interface between the Guile interpreter and
  8078. Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
  8079. is a toolkit for building graphical user interfaces.
  8080. guile-rgx-ctax --- the interface between Guile and the Rx regular
  8081. expression matcher, and the translator for the Ctax
  8082. programming language. These are packaged together because the
  8083. Ctax translator uses Rx to parse Ctax source code.
  8084. This NEWS file describes the changes made to guile-core since the 1.0
  8085. release.
  8086. We no longer distribute the documentation, since it was either out of
  8087. date, or incomplete. As soon as we have current documentation, we
  8088. will distribute it.
  8089. * Changes to the stand-alone interpreter
  8090. ** guile now accepts command-line arguments compatible with SCSH, Olin
  8091. Shivers' Scheme Shell.
  8092. In general, arguments are evaluated from left to right, but there are
  8093. exceptions. The following switches stop argument processing, and
  8094. stash all remaining command-line arguments as the value returned by
  8095. the (command-line) function.
  8096. -s SCRIPT load Scheme source code from FILE, and exit
  8097. -c EXPR evalute Scheme expression EXPR, and exit
  8098. -- stop scanning arguments; run interactively
  8099. The switches below are processed as they are encountered.
  8100. -l FILE load Scheme source code from FILE
  8101. -e FUNCTION after reading script, apply FUNCTION to
  8102. command line arguments
  8103. -ds do -s script at this point
  8104. --emacs enable Emacs protocol (experimental)
  8105. -h, --help display this help and exit
  8106. -v, --version display version information and exit
  8107. \ read arguments from following script lines
  8108. So, for example, here is a Guile script named `ekko' (thanks, Olin)
  8109. which re-implements the traditional "echo" command:
  8110. #!/usr/local/bin/guile -s
  8111. !#
  8112. (define (main args)
  8113. (map (lambda (arg) (display arg) (display " "))
  8114. (cdr args))
  8115. (newline))
  8116. (main (command-line))
  8117. Suppose we invoke this script as follows:
  8118. ekko a speckled gecko
  8119. Through the magic of Unix script processing (triggered by the `#!'
  8120. token at the top of the file), /usr/local/bin/guile receives the
  8121. following list of command-line arguments:
  8122. ("-s" "./ekko" "a" "speckled" "gecko")
  8123. Unix inserts the name of the script after the argument specified on
  8124. the first line of the file (in this case, "-s"), and then follows that
  8125. with the arguments given to the script. Guile loads the script, which
  8126. defines the `main' function, and then applies it to the list of
  8127. remaining command-line arguments, ("a" "speckled" "gecko").
  8128. In Unix, the first line of a script file must take the following form:
  8129. #!INTERPRETER ARGUMENT
  8130. where INTERPRETER is the absolute filename of the interpreter
  8131. executable, and ARGUMENT is a single command-line argument to pass to
  8132. the interpreter.
  8133. You may only pass one argument to the interpreter, and its length is
  8134. limited. These restrictions can be annoying to work around, so Guile
  8135. provides a general mechanism (borrowed from, and compatible with,
  8136. SCSH) for circumventing them.
  8137. If the ARGUMENT in a Guile script is a single backslash character,
  8138. `\', Guile will open the script file, parse arguments from its second
  8139. and subsequent lines, and replace the `\' with them. So, for example,
  8140. here is another implementation of the `ekko' script:
  8141. #!/usr/local/bin/guile \
  8142. -e main -s
  8143. !#
  8144. (define (main args)
  8145. (for-each (lambda (arg) (display arg) (display " "))
  8146. (cdr args))
  8147. (newline))
  8148. If the user invokes this script as follows:
  8149. ekko a speckled gecko
  8150. Unix expands this into
  8151. /usr/local/bin/guile \ ekko a speckled gecko
  8152. When Guile sees the `\' argument, it replaces it with the arguments
  8153. read from the second line of the script, producing:
  8154. /usr/local/bin/guile -e main -s ekko a speckled gecko
  8155. This tells Guile to load the `ekko' script, and apply the function
  8156. `main' to the argument list ("a" "speckled" "gecko").
  8157. Here is how Guile parses the command-line arguments:
  8158. - Each space character terminates an argument. This means that two
  8159. spaces in a row introduce an empty-string argument.
  8160. - The tab character is not permitted (unless you quote it with the
  8161. backslash character, as described below), to avoid confusion.
  8162. - The newline character terminates the sequence of arguments, and will
  8163. also terminate a final non-empty argument. (However, a newline
  8164. following a space will not introduce a final empty-string argument;
  8165. it only terminates the argument list.)
  8166. - The backslash character is the escape character. It escapes
  8167. backslash, space, tab, and newline. The ANSI C escape sequences
  8168. like \n and \t are also supported. These produce argument
  8169. constituents; the two-character combination \n doesn't act like a
  8170. terminating newline. The escape sequence \NNN for exactly three
  8171. octal digits reads as the character whose ASCII code is NNN. As
  8172. above, characters produced this way are argument constituents.
  8173. Backslash followed by other characters is not allowed.
  8174. * Changes to the procedure for linking libguile with your programs
  8175. ** Guile now builds and installs a shared guile library, if your
  8176. system support shared libraries. (It still builds a static library on
  8177. all systems.) Guile automatically detects whether your system
  8178. supports shared libraries. To prevent Guile from buildisg shared
  8179. libraries, pass the `--disable-shared' flag to the configure script.
  8180. Guile takes longer to compile when it builds shared libraries, because
  8181. it must compile every file twice --- once to produce position-
  8182. independent object code, and once to produce normal object code.
  8183. ** The libthreads library has been merged into libguile.
  8184. To link a program against Guile, you now need only link against
  8185. -lguile and -lqt; -lthreads is no longer needed. If you are using
  8186. autoconf to generate configuration scripts for your application, the
  8187. following lines should suffice to add the appropriate libraries to
  8188. your link command:
  8189. ### Find quickthreads and libguile.
  8190. AC_CHECK_LIB(qt, main)
  8191. AC_CHECK_LIB(guile, scm_shell)
  8192. * Changes to Scheme functions
  8193. ** Guile Scheme's special syntax for keyword objects is now optional,
  8194. and disabled by default.
  8195. The syntax variation from R4RS made it difficult to port some
  8196. interesting packages to Guile. The routines which accepted keyword
  8197. arguments (mostly in the module system) have been modified to also
  8198. accept symbols whose names begin with `:'.
  8199. To change the keyword syntax, you must first import the (ice-9 debug)
  8200. module:
  8201. (use-modules (ice-9 debug))
  8202. Then you can enable the keyword syntax as follows:
  8203. (read-set! keywords 'prefix)
  8204. To disable keyword syntax, do this:
  8205. (read-set! keywords #f)
  8206. ** Many more primitive functions accept shared substrings as
  8207. arguments. In the past, these functions required normal, mutable
  8208. strings as arguments, although they never made use of this
  8209. restriction.
  8210. ** The uniform array functions now operate on byte vectors. These
  8211. functions are `array-fill!', `serial-array-copy!', `array-copy!',
  8212. `serial-array-map', `array-map', `array-for-each', and
  8213. `array-index-map!'.
  8214. ** The new functions `trace' and `untrace' implement simple debugging
  8215. support for Scheme functions.
  8216. The `trace' function accepts any number of procedures as arguments,
  8217. and tells the Guile interpreter to display each procedure's name and
  8218. arguments each time the procedure is invoked. When invoked with no
  8219. arguments, `trace' returns the list of procedures currently being
  8220. traced.
  8221. The `untrace' function accepts any number of procedures as arguments,
  8222. and tells the Guile interpreter not to trace them any more. When
  8223. invoked with no arguments, `untrace' untraces all curretly traced
  8224. procedures.
  8225. The tracing in Guile has an advantage over most other systems: we
  8226. don't create new procedure objects, but mark the procedure objects
  8227. themselves. This means that anonymous and internal procedures can be
  8228. traced.
  8229. ** The function `assert-repl-prompt' has been renamed to
  8230. `set-repl-prompt!'. It takes one argument, PROMPT.
  8231. - If PROMPT is #f, the Guile read-eval-print loop will not prompt.
  8232. - If PROMPT is a string, we use it as a prompt.
  8233. - If PROMPT is a procedure accepting no arguments, we call it, and
  8234. display the result as a prompt.
  8235. - Otherwise, we display "> ".
  8236. ** The new function `eval-string' reads Scheme expressions from a
  8237. string and evaluates them, returning the value of the last expression
  8238. in the string. If the string contains no expressions, it returns an
  8239. unspecified value.
  8240. ** The new function `thunk?' returns true iff its argument is a
  8241. procedure of zero arguments.
  8242. ** `defined?' is now a builtin function, instead of syntax. This
  8243. means that its argument should be quoted. It returns #t iff its
  8244. argument is bound in the current module.
  8245. ** The new syntax `use-modules' allows you to add new modules to your
  8246. environment without re-typing a complete `define-module' form. It
  8247. accepts any number of module names as arguments, and imports their
  8248. public bindings into the current module.
  8249. ** The new function (module-defined? NAME MODULE) returns true iff
  8250. NAME, a symbol, is defined in MODULE, a module object.
  8251. ** The new function `builtin-bindings' creates and returns a hash
  8252. table containing copies of all the root module's bindings.
  8253. ** The new function `builtin-weak-bindings' does the same as
  8254. `builtin-bindings', but creates a doubly-weak hash table.
  8255. ** The `equal?' function now considers variable objects to be
  8256. equivalent if they have the same name and the same value.
  8257. ** The new function `command-line' returns the command-line arguments
  8258. given to Guile, as a list of strings.
  8259. When using guile as a script interpreter, `command-line' returns the
  8260. script's arguments; those processed by the interpreter (like `-s' or
  8261. `-c') are omitted. (In other words, you get the normal, expected
  8262. behavior.) Any application that uses scm_shell to process its
  8263. command-line arguments gets this behavior as well.
  8264. ** The new function `load-user-init' looks for a file called `.guile'
  8265. in the user's home directory, and loads it if it exists. This is
  8266. mostly for use by the code generated by scm_compile_shell_switches,
  8267. but we thought it might also be useful in other circumstances.
  8268. ** The new function `log10' returns the base-10 logarithm of its
  8269. argument.
  8270. ** Changes to I/O functions
  8271. *** The functions `read', `primitive-load', `read-and-eval!', and
  8272. `primitive-load-path' no longer take optional arguments controlling
  8273. case insensitivity and a `#' parser.
  8274. Case sensitivity is now controlled by a read option called
  8275. `case-insensitive'. The user can add new `#' syntaxes with the
  8276. `read-hash-extend' function (see below).
  8277. *** The new function `read-hash-extend' allows the user to change the
  8278. syntax of Guile Scheme in a somewhat controlled way.
  8279. (read-hash-extend CHAR PROC)
  8280. When parsing S-expressions, if we read a `#' character followed by
  8281. the character CHAR, use PROC to parse an object from the stream.
  8282. If PROC is #f, remove any parsing procedure registered for CHAR.
  8283. The reader applies PROC to two arguments: CHAR and an input port.
  8284. *** The new functions read-delimited and read-delimited! provide a
  8285. general mechanism for doing delimited input on streams.
  8286. (read-delimited DELIMS [PORT HANDLE-DELIM])
  8287. Read until we encounter one of the characters in DELIMS (a string),
  8288. or end-of-file. PORT is the input port to read from; it defaults to
  8289. the current input port. The HANDLE-DELIM parameter determines how
  8290. the terminating character is handled; it should be one of the
  8291. following symbols:
  8292. 'trim omit delimiter from result
  8293. 'peek leave delimiter character in input stream
  8294. 'concat append delimiter character to returned value
  8295. 'split return a pair: (RESULT . TERMINATOR)
  8296. HANDLE-DELIM defaults to 'peek.
  8297. (read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
  8298. A side-effecting variant of `read-delimited'.
  8299. The data is written into the string BUF at the indices in the
  8300. half-open interval [START, END); the default interval is the whole
  8301. string: START = 0 and END = (string-length BUF). The values of
  8302. START and END must specify a well-defined interval in BUF, i.e.
  8303. 0 <= START <= END <= (string-length BUF).
  8304. It returns NBYTES, the number of bytes read. If the buffer filled
  8305. up without a delimiter character being found, it returns #f. If the
  8306. port is at EOF when the read starts, it returns the EOF object.
  8307. If an integer is returned (i.e., the read is successfully terminated
  8308. by reading a delimiter character), then the HANDLE-DELIM parameter
  8309. determines how to handle the terminating character. It is described
  8310. above, and defaults to 'peek.
  8311. (The descriptions of these functions were borrowed from the SCSH
  8312. manual, by Olin Shivers and Brian Carlstrom.)
  8313. *** The `%read-delimited!' function is the primitive used to implement
  8314. `read-delimited' and `read-delimited!'.
  8315. (%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
  8316. This returns a pair of values: (TERMINATOR . NUM-READ).
  8317. - TERMINATOR describes why the read was terminated. If it is a
  8318. character or the eof object, then that is the value that terminated
  8319. the read. If it is #f, the function filled the buffer without finding
  8320. a delimiting character.
  8321. - NUM-READ is the number of characters read into BUF.
  8322. If the read is successfully terminated by reading a delimiter
  8323. character, then the gobble? parameter determines what to do with the
  8324. terminating character. If true, the character is removed from the
  8325. input stream; if false, the character is left in the input stream
  8326. where a subsequent read operation will retrieve it. In either case,
  8327. the character is also the first value returned by the procedure call.
  8328. (The descriptions of this function was borrowed from the SCSH manual,
  8329. by Olin Shivers and Brian Carlstrom.)
  8330. *** The `read-line' and `read-line!' functions have changed; they now
  8331. trim the terminator by default; previously they appended it to the
  8332. returned string. For the old behavior, use (read-line PORT 'concat).
  8333. *** The functions `uniform-array-read!' and `uniform-array-write!' now
  8334. take new optional START and END arguments, specifying the region of
  8335. the array to read and write.
  8336. *** The `ungetc-char-ready?' function has been removed. We feel it's
  8337. inappropriate for an interface to expose implementation details this
  8338. way.
  8339. ** Changes to the Unix library and system call interface
  8340. *** The new fcntl function provides access to the Unix `fcntl' system
  8341. call.
  8342. (fcntl PORT COMMAND VALUE)
  8343. Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
  8344. Values for COMMAND are:
  8345. F_DUPFD duplicate a file descriptor
  8346. F_GETFD read the descriptor's close-on-exec flag
  8347. F_SETFD set the descriptor's close-on-exec flag to VALUE
  8348. F_GETFL read the descriptor's flags, as set on open
  8349. F_SETFL set the descriptor's flags, as set on open to VALUE
  8350. F_GETOWN return the process ID of a socket's owner, for SIGIO
  8351. F_SETOWN set the process that owns a socket to VALUE, for SIGIO
  8352. FD_CLOEXEC not sure what this is
  8353. For details, see the documentation for the fcntl system call.
  8354. *** The arguments to `select' have changed, for compatibility with
  8355. SCSH. The TIMEOUT parameter may now be non-integral, yielding the
  8356. expected behavior. The MILLISECONDS parameter has been changed to
  8357. MICROSECONDS, to more closely resemble the underlying system call.
  8358. The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
  8359. corresponding return set will be the same.
  8360. *** The arguments to the `mknod' system call have changed. They are
  8361. now:
  8362. (mknod PATH TYPE PERMS DEV)
  8363. Create a new file (`node') in the file system. PATH is the name of
  8364. the file to create. TYPE is the kind of file to create; it should
  8365. be 'fifo, 'block-special, or 'char-special. PERMS specifies the
  8366. permission bits to give the newly created file. If TYPE is
  8367. 'block-special or 'char-special, DEV specifies which device the
  8368. special file refers to; its interpretation depends on the kind of
  8369. special file being created.
  8370. *** The `fork' function has been renamed to `primitive-fork', to avoid
  8371. clashing with various SCSH forks.
  8372. *** The `recv' and `recvfrom' functions have been renamed to `recv!'
  8373. and `recvfrom!'. They no longer accept a size for a second argument;
  8374. you must pass a string to hold the received value. They no longer
  8375. return the buffer. Instead, `recv' returns the length of the message
  8376. received, and `recvfrom' returns a pair containing the packet's length
  8377. and originating address.
  8378. *** The file descriptor datatype has been removed, as have the
  8379. `read-fd', `write-fd', `close', `lseek', and `dup' functions.
  8380. We plan to replace these functions with a SCSH-compatible interface.
  8381. *** The `create' function has been removed; it's just a special case
  8382. of `open'.
  8383. *** There are new functions to break down process termination status
  8384. values. In the descriptions below, STATUS is a value returned by
  8385. `waitpid'.
  8386. (status:exit-val STATUS)
  8387. If the child process exited normally, this function returns the exit
  8388. code for the child process (i.e., the value passed to exit, or
  8389. returned from main). If the child process did not exit normally,
  8390. this function returns #f.
  8391. (status:stop-sig STATUS)
  8392. If the child process was suspended by a signal, this function
  8393. returns the signal that suspended the child. Otherwise, it returns
  8394. #f.
  8395. (status:term-sig STATUS)
  8396. If the child process terminated abnormally, this function returns
  8397. the signal that terminated the child. Otherwise, this function
  8398. returns false.
  8399. POSIX promises that exactly one of these functions will return true on
  8400. a valid STATUS value.
  8401. These functions are compatible with SCSH.
  8402. *** There are new accessors and setters for the broken-out time vectors
  8403. returned by `localtime', `gmtime', and that ilk. They are:
  8404. Component Accessor Setter
  8405. ========================= ============ ============
  8406. seconds tm:sec set-tm:sec
  8407. minutes tm:min set-tm:min
  8408. hours tm:hour set-tm:hour
  8409. day of the month tm:mday set-tm:mday
  8410. month tm:mon set-tm:mon
  8411. year tm:year set-tm:year
  8412. day of the week tm:wday set-tm:wday
  8413. day in the year tm:yday set-tm:yday
  8414. daylight saving time tm:isdst set-tm:isdst
  8415. GMT offset, seconds tm:gmtoff set-tm:gmtoff
  8416. name of time zone tm:zone set-tm:zone
  8417. *** There are new accessors for the vectors returned by `uname',
  8418. describing the host system:
  8419. Component Accessor
  8420. ============================================== ================
  8421. name of the operating system implementation utsname:sysname
  8422. network name of this machine utsname:nodename
  8423. release level of the operating system utsname:release
  8424. version level of the operating system utsname:version
  8425. machine hardware platform utsname:machine
  8426. *** There are new accessors for the vectors returned by `getpw',
  8427. `getpwnam', `getpwuid', and `getpwent', describing entries from the
  8428. system's user database:
  8429. Component Accessor
  8430. ====================== =================
  8431. user name passwd:name
  8432. user password passwd:passwd
  8433. user id passwd:uid
  8434. group id passwd:gid
  8435. real name passwd:gecos
  8436. home directory passwd:dir
  8437. shell program passwd:shell
  8438. *** There are new accessors for the vectors returned by `getgr',
  8439. `getgrnam', `getgrgid', and `getgrent', describing entries from the
  8440. system's group database:
  8441. Component Accessor
  8442. ======================= ============
  8443. group name group:name
  8444. group password group:passwd
  8445. group id group:gid
  8446. group members group:mem
  8447. *** There are new accessors for the vectors returned by `gethost',
  8448. `gethostbyaddr', `gethostbyname', and `gethostent', describing
  8449. internet hosts:
  8450. Component Accessor
  8451. ========================= ===============
  8452. official name of host hostent:name
  8453. alias list hostent:aliases
  8454. host address type hostent:addrtype
  8455. length of address hostent:length
  8456. list of addresses hostent:addr-list
  8457. *** There are new accessors for the vectors returned by `getnet',
  8458. `getnetbyaddr', `getnetbyname', and `getnetent', describing internet
  8459. networks:
  8460. Component Accessor
  8461. ========================= ===============
  8462. official name of net netent:name
  8463. alias list netent:aliases
  8464. net number type netent:addrtype
  8465. net number netent:net
  8466. *** There are new accessors for the vectors returned by `getproto',
  8467. `getprotobyname', `getprotobynumber', and `getprotoent', describing
  8468. internet protocols:
  8469. Component Accessor
  8470. ========================= ===============
  8471. official protocol name protoent:name
  8472. alias list protoent:aliases
  8473. protocol number protoent:proto
  8474. *** There are new accessors for the vectors returned by `getserv',
  8475. `getservbyname', `getservbyport', and `getservent', describing
  8476. internet protocols:
  8477. Component Accessor
  8478. ========================= ===============
  8479. official service name servent:name
  8480. alias list servent:aliases
  8481. port number servent:port
  8482. protocol to use servent:proto
  8483. *** There are new accessors for the sockaddr structures returned by
  8484. `accept', `getsockname', `getpeername', `recvfrom!':
  8485. Component Accessor
  8486. ======================================== ===============
  8487. address format (`family') sockaddr:fam
  8488. path, for file domain addresses sockaddr:path
  8489. address, for internet domain addresses sockaddr:addr
  8490. TCP or UDP port, for internet sockaddr:port
  8491. *** The `getpwent', `getgrent', `gethostent', `getnetent',
  8492. `getprotoent', and `getservent' functions now return #f at the end of
  8493. the user database. (They used to throw an exception.)
  8494. Note that calling MUMBLEent function is equivalent to calling the
  8495. corresponding MUMBLE function with no arguments.
  8496. *** The `setpwent', `setgrent', `sethostent', `setnetent',
  8497. `setprotoent', and `setservent' routines now take no arguments.
  8498. *** The `gethost', `getproto', `getnet', and `getserv' functions now
  8499. provide more useful information when they throw an exception.
  8500. *** The `lnaof' function has been renamed to `inet-lnaof'.
  8501. *** Guile now claims to have the `current-time' feature.
  8502. *** The `mktime' function now takes an optional second argument ZONE,
  8503. giving the time zone to use for the conversion. ZONE should be a
  8504. string, in the same format as expected for the "TZ" environment variable.
  8505. *** The `strptime' function now returns a pair (TIME . COUNT), where
  8506. TIME is the parsed time as a vector, and COUNT is the number of
  8507. characters from the string left unparsed. This function used to
  8508. return the remaining characters as a string.
  8509. *** The `gettimeofday' function has replaced the old `time+ticks' function.
  8510. The return value is now (SECONDS . MICROSECONDS); the fractional
  8511. component is no longer expressed in "ticks".
  8512. *** The `ticks/sec' constant has been removed, in light of the above change.
  8513. * Changes to the gh_ interface
  8514. ** gh_eval_str() now returns an SCM object which is the result of the
  8515. evaluation
  8516. ** gh_scm2str() now copies the Scheme data to a caller-provided C
  8517. array
  8518. ** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
  8519. and returns the array
  8520. ** gh_scm2str0() is gone: there is no need to distinguish
  8521. null-terminated from non-null-terminated, since gh_scm2newstr() allows
  8522. the user to interpret the data both ways.
  8523. * Changes to the scm_ interface
  8524. ** The new function scm_symbol_value0 provides an easy way to get a
  8525. symbol's value from C code:
  8526. SCM scm_symbol_value0 (char *NAME)
  8527. Return the value of the symbol named by the null-terminated string
  8528. NAME in the current module. If the symbol named NAME is unbound in
  8529. the current module, return SCM_UNDEFINED.
  8530. ** The new function scm_sysintern0 creates new top-level variables,
  8531. without assigning them a value.
  8532. SCM scm_sysintern0 (char *NAME)
  8533. Create a new Scheme top-level variable named NAME. NAME is a
  8534. null-terminated string. Return the variable's value cell.
  8535. ** The function scm_internal_catch is the guts of catch. It handles
  8536. all the mechanics of setting up a catch target, invoking the catch
  8537. body, and perhaps invoking the handler if the body does a throw.
  8538. The function is designed to be usable from C code, but is general
  8539. enough to implement all the semantics Guile Scheme expects from throw.
  8540. TAG is the catch tag. Typically, this is a symbol, but this function
  8541. doesn't actually care about that.
  8542. BODY is a pointer to a C function which runs the body of the catch;
  8543. this is the code you can throw from. We call it like this:
  8544. BODY (BODY_DATA, JMPBUF)
  8545. where:
  8546. BODY_DATA is just the BODY_DATA argument we received; we pass it
  8547. through to BODY as its first argument. The caller can make
  8548. BODY_DATA point to anything useful that BODY might need.
  8549. JMPBUF is the Scheme jmpbuf object corresponding to this catch,
  8550. which we have just created and initialized.
  8551. HANDLER is a pointer to a C function to deal with a throw to TAG,
  8552. should one occur. We call it like this:
  8553. HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
  8554. where
  8555. HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
  8556. same idea as BODY_DATA above.
  8557. THROWN_TAG is the tag that the user threw to; usually this is
  8558. TAG, but it could be something else if TAG was #t (i.e., a
  8559. catch-all), or the user threw to a jmpbuf.
  8560. THROW_ARGS is the list of arguments the user passed to the THROW
  8561. function.
  8562. BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
  8563. is just a pointer we pass through to HANDLER. We don't actually
  8564. use either of those pointers otherwise ourselves. The idea is
  8565. that, if our caller wants to communicate something to BODY or
  8566. HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
  8567. HANDLER can then use. Think of it as a way to make BODY and
  8568. HANDLER closures, not just functions; MUMBLE_DATA points to the
  8569. enclosed variables.
  8570. Of course, it's up to the caller to make sure that any data a
  8571. MUMBLE_DATA needs is protected from GC. A common way to do this is
  8572. to make MUMBLE_DATA a pointer to data stored in an automatic
  8573. structure variable; since the collector must scan the stack for
  8574. references anyway, this assures that any references in MUMBLE_DATA
  8575. will be found.
  8576. ** The new function scm_internal_lazy_catch is exactly like
  8577. scm_internal_catch, except:
  8578. - It does not unwind the stack (this is the major difference).
  8579. - If handler returns, its value is returned from the throw.
  8580. - BODY always receives #f as its JMPBUF argument (since there's no
  8581. jmpbuf associated with a lazy catch, because we don't unwind the
  8582. stack.)
  8583. ** scm_body_thunk is a new body function you can pass to
  8584. scm_internal_catch if you want the body to be like Scheme's `catch'
  8585. --- a thunk, or a function of one argument if the tag is #f.
  8586. BODY_DATA is a pointer to a scm_body_thunk_data structure, which
  8587. contains the Scheme procedure to invoke as the body, and the tag
  8588. we're catching. If the tag is #f, then we pass JMPBUF (created by
  8589. scm_internal_catch) to the body procedure; otherwise, the body gets
  8590. no arguments.
  8591. ** scm_handle_by_proc is a new handler function you can pass to
  8592. scm_internal_catch if you want the handler to act like Scheme's catch
  8593. --- call a procedure with the tag and the throw arguments.
  8594. If the user does a throw to this catch, this function runs a handler
  8595. procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
  8596. variable holding the Scheme procedure object to invoke. It ought to
  8597. be a pointer to an automatic variable (i.e., one living on the stack),
  8598. or the procedure object should be otherwise protected from GC.
  8599. ** scm_handle_by_message is a new handler function to use with
  8600. `scm_internal_catch' if you want Guile to print a message and die.
  8601. It's useful for dealing with throws to uncaught keys at the top level.
  8602. HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
  8603. message header to print; if zero, we use "guile" instead. That
  8604. text is followed by a colon, then the message described by ARGS.
  8605. ** The return type of scm_boot_guile is now void; the function does
  8606. not return a value, and indeed, never returns at all.
  8607. ** The new function scm_shell makes it easy for user applications to
  8608. process command-line arguments in a way that is compatible with the
  8609. stand-alone guile interpreter (which is in turn compatible with SCSH,
  8610. the Scheme shell).
  8611. To use the scm_shell function, first initialize any guile modules
  8612. linked into your application, and then call scm_shell with the values
  8613. of ARGC and ARGV your `main' function received. scm_shell will add
  8614. any SCSH-style meta-arguments from the top of the script file to the
  8615. argument vector, and then process the command-line arguments. This
  8616. generally means loading a script file or starting up an interactive
  8617. command interpreter. For details, see "Changes to the stand-alone
  8618. interpreter" above.
  8619. ** The new functions scm_get_meta_args and scm_count_argv help you
  8620. implement the SCSH-style meta-argument, `\'.
  8621. char **scm_get_meta_args (int ARGC, char **ARGV)
  8622. If the second element of ARGV is a string consisting of a single
  8623. backslash character (i.e. "\\" in Scheme notation), open the file
  8624. named by the following argument, parse arguments from it, and return
  8625. the spliced command line. The returned array is terminated by a
  8626. null pointer.
  8627. For details of argument parsing, see above, under "guile now accepts
  8628. command-line arguments compatible with SCSH..."
  8629. int scm_count_argv (char **ARGV)
  8630. Count the arguments in ARGV, assuming it is terminated by a null
  8631. pointer.
  8632. For an example of how these functions might be used, see the source
  8633. code for the function scm_shell in libguile/script.c.
  8634. You will usually want to use scm_shell instead of calling this
  8635. function yourself.
  8636. ** The new function scm_compile_shell_switches turns an array of
  8637. command-line arguments into Scheme code to carry out the actions they
  8638. describe. Given ARGC and ARGV, it returns a Scheme expression to
  8639. evaluate, and calls scm_set_program_arguments to make any remaining
  8640. command-line arguments available to the Scheme code. For example,
  8641. given the following arguments:
  8642. -e main -s ekko a speckled gecko
  8643. scm_set_program_arguments will return the following expression:
  8644. (begin (load "ekko") (main (command-line)) (quit))
  8645. You will usually want to use scm_shell instead of calling this
  8646. function yourself.
  8647. ** The function scm_shell_usage prints a usage message appropriate for
  8648. an interpreter that uses scm_compile_shell_switches to handle its
  8649. command-line arguments.
  8650. void scm_shell_usage (int FATAL, char *MESSAGE)
  8651. Print a usage message to the standard error output. If MESSAGE is
  8652. non-zero, write it before the usage message, followed by a newline.
  8653. If FATAL is non-zero, exit the process, using FATAL as the
  8654. termination status. (If you want to be compatible with Guile,
  8655. always use 1 as the exit status when terminating due to command-line
  8656. usage problems.)
  8657. You will usually want to use scm_shell instead of calling this
  8658. function yourself.
  8659. ** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
  8660. expressions. It used to return SCM_EOL. Earth-shattering.
  8661. ** The macros for declaring scheme objects in C code have been
  8662. rearranged slightly. They are now:
  8663. SCM_SYMBOL (C_NAME, SCHEME_NAME)
  8664. Declare a static SCM variable named C_NAME, and initialize it to
  8665. point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
  8666. be a C identifier, and SCHEME_NAME should be a C string.
  8667. SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
  8668. Just like SCM_SYMBOL, but make C_NAME globally visible.
  8669. SCM_VCELL (C_NAME, SCHEME_NAME)
  8670. Create a global variable at the Scheme level named SCHEME_NAME.
  8671. Declare a static SCM variable named C_NAME, and initialize it to
  8672. point to the Scheme variable's value cell.
  8673. SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
  8674. Just like SCM_VCELL, but make C_NAME globally visible.
  8675. The `guile-snarf' script writes initialization code for these macros
  8676. to its standard output, given C source code as input.
  8677. The SCM_GLOBAL macro is gone.
  8678. ** The scm_read_line and scm_read_line_x functions have been replaced
  8679. by Scheme code based on the %read-delimited! procedure (known to C
  8680. code as scm_read_delimited_x). See its description above for more
  8681. information.
  8682. ** The function scm_sys_open has been renamed to scm_open. It now
  8683. returns a port instead of an FD object.
  8684. * The dynamic linking support has changed. For more information, see
  8685. libguile/DYNAMIC-LINKING.
  8686. Guile 1.0b3
  8687. User-visible changes from Thursday, September 5, 1996 until Guile 1.0
  8688. (Sun 5 Jan 1997):
  8689. * Changes to the 'guile' program:
  8690. ** Guile now loads some new files when it starts up. Guile first
  8691. searches the load path for init.scm, and loads it if found. Then, if
  8692. Guile is not being used to execute a script, and the user's home
  8693. directory contains a file named `.guile', Guile loads that.
  8694. ** You can now use Guile as a shell script interpreter.
  8695. To paraphrase the SCSH manual:
  8696. When Unix tries to execute an executable file whose first two
  8697. characters are the `#!', it treats the file not as machine code to
  8698. be directly executed by the native processor, but as source code
  8699. to be executed by some interpreter. The interpreter to use is
  8700. specified immediately after the #! sequence on the first line of
  8701. the source file. The kernel reads in the name of the interpreter,
  8702. and executes that instead. It passes the interpreter the source
  8703. filename as its first argument, with the original arguments
  8704. following. Consult the Unix man page for the `exec' system call
  8705. for more information.
  8706. Now you can use Guile as an interpreter, using a mechanism which is a
  8707. compatible subset of that provided by SCSH.
  8708. Guile now recognizes a '-s' command line switch, whose argument is the
  8709. name of a file of Scheme code to load. It also treats the two
  8710. characters `#!' as the start of a comment, terminated by `!#'. Thus,
  8711. to make a file of Scheme code directly executable by Unix, insert the
  8712. following two lines at the top of the file:
  8713. #!/usr/local/bin/guile -s
  8714. !#
  8715. Guile treats the argument of the `-s' command-line switch as the name
  8716. of a file of Scheme code to load, and treats the sequence `#!' as the
  8717. start of a block comment, terminated by `!#'.
  8718. For example, here's a version of 'echo' written in Scheme:
  8719. #!/usr/local/bin/guile -s
  8720. !#
  8721. (let loop ((args (cdr (program-arguments))))
  8722. (if (pair? args)
  8723. (begin
  8724. (display (car args))
  8725. (if (pair? (cdr args))
  8726. (display " "))
  8727. (loop (cdr args)))))
  8728. (newline)
  8729. Why does `#!' start a block comment terminated by `!#', instead of the
  8730. end of the line? That is the notation SCSH uses, and although we
  8731. don't yet support the other SCSH features that motivate that choice,
  8732. we would like to be backward-compatible with any existing Guile
  8733. scripts once we do. Furthermore, if the path to Guile on your system
  8734. is too long for your kernel, you can start the script with this
  8735. horrible hack:
  8736. #!/bin/sh
  8737. exec /really/long/path/to/guile -s "$0" ${1+"$@"}
  8738. !#
  8739. Note that some very old Unix systems don't support the `#!' syntax.
  8740. ** You can now run Guile without installing it.
  8741. Previous versions of the interactive Guile interpreter (`guile')
  8742. couldn't start up unless Guile's Scheme library had been installed;
  8743. they used the value of the environment variable `SCHEME_LOAD_PATH'
  8744. later on in the startup process, but not to find the startup code
  8745. itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
  8746. code.
  8747. To run Guile without installing it, build it in the normal way, and
  8748. then set the environment variable `SCHEME_LOAD_PATH' to a
  8749. colon-separated list of directories, including the top-level directory
  8750. of the Guile sources. For example, if you unpacked Guile so that the
  8751. full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
  8752. you might say
  8753. export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
  8754. ** Guile's read-eval-print loop no longer prints #<unspecified>
  8755. results. If the user wants to see this, she can evaluate the
  8756. expression (assert-repl-print-unspecified #t), perhaps in her startup
  8757. file.
  8758. ** Guile no longer shows backtraces by default when an error occurs;
  8759. however, it does display a message saying how to get one, and how to
  8760. request that they be displayed by default. After an error, evaluate
  8761. (backtrace)
  8762. to see a backtrace, and
  8763. (debug-enable 'backtrace)
  8764. to see them by default.
  8765. * Changes to Guile Scheme:
  8766. ** Guile now distinguishes between #f and the empty list.
  8767. This is for compatibility with the IEEE standard, the (possibly)
  8768. upcoming Revised^5 Report on Scheme, and many extant Scheme
  8769. implementations.
  8770. Guile used to have #f and '() denote the same object, to make Scheme's
  8771. type system more compatible with Emacs Lisp's. However, the change
  8772. caused too much trouble for Scheme programmers, and we found another
  8773. way to reconcile Emacs Lisp with Scheme that didn't require this.
  8774. ** Guile's delq, delv, delete functions, and their destructive
  8775. counterparts, delq!, delv!, and delete!, now remove all matching
  8776. elements from the list, not just the first. This matches the behavior
  8777. of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
  8778. functions which inspired them.
  8779. I recognize that this change may break code in subtle ways, but it
  8780. seems best to make the change before the FSF's first Guile release,
  8781. rather than after.
  8782. ** The compiled-library-path function has been deleted from libguile.
  8783. ** The facilities for loading Scheme source files have changed.
  8784. *** The variable %load-path now tells Guile which directories to search
  8785. for Scheme code. Its value is a list of strings, each of which names
  8786. a directory.
  8787. *** The variable %load-extensions now tells Guile which extensions to
  8788. try appending to a filename when searching the load path. Its value
  8789. is a list of strings. Its default value is ("" ".scm").
  8790. *** (%search-load-path FILENAME) searches the directories listed in the
  8791. value of the %load-path variable for a Scheme file named FILENAME,
  8792. with all the extensions listed in %load-extensions. If it finds a
  8793. match, then it returns its full filename. If FILENAME is absolute, it
  8794. returns it unchanged. Otherwise, it returns #f.
  8795. %search-load-path will not return matches that refer to directories.
  8796. *** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
  8797. uses %seach-load-path to find a file named FILENAME, and loads it if
  8798. it finds it. If it can't read FILENAME for any reason, it throws an
  8799. error.
  8800. The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
  8801. `read' function.
  8802. *** load uses the same searching semantics as primitive-load.
  8803. *** The functions %try-load, try-load-with-path, %load, load-with-path,
  8804. basic-try-load-with-path, basic-load-with-path, try-load-module-with-
  8805. path, and load-module-with-path have been deleted. The functions
  8806. above should serve their purposes.
  8807. *** If the value of the variable %load-hook is a procedure,
  8808. `primitive-load' applies its value to the name of the file being
  8809. loaded (without the load path directory name prepended). If its value
  8810. is #f, it is ignored. Otherwise, an error occurs.
  8811. This is mostly useful for printing load notification messages.
  8812. ** The function `eval!' is no longer accessible from the scheme level.
  8813. We can't allow operations which introduce glocs into the scheme level,
  8814. because Guile's type system can't handle these as data. Use `eval' or
  8815. `read-and-eval!' (see below) as replacement.
  8816. ** The new function read-and-eval! reads an expression from PORT,
  8817. evaluates it, and returns the result. This is more efficient than
  8818. simply calling `read' and `eval', since it is not necessary to make a
  8819. copy of the expression for the evaluator to munge.
  8820. Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
  8821. for the `read' function.
  8822. ** The function `int?' has been removed; its definition was identical
  8823. to that of `integer?'.
  8824. ** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
  8825. use the R4RS names for these functions.
  8826. ** The function object-properties no longer returns the hash handle;
  8827. it simply returns the object's property list.
  8828. ** Many functions have been changed to throw errors, instead of
  8829. returning #f on failure. The point of providing exception handling in
  8830. the language is to simplify the logic of user code, but this is less
  8831. useful if Guile's primitives don't throw exceptions.
  8832. ** The function `fileno' has been renamed from `%fileno'.
  8833. ** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
  8834. * Changes to Guile's C interface:
  8835. ** The library's initialization procedure has been simplified.
  8836. scm_boot_guile now has the prototype:
  8837. void scm_boot_guile (int ARGC,
  8838. char **ARGV,
  8839. void (*main_func) (),
  8840. void *closure);
  8841. scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
  8842. MAIN_FUNC should do all the work of the program (initializing other
  8843. packages, reading user input, etc.) before returning. When MAIN_FUNC
  8844. returns, call exit (0); this function never returns. If you want some
  8845. other exit value, MAIN_FUNC may call exit itself.
  8846. scm_boot_guile arranges for program-arguments to return the strings
  8847. given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
  8848. scm_set_program_arguments with the final list, so Scheme code will
  8849. know which arguments have been processed.
  8850. scm_boot_guile establishes a catch-all catch handler which prints an
  8851. error message and exits the process. This means that Guile exits in a
  8852. coherent way when system errors occur and the user isn't prepared to
  8853. handle it. If the user doesn't like this behavior, they can establish
  8854. their own universal catcher in MAIN_FUNC to shadow this one.
  8855. Why must the caller do all the real work from MAIN_FUNC? The garbage
  8856. collector assumes that all local variables of type SCM will be above
  8857. scm_boot_guile's stack frame on the stack. If you try to manipulate
  8858. SCM values after this function returns, it's the luck of the draw
  8859. whether the GC will be able to find the objects you allocate. So,
  8860. scm_boot_guile function exits, rather than returning, to discourage
  8861. people from making that mistake.
  8862. The IN, OUT, and ERR arguments were removed; there are other
  8863. convenient ways to override these when desired.
  8864. The RESULT argument was deleted; this function should never return.
  8865. The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
  8866. general.
  8867. ** Guile's header files should no longer conflict with your system's
  8868. header files.
  8869. In order to compile code which #included <libguile.h>, previous
  8870. versions of Guile required you to add a directory containing all the
  8871. Guile header files to your #include path. This was a problem, since
  8872. Guile's header files have names which conflict with many systems'
  8873. header files.
  8874. Now only <libguile.h> need appear in your #include path; you must
  8875. refer to all Guile's other header files as <libguile/mumble.h>.
  8876. Guile's installation procedure puts libguile.h in $(includedir), and
  8877. the rest in $(includedir)/libguile.
  8878. ** Two new C functions, scm_protect_object and scm_unprotect_object,
  8879. have been added to the Guile library.
  8880. scm_protect_object (OBJ) protects OBJ from the garbage collector.
  8881. OBJ will not be freed, even if all other references are dropped,
  8882. until someone does scm_unprotect_object (OBJ). Both functions
  8883. return OBJ.
  8884. Note that calls to scm_protect_object do not nest. You can call
  8885. scm_protect_object any number of times on a given object, and the
  8886. next call to scm_unprotect_object will unprotect it completely.
  8887. Basically, scm_protect_object and scm_unprotect_object just
  8888. maintain a list of references to things. Since the GC knows about
  8889. this list, all objects it mentions stay alive. scm_protect_object
  8890. adds its argument to the list; scm_unprotect_object remove its
  8891. argument from the list.
  8892. ** scm_eval_0str now returns the value of the last expression
  8893. evaluated.
  8894. ** The new function scm_read_0str reads an s-expression from a
  8895. null-terminated string, and returns it.
  8896. ** The new function `scm_stdio_to_port' converts a STDIO file pointer
  8897. to a Scheme port object.
  8898. ** The new function `scm_set_program_arguments' allows C code to set
  8899. the value returned by the Scheme `program-arguments' function.
  8900. Older changes:
  8901. * Guile no longer includes sophisticated Tcl/Tk support.
  8902. The old Tcl/Tk support was unsatisfying to us, because it required the
  8903. user to link against the Tcl library, as well as Tk and Guile. The
  8904. interface was also un-lispy, in that it preserved Tcl/Tk's practice of
  8905. referring to widgets by names, rather than exporting widgets to Scheme
  8906. code as a special datatype.
  8907. In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
  8908. maintainers described some very interesting changes in progress to the
  8909. Tcl/Tk internals, which would facilitate clean interfaces between lone
  8910. Tk and other interpreters --- even for garbage-collected languages
  8911. like Scheme. They expected the new Tk to be publicly available in the
  8912. fall of 1996.
  8913. Since it seems that Guile might soon have a new, cleaner interface to
  8914. lone Tk, and that the old Guile/Tk glue code would probably need to be
  8915. completely rewritten, we (Jim Blandy and Richard Stallman) have
  8916. decided not to support the old code. We'll spend the time instead on
  8917. a good interface to the newer Tk, as soon as it is available.
  8918. Until then, gtcltk-lib provides trivial, low-maintenance functionality.
  8919. Copyright information:
  8920. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
  8921. Permission is granted to anyone to make or distribute verbatim copies
  8922. of this document as received, in any medium, provided that the
  8923. copyright notice and this permission notice are preserved,
  8924. thus giving the recipient permission to redistribute in turn.
  8925. Permission is granted to distribute modified versions
  8926. of this document, or of portions of it,
  8927. under the above conditions, provided also that they
  8928. carry prominent notices stating who last changed them.
  8929. Local variables:
  8930. mode: outline
  8931. paragraph-separate: "[ ]*$"
  8932. end: