NEWS 352 KB

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