NEWS 443 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922
  1. Guile NEWS --- history of user-visible changes.
  2. Copyright (C) 1996-2015 Free Software Foundation, Inc.
  3. See the end for copying conditions.
  4. Please send Guile bug reports to bug-guile@gnu.org.
  5. Changes in 2.1.3 (changes since the 2.1.2 alpha release):
  6. * Notable changes
  7. ** Complete overhaul of port internals
  8. Guile's ports have been completely overhauled to allow Guile developers
  9. and eventually Guile users to write low-level input and output routines
  10. in Scheme. The new internals will eventually allow for user-space
  11. tasklets or green threads that suspend to a scheduler when they would
  12. cause blocking I/O, allowing users to write straightforward network
  13. services that parse their input and send their output as if it were
  14. blocking, while under the hood Guile can multiplex many active
  15. connections at once.
  16. At the same time, this change makes Guile's ports implementation much
  17. more maintainable, rationalizing the many legacy port internals and
  18. making sure that the abstractions between the user, Guile's core ports
  19. facility, and the port implementations result in a system that is as
  20. performant and expressive as possible.
  21. The interface to the user has no significant change, neither on the C
  22. side nor on the Scheme side. However this refactoring has changed the
  23. interface to the port implementor in an incompatible way. See below for
  24. full details.
  25. ** All ports are now buffered, can be targets of `setvbuf'
  26. See "Buffering" in the manual, for more. A port with a buffer size of 1
  27. is equivalent to an unbuffered port. Ports may set their default buffer
  28. sizes, and some ports (for example soft ports) are unbuffered by default
  29. for historical reasons.
  30. ** Support for non-blocking I/O
  31. See "Non-Blocking I/O" in the manual, for more.
  32. ** Removal of port locks
  33. As part of the 2.2 series, we introduced recursive locks on each port,
  34. and arranged to lock them to avoid crashes but also to serialize I/O in
  35. some ways. This turned out to be a mistake: the port lock does not
  36. necessarily correspond to a program's desired atomic unit of I/O, so
  37. correct programs would likely have to have their own locking. At the
  38. same time the port buffering refactoring made it possible for us to
  39. avoid the crashes that led to the introduction of locking, but without
  40. locks. For that reason we have removed port locks, and removed the
  41. "_unlocked" port API variants that were introduced in 2.1.0.
  42. * New interfaces
  43. ** `TCP_NODELAY' and `TCP_CORK' socket options, if provided by the system
  44. * New deprecations
  45. ** `_IONBF', `_IOLBF', and `_IOFBF'
  46. Instead, use the symbol values `none', `line', or `block', respectively,
  47. as arguments to the `setvbuf' function.
  48. * Incompatible changes
  49. ** Decoding errors do not advance the read pointer before erroring
  50. When the user sets a port's conversion strategy to "error", indicating
  51. that Guile should throw an error if it tries to read from a port whose
  52. incoming bytes are not valid for the port's encoding, it used to be that
  53. Guile would advance the read pointer past the bad bytes, and then throw
  54. an error. This would allow the following `read-char' invocation to
  55. proceed after the bad bytes. This behavior is incompatible with the
  56. final R6RS standard, and besides contravenes the user's intention to
  57. raise an error on bad input. Guile now raises an error without
  58. advancing the read pointer. To skip over a bad encoding, set the port
  59. conversion strategy to "substitute" and read a substitute character.
  60. ** Decoding errors with `substitute' strategy return U+FFFD
  61. It used to be that decoding errors with the `substitute' conversion
  62. strategy would replace the bad bytes with a `?' character. This has
  63. been changed to use the standard U+FFFD REPLACEMENT CHARACTER, in
  64. accordance with the Unicode recommendations.
  65. ** API to define new port types from C has changed
  66. See the newly expanded "I/O Extensions" in the manual, for full details.
  67. Notably:
  68. *** Remove `scm_set_port_mark'
  69. Port mark functions have not been called since the switch to the BDW
  70. garbage collector.
  71. *** Remove `scm_set_port_equalp'
  72. Likewise port equal functions weren't being called. Given that ports
  73. have their own internal buffers, it doesn't make sense to hook them into
  74. equal? anyway.
  75. *** Remove `scm_set_port_free'
  76. It used to be that if an open port became unreachable, a special "free"
  77. function would be called instead of the "close" function. Now that the
  78. BDW-GC collector allows us to run arbitrary code in finalizers, we can
  79. simplify to just call "close" on the port and remove the separate free
  80. functions. Note that hooking into the garbage collector has some
  81. overhead. For that reason Guile exposes a new interface,
  82. `scm_set_port_needs_close_on_gc', allowing port implementations to
  83. indicate to Guile whether they need closing on GC or not.
  84. *** Remove `scm_set_port_end_input', `scm_set_port_flush'
  85. As buffering is handled by Guile itself, these functions which were to
  86. manage an implementation-side buffer are no longer needed.
  87. *** Change prototype of `scm_make_port_type'
  88. The `read' (renamed from `fill_input') and `write' functions now operate
  89. on bytevectors. Also the `mode_bits' argument now inplicitly includes
  90. SCM_OPN, so you don't need to include these.
  91. *** Change prototype of port `close' function
  92. The port close function now returns void.
  93. *** Port and port type data structures are now opaque
  94. Port type implementations should now use API to access port state.
  95. However, since the change to handle port buffering centrally, port type
  96. implementations rarely need to access unrelated port state.
  97. *** Port types are now `scm_t_port_type*', not a tc16 value
  98. `scm_make_port_type' now returns an opaque pointer, not a tc16.
  99. Relatedly, the limitation that there only be 256 port types has been
  100. lifted.
  101. Previous changes in 2.1.x (changes since the 2.0.x series):
  102. * Notable changes
  103. ** Speed
  104. The biggest change in Guile 2.2 is a complete rewrite of its virtual
  105. machine and compiler internals. The result is faster startup time,
  106. better memory usage, and faster execution of user code. See the
  107. "Performance improvements" section below for more details.
  108. ** Better thread-safety
  109. This new release series takes the ABI-break opportunity to fix some
  110. interfaces that were difficult to use correctly from multiple threads.
  111. Notably, weak hash tables are now transparently thread-safe. Ports are
  112. also thread-safe; see "New interfaces" below for details on the changes
  113. to the C interface.
  114. ** Better space-safety
  115. It used to be the case that, when calling a Scheme procedure, the
  116. procedure and arguments were always preserved against garbage
  117. collection. This is no longer the case; Guile is free to collect the
  118. procedure and arguments if they become unreachable, or to re-use their
  119. slots for other local variables. Guile still offers good-quality
  120. backtraces by determining the procedure being called from the
  121. instruction pointer instead of from the value in slot 0 of an
  122. application frame, and by using a live variable map that allows the
  123. debugger to know which locals are live at all points in a frame.
  124. ** Off-main-thread finalization
  125. Following Guile 2.0.6's change to invoke finalizers via asyncs, Guile
  126. 2.2 takes the additional step of invoking finalizers from a dedicated
  127. finalizer thread, if threads are enabled. This avoids concurrency
  128. issues between finalizers and application code, and also speeds up
  129. finalization. If your application's finalizers are not robust to the
  130. presence of threads, see "Foreign Objects" in the manual for information
  131. on how to disable automatic finalization and instead run finalizers
  132. manually.
  133. ** Better locale support in Guile scripts
  134. When Guile is invoked directly, either from the command line or via a
  135. hash-bang line (e.g. "#!/usr/bin/guile"), it now installs the current
  136. locale via a call to `(setlocale LC_ALL "")'. For users with a unicode
  137. locale, this makes all ports unicode-capable by default, without the
  138. need to call `setlocale' in your program. This behavior may be
  139. controlled via the GUILE_INSTALL_LOCALE environment variable; see the
  140. manual for more.
  141. ** Complete Emacs-compatible Elisp implementation
  142. Thanks to the work of BT Templeton, Guile's Elisp implementation is now
  143. fully Emacs-compatible, implementing all of Elisp's features and quirks
  144. in the same way as the editor we know and love.
  145. ** Dynamically expandable stacks
  146. Instead of allocating fixed stack sizes for running Scheme code, Guile
  147. now starts off each thread with only one page of stack, and expands and
  148. shrinks it dynamically as needed. Guile will throw an exception for
  149. stack overflows if growing the stack fails. It is also possible to
  150. impose a stack limit during the extent of a function call. See "Stack
  151. Overflow" in the manual, for more.
  152. This change allows users to write programs that use the stack as a data
  153. structure for pending computations, as it was meant to be, without
  154. reifying that data out to the heap. Where you would previously make a
  155. loop that collect its results in reverse order only to re-reverse them
  156. at the end, now you can just recurse without worrying about stack
  157. overflows.
  158. Using the stack also allows more code to be continuation-safe. For
  159. example, returning multiple times from a `map' procedure in Guile 2.0
  160. would change the value of previously returned result lists, because
  161. `map' built its result list in reverse order then used `reverse!' to
  162. return the proper result. Now in Guile 2.2, `map' is implemented using
  163. straightforward recursion, which eliminates this bug while maintaining
  164. good performance as well as good space complexity.
  165. ** Out-of-memory improvements
  166. Instead of aborting, failures to allocate memory will now raise an
  167. unwind-only `out-of-memory' exception, and cause the corresponding
  168. `catch' expression to run garbage collection in order to free up memory.
  169. ** GOOPS core reimplemented in Scheme
  170. Guile's object orientation system, GOOPS, has been mostly reimplemented
  171. in Scheme. This decreases its maintenance burden on the rest of Guile,
  172. while also makes it possible to implement new features in the future,
  173. such as method combinations or `eqv?' specializers.
  174. ** Better handling of GUILE_LOAD_COMPILED_PATH
  175. It used to be that Guile would stop at the first .go file it found in
  176. the GUILE_LOAD_COMPILED_PATH. If that file turned out to be out of
  177. date, then no .go file would be loaded. Now Guile will continue to
  178. search the path for a file which is both present and up-to-date, with
  179. respect to the .scm file.
  180. * Performance improvements
  181. ** Faster programs via new virtual machine
  182. Guile now compiles programs to instructions for a new virtual machine.
  183. The new virtual machine's instructions can address their source and
  184. destination operands by "name" (slot). This makes access to named
  185. temporary values much faster than in Guile 2.0, and removes a lot of
  186. value-shuffling that the old virtual machine had to do. The end result
  187. is that loop-heavy code can be two or three times as fast with Guile 2.2
  188. as in 2.0. Your mileage may vary, of course; see "A Virtual Machine for
  189. Guile" in the manual for the nitties and the gritties.
  190. ** Better startup time, memory usage with ELF object file format
  191. Guile now uses the standard ELF format for its compiled code. (Guile
  192. has its own loader and linker, so this does not imply a dependency on
  193. any particular platform's ELF toolchain.) The benefit is that Guile is
  194. now able to statically allocate more data in the object files. ELF also
  195. enables more sharing of data between processes, and decreases startup
  196. time (about 40% faster than the already fast startup of the Guile 2.0
  197. series). Guile also uses DWARF for some of its debugging information.
  198. Much of the debugging information can be stripped from the object files
  199. as well. See "Object File Format" in the manual, for full details.
  200. ** Better optimizations via compiler rewrite
  201. Guile's compiler now uses a Continuation-Passing Style (CPS)
  202. intermediate language, allowing it to reason easily about temporary
  203. values and control flow. Examples of optimizations that this permits
  204. are optimal contification, optimal common subexpression elimination,
  205. dead code elimination, loop-invariant code motion, loop peeling, loop
  206. inversion, parallel moves with at most one temporary, allocation of
  207. stack slots using precise liveness information, unboxing of 64-bit
  208. integers and floating point values, and closure optimization. For more,
  209. see "Continuation-Passing Style" in the manual.
  210. ** Faster interpreter
  211. Combined with a number of optimizations to the interpreter itself,
  212. simply compiling `eval.scm' with the new compiler yields an interpreter
  213. that is consistently two or three times faster than the one in Guile
  214. 2.0.
  215. ** Allocation-free dynamic stack
  216. Guile now implements the dynamic stack with an actual stack instead of a
  217. list of heap objects, avoiding most allocation. This speeds up prompts,
  218. the `scm_dynwind_*' family of functions, fluids, and `dynamic-wind'.
  219. ** Optimized UTF-8 and Latin-1 ports, symbols, and strings
  220. Guile 2.2 is faster at reading and writing UTF-8 and Latin-1 strings
  221. from ports, and at converting symbols and strings to and from these
  222. encodings.
  223. ** Optimized hash functions
  224. Guile 2.2 now uses Bob Jenkins' `hashword2' (from his `lookup3.c') for
  225. its string hash, and Thomas Wang's integer hash function for `hashq' and
  226. `hashv'. These functions produce much better hash values across all
  227. available fixnum bits.
  228. ** Optimized generic array facility
  229. Thanks to work by Daniel Llorens, the generic array facility is much
  230. faster now, as it is internally better able to dispatch on the type of
  231. the underlying backing store.
  232. * New interfaces
  233. ** New `cond-expand' feature: `guile-2.2'
  234. Use this feature if you need to check for Guile 2.2 from Scheme code.
  235. ** New predicate: `nil?'
  236. See "Nil" in the manual.
  237. ** New compiler modules
  238. Since the compiler was rewritten, there are new modules for the back-end
  239. of the compiler and the low-level loader and introspection interfaces.
  240. See the "Guile Implementation" chapter in the manual for all details.
  241. ** New functions: `scm_to_intptr_t', `scm_from_intptr_t'
  242. ** New functions: `scm_to_uintptr_t', `scm_from_uintptr_t'
  243. See "Integers" in the manual, for more.
  244. ** Add "tree" display mode for statprof.
  245. See the newly updated "Statprof" section of the manual, for more.
  246. ** New thread-safe port API
  247. For details on `scm_c_make_port', `scm_c_make_port_with_encoding',
  248. `scm_c_lock_port', `scm_c_try_lock_port', `scm_c_unlock_port',
  249. `scm_c_port_type_ref', `scm_c_port_type_add_x', `SCM_PORT_DESCRIPTOR',
  250. and `scm_dynwind_lock_port', see XXX.
  251. There is now a routine to atomically adjust port "revealed counts". See
  252. XXX for more on `scm_adjust_port_revealed_x' and
  253. `adjust-port-revealed!',
  254. All other port API now takes the lock on the port if needed. There are
  255. some C interfaces if you know that you don't need to take a lock; see
  256. XXX for details on `scm_get_byte_or_eof_unlocked',
  257. `scm_peek_byte_or_eof_unlocked' `scm_c_read_unlocked',
  258. `scm_getc_unlocked' `scm_unget_byte_unlocked', `scm_ungetc_unlocked',
  259. `scm_ungets_unlocked', `scm_fill_input_unlocked' `scm_putc_unlocked',
  260. `scm_puts_unlocked', and `scm_lfwrite_unlocked'.
  261. ** New inline functions: `scm_new_smob', `scm_new_double_smob'
  262. These can replace many uses of SCM_NEWSMOB, SCM_RETURN_NEWSMOB2, and the
  263. like. See XXX in the manual, for more.
  264. ** New low-level type accessors
  265. For more on `SCM_HAS_TYP7', `SCM_HAS_TYP7S', `SCM_HAS_TYP16', see XXX.
  266. `SCM_HEAP_OBJECT_P' is now an alias for the inscrutable `SCM_NIMP'.
  267. `SCM_UNPACK_POINTER' and `SCM_PACK_POINTER' are better-named versions of
  268. the old `SCM2PTR' and `PTR2SCM'. Also, `SCM_UNPACK_POINTER' yields a
  269. void*.
  270. ** <standard-vtable>, standard-vtable-fields
  271. See "Structures" in the manual for more on these
  272. ** Convenience utilities for ports and strings.
  273. See XXX for more on `scm_from_port_string', `scm_from_port_stringn',
  274. `scm_to_port_string', and `scm_to_port_stringn'.
  275. ** New expressive PEG parser
  276. See "PEG Parsing" in the manual for more. Thanks to Michael Lucy for
  277. originally writing these, and to Noah Lavine for integration work.
  278. ** `make-stack' now also works on delimited continuations
  279. ** Better URI-reference support
  280. The `(web uri)' module now has interfaces for handling URI references,
  281. which might not have a scheme. The Location header of a web request or
  282. response is now a URI reference instead of a URI. Also,
  283. `request-absolute-uri' now has an optional default scheme argument. See
  284. "Web" in the manual for full details.
  285. ** formal-name->char, char->formal-name
  286. See "Characters", in the manual.
  287. * Incompatible changes
  288. ** ASCII is not ISO-8859-1
  289. In Guile 2.0, if a user set "ASCII" or "ANSI_X3.4-1968" as the encoding
  290. of a port, Guile would treat it as ISO-8859-1. While these encodings
  291. are the same for codepoints 0 to 127, ASCII does not extend past that
  292. range, whereas ISO-8859-1 goes up to 255. Guile 2.2 no longer treats
  293. ASCII as ISO-8859-1. This is likely to be a problem only if the user's
  294. locale is set to ASCII, and the user or a program writes non-ASCII
  295. codepoints to a port.
  296. ** String ports default to UTF-8
  297. Guile 2.0 would use the `%default-port-encoding' when creating string
  298. ports. This resulted in ports that could only accept a subset of valid
  299. characters, which was surprising to users. Now string ports default to
  300. the UTF-8 encoding. Sneaky users can still play encoding conversion
  301. games with string ports by explicitly setting the encoding of a port
  302. after it is open. See "Ports" in the manual for more.
  303. ** `scm_from_stringn' and `scm_to_stringn' encoding arguments are never NULL
  304. These functions now require a valid `encoding' argument, and will abort
  305. if given `NULL'.
  306. ** All r6rs ports are both textual and binary
  307. Because R6RS ports are a thin layer on top of Guile's ports, and Guile's
  308. ports are both textual and binary, Guile's R6RS ports are also both
  309. textual and binary, and thus both kinds have port transcoders. This is
  310. an incompatibility with respect to R6RS.
  311. ** Remove `frame-procedure'
  312. Several optimizations in Guile make `frame-procedure' an interface that
  313. we can no longer support. For background, `frame-procedure' used to
  314. return the value at slot 0 in a frame, which usually corresponds to the
  315. SCM value of the procedure being applied. However it could be that this
  316. slot is re-used for some other value, because the closure was not needed
  317. in the function. Such a re-use might even be for an untagged value, in
  318. which case treating slot 0 as a SCM value is quite dangerous. It's also
  319. possible that so-called "well-known" closures (closures whose callers
  320. are all known) are optimized in such a way that slot 0 is not a
  321. procedure but some optimized representation of the procedure's free
  322. variables. Instead, developers building debugging tools that would like
  323. access to `frame-procedure' are invited to look at the source for the
  324. `(system vm frame)' module for alternate interfaces, including the new
  325. `frame-procedure-name'.
  326. ** Remove `,procedure' REPL command
  327. Not all procedures have values, so it doesn't make sense to expose this
  328. interface to the user. Instead, the `,locals' REPL command will include
  329. the callee, if it is live.
  330. ** Remove `frame-local-ref', `frame-local-set!', `frame-num-locals'
  331. These procedures reference values in a frame on the stack. Since we now
  332. have unboxed values of different kinds, it is now necessary to specify
  333. the type when reference locals, and once this incompatible change needs
  334. to be made, we might as well make these interfaces private. See
  335. "Frames' in the manual, for more information on the replacements for
  336. these low-level interfaces.
  337. ** Vtable hierarchy changes
  338. In an attempt to make Guile's structure and record types integrate
  339. better with GOOPS by unifying the vtable hierarchy, `make-vtable-vtable'
  340. is now deprecated. Instead, users should just use `make-vtable' with
  341. appropriate arguments. See "Structures" in the manual for all of the
  342. details. As such, `record-type-vtable' and `%condition-type-vtable' now
  343. have a parent vtable and are no longer roots of the vtable hierarchy.
  344. ** Syntax parameters are a distinct type
  345. Guile 2.0's transitional implementation of `syntax-parameterize' was
  346. based on the `fluid-let-syntax' interface inherited from the psyntax
  347. expander. This interface allowed any binding to be dynamically rebound
  348. -- even bindings like `lambda'. This is no longer the case in Guile
  349. 2.2. Syntax parameters must be defined via `define-syntax-parameter',
  350. and only such bindings may be parameterized. See "Syntax Parameters" in
  351. the manual for more.
  352. ** Defined identifiers scoped in the current module
  353. Sometimes Guile's expander would attach incorrect module scoping
  354. information for top-level bindings made by an expansion. For example,
  355. given the following R6RS library:
  356. (library (defconst)
  357. (export defconst)
  358. (import (guile))
  359. (define-syntax-rule (defconst name val)
  360. (begin
  361. (define t val)
  362. (define-syntax-rule (name) t))))
  363. Attempting to use it would produce an error:
  364. (import (defconst))
  365. (defconst foo 42)
  366. (foo)
  367. =| Unbound variable: t
  368. It wasn't clear that we could fix this in Guile 2.0 without breaking
  369. someone's delicate macros, so the fix is only coming out now.
  370. ** Pseudo-hygienically rename macro-introduced bindings
  371. Bindings introduced by macros, like `t' in the `defconst' example above,
  372. are now given pseudo-fresh names. This allows
  373. (defconst foo 42)
  374. (defconst bar 37)
  375. to introduce different bindings for `t'. These pseudo-fresh names are
  376. made in such a way that if the macro is expanded again, for example as
  377. part of a simple recompilation, the introduced identifiers get the same
  378. pseudo-fresh names. See "Hygiene and the Top-Level" in the manual, for
  379. details.
  380. ** Fix literal matching for module-bound literals
  381. `syntax-rules' and `syntax-case' macros can take a set of "literals":
  382. bound or unbound keywords that the syntax matcher treats specially.
  383. Before, literals were always matched symbolically (by name). Now they
  384. are matched by binding. This allows literals to be reliably bound to
  385. values, renamed by imports or exports, et cetera. See "Syntax-rules
  386. Macros" in the manual for more on literals.
  387. ** `dynamic-wind' doesn't check that guards are thunks
  388. Checking that the dynamic-wind out-guard procedure was actually a thunk
  389. before doing the wind was slow, unreliable, and not strictly needed.
  390. ** All deprecated code removed
  391. All code deprecated in Guile 2.0 has been removed. See older NEWS, and
  392. check that your programs can compile without linker warnings and run
  393. without runtime warnings. See "Deprecation" in the manual.
  394. ** Remove miscellaneous unused interfaces
  395. We have removed accidentally public, undocumented interfaces that we
  396. think are not used, and not useful. This includes `scm_markstream',
  397. `SCM_FLUSH_REGISTER_WINDOWS', `SCM_THREAD_SWITCHING_CODE', `SCM_FENCE',
  398. `scm_call_generic_0', `scm_call_generic_1', `scm_call_generic_2'
  399. `scm_call_generic_3', `scm_apply_generic', and `scm_program_source'.
  400. `scm_async_click' was renamed to `scm_async_tick', and `SCM_ASYNC_TICK'
  401. was made private (use `SCM_TICK' instead).
  402. ** Many internal compiler / VM changes
  403. As the compiler and virtual machine were re-written, there are many
  404. changes in the back-end of Guile to interfaces that were introduced in
  405. Guile 2.0. These changes are only only of interest if you wrote a
  406. language on Guile 2.0 or a tool using Guile 2.0 internals. If this is
  407. the case, drop by the IRC channel to discuss the changes.
  408. ** Defining a SMOB or port type no longer mucks exports of `(oop goops)'
  409. It used to be that defining a SMOB or port type added an export to
  410. GOOPS, for the wrapper class of the smob type. This violated
  411. modularity, though, so we have removed this behavior.
  412. ** Bytecode replaces objcode as a target language
  413. One way in which people may have used details of Guile's runtime in
  414. Guile 2.0 is in compiling code to thunks for later invocation. Instead
  415. of compiling to objcode and then calling `make-program', now the way to
  416. do it is to compile to `bytecode' and then call `load-thunk-from-memory'
  417. from `(system vm loader)'.
  418. ** Weak pairs removed
  419. Weak pairs were not safe to access with `car' and `cdr', and so were
  420. removed.
  421. ** Weak alist vectors removed
  422. Use weak hash tables instead.
  423. ** Weak vectors may no longer be accessed via `vector-ref' et al
  424. Weak vectors may no longer be accessed with the vector interface. This
  425. was a source of bugs in the 2.0 Guile implementation, and a limitation
  426. on using vectors as building blocks for other abstractions. Vectors in
  427. Guile are now a concrete type; for an abstract interface, use the
  428. generic array facility (`array-ref' et al).
  429. ** scm_t_array_implementation removed
  430. This interface was introduced in 2.0 but never documented. It was a
  431. failed attempt to layer the array implementation that actually
  432. introduced too many layers, as it prevented the "vref" and "vset"
  433. members of scm_t_array_handle (called "ref" and "set" in 1.8, not
  434. present in 2.0) from specializing on array backing stores.
  435. Notably, the definition of scm_t_array_handle has now changed, to not
  436. include the (undocumented) "impl" member. We are sorry for any
  437. inconvenience this may cause.
  438. ** `scm_make' is now equivalent to Scheme `make'
  439. It used to be that `scm_make' only implemented a hard-wired object
  440. allocation and initialization protocol. This was because `scm_make' was
  441. used while GOOPS booted its own, more complete `make' implementation in
  442. Scheme. Now that we've re-implemented everything in Scheme, the C
  443. `scm_make' now dispatches directly to Scheme `make', which implements
  444. the full protocol. This change is incompatible in some ways, but on the
  445. whole is good news for GOOPS users.
  446. ** GOOPS slot definitions are now objects
  447. Slot definitions are now instances of a <slot> class, instead of being
  448. specially formatted lists. To most user code, this is transparent, as
  449. the slot definition accessors like `slot-definition-name' continue to
  450. work. However, code that for example uses `car' to get the name of a
  451. slot definition will need to be updated to use the accessors.
  452. ** Class slot changes
  453. Class objects no longer have a `default-slot-definition-class' slot,
  454. which was never used. They also no longer have slots for hashsets
  455. (`h0', `h1', and so on up to `h7'), which have been unused since Guile
  456. 2.0 and were not a great idea.
  457. There is a new class option, `#:static-slot-allocation?'. See the
  458. manual for details.
  459. ** Removal of internal, unintentionally exposed GOOPS C interfaces
  460. These include: `scm_sys_fast_slot_ref', `scm_sys_fast_slot_set_x'
  461. `scm_basic_basic_make_class', `scm_sys_compute_slots',
  462. `scm_sys_prep_layout_x' `scm_t_method', `SCM_METHOD',
  463. `scm_s_slot_set_x', `SCM_CLASS_CLASS_LAYOUT', `scm_si_slotdef_class',
  464. `scm_si_generic_function', `scm_si_specializers', `scm_si_procedure',
  465. `scm_si_formals', `scm_si_body', `scm_si_make_procedure',
  466. `SCM_CLASS_CLASS_LAYOUT', `SCM_INSTANCE_HASH', `SCM_SET_HASHSET', `union
  467. scm_t_debug_info', `scm_pure_generic_p', `SCM_PUREGENERICP',
  468. `SCM_VALIDATE_PUREGENERIC', `SCM_VTABLE_FLAG_GOOPS_PURE_GENERIC',
  469. `SCM_CLASSF_PURE_GENERIC', `scm_c_extend_primitive_generic',
  470. `scm_sys_initialize_object', `SCM_CLASS_CLASS_LAYOUT',
  471. `scm_si_redefined', `scm_si_direct_supers', `scm_si_direct_slots',
  472. `scm_si_direct_subclasses', `scm_si_direct_methods', `scm_si_cpl'
  473. `scm_si_slots', `scm_si_getters_n_setters', `SCM_N_CLASS_SLOTS',
  474. `SCM_OBJ_CLASS_REDEF', `SCM_INST', `SCM_ACCESSORS_OF',
  475. `scm_sys_allocate_instance', and `scm_sys_invalidate_class_x'.
  476. * New deprecations
  477. ** `with-statprof' macro deprecated
  478. Use the `statprof' procedure instead.
  479. ** SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1, SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_N
  480. ** SCM_GASSERT0, SCM_GASSERT1, SCM_GASSERT2, SCM_GASSERTn
  481. ** SCM_WTA_DISPATCH_1_SUBR
  482. These macros were used in dispatching primitive generics. They can be
  483. replaced by using C functions (the same name but in lower case), if
  484. needed, but this is a hairy part of Guile that perhaps you shouldn't be
  485. using.
  486. ** scm_compute_applicable_methods and scm_find_method
  487. Use `compute-applicable-methods' from Scheme instead.
  488. ** scm_no_applicable_method
  489. Fetch no-applicable-method from the GOOPS exports if you need it.
  490. ** scm_class_boolean, scm_class_char, scm_class_pair
  491. ** scm_class_procedure, scm_class_string, scm_class_symbol
  492. ** scm_class_primitive_generic, scm_class_vector, scm_class_null
  493. ** scm_class_real, scm_class_complex, scm_class_integer
  494. ** scm_class_fraction, scm_class_unknown, scm_class_top
  495. ** scm_class_object, scm_class_class, scm_class_applicable
  496. ** scm_class_applicable_struct, scm_class_applicable_struct_with_setter
  497. ** scm_class_generic, scm_class_generic_with_setter, scm_class_accessor
  498. ** scm_class_extended_generic, scm_class_extended_generic_with_setter
  499. ** scm_class_extended_accessor, scm_class_method
  500. ** scm_class_accessor_method, scm_class_procedure_class
  501. ** scm_class_applicable_struct_class, scm_class_number, scm_class_list
  502. ** scm_class_keyword, scm_class_port, scm_class_input_output_port
  503. ** scm_class_input_port, scm_class_output_port, scm_class_foreign_slot
  504. ** scm_class_self, scm_class_protected, scm_class_hidden
  505. ** scm_class_opaque, scm_class_read_only, scm_class_protected_hidden
  506. ** scm_class_protected_opaque, scm_class_protected_read_only
  507. ** scm_class_scm, scm_class_int, scm_class_float, scm_class_double
  508. ** scm_port_class, scm_smob_class
  509. These class exports are now deprecated. Instead, look up the ones you
  510. need from the GOOPS module, or use `scm_class_of' on particular values.
  511. ** scm_get_keyword
  512. Instead from Scheme use kw-arg-ref or real keyword arguments, and from C
  513. use `scm_c_bind_keyword_arguments'.
  514. ** scm_slot_ref_using_class, scm_slot_set_using_class_x
  515. ** scm_slot_bound_using_class_p, scm_slot_exists_using_class_p
  516. Instead use the normal `scm_slot_ref' and similar procedures.
  517. * Changes to the distribution
  518. ** Pre-built binary files in the tarball
  519. Building Guile from a tarball can now take advantage of a "prebuilt/"
  520. tree of prebuilt .go files. These compiled files are created when a
  521. tarball is made, and are used to speed up the build for users of
  522. official releases.
  523. These pre-built binaries are not necessary, however: they are not stored
  524. in revision control and can always be re-created from the source, given
  525. that Guile can bootstrap itself from its minimal bootstrap C
  526. interpreter. If you do not want to depend on these pre-built binaries,
  527. you can "make -C prebuilt clean" before building.
  528. If Guile doesn't pre-build binaries for your architecture and you would
  529. like support for your architecture, see prebuilt/Makefile.am for more
  530. information on how to add support.
  531. ** New minor version
  532. The "effective version" of Guile is now 2.2, which allows parallel
  533. installation with other effective versions (for example, the older Guile
  534. 2.0). See "Parallel Installations" in the manual for full details.
  535. Notably, the `pkg-config' file is now `guile-2.2'.
  536. ** Bump required libgc version to 7.2, released March 2012.
  537. ** The readline extension is now installed in the extensionsdir
  538. The shared library that implements Guile's readline extension is no
  539. longer installed to the libdir. This change should be transparent to
  540. users, but packagers may be interested.
  541. Changes in 2.0.12 (since 2.0.11):
  542. [Note: these changes come to 2.2 via 2.0 branch, but 2.0.12 hasn't been
  543. released yet at the time of this writing.]
  544. * Notable changes
  545. ** The #!r6rs directive now influences read syntax
  546. The #!r6rs directive now changes the per-port reader options to make
  547. Guile's reader conform more closely to the R6RS syntax. In particular:
  548. - It makes the reader case sensitive.
  549. - It disables the recognition of keyword syntax in conflict with the
  550. R6RS (and R5RS).
  551. - It enables the `square-brackets', `hungry-eol-escapes' and
  552. `r6rs-hex-escapes' reader options.
  553. Changes in 2.0.11 (since 2.0.10):
  554. This release fixes an embarrassing regression introduced in the C
  555. interface to SRFI-4 vectors. See
  556. <https://lists.gnu.org/archive/html/guile-devel/2014-03/msg00047.html>
  557. for details.
  558. Changes in 2.0.10 (since 2.0.9):
  559. * Notable changes
  560. ** New GDB extension to support Guile
  561. Guile now comes with an extension for GDB 7.8 or later (unreleased at
  562. the time of writing) that simplifies debugging of C code that uses
  563. Guile. See "GDB Support" in the manual.
  564. ** Improved integration between R6RS and native Guile exceptions
  565. R6RS exception handlers, established using 'with-exception-handler' or
  566. 'guard', are now able to catch native Guile exceptions, which are
  567. automatically converted into appropriate R6RS condition objects.
  568. ** Support for HTTP proxies
  569. Guile's built-in web client now honors the 'http_proxy' environment
  570. variable, as well as the new 'current-http-proxy' parameter. See
  571. "Web Client" in the manual for details.
  572. ** Lexical syntax improvements
  573. *** Support |...| symbol notation.
  574. Guile's core reader and printer now support the R7RS |...| notation
  575. for writing symbols with arbitrary characters, as a more portable and
  576. attractive alternative to Guile's native #{...}# notation. To enable
  577. this notation by default, put one or both of the following in your
  578. ~/.guile:
  579. (read-enable 'r7rs-symbols)
  580. (print-enable 'r7rs-symbols)
  581. *** Support '#true' and '#false' notation for booleans.
  582. The booleans '#t' and '#f' may now be written as '#true' and '#false'
  583. for improved readability, per R7RS.
  584. *** Recognize '#\escape' character name.
  585. The escape character '#\esc' may now be written as '#\escape', per R7RS.
  586. *** Accept "\|" in string literals.
  587. The pipe character may now be preceded by a backslash, per R7RS.
  588. ** Custom binary input ports now support 'setvbuf'.
  589. Until now, ports returned by 'make-custom-binary-input-port' were always
  590. full-buffered. Now, their buffering mode can be changed using 'setvbuf'.
  591. ** SRFI-4 predicates and length accessors no longer accept arrays.
  592. Given that the SRFI-4 accessors don't work for arrays, the fact that the
  593. predicates and length accessors returned true for arrays was a bug.
  594. ** GUILE_PROGS now supports specifying a minimum required version.
  595. The 'GUILE_PROGS' autoconf macro in guile.m4 now allows an optional
  596. argument to specify a minimum required Guile version. By default, it
  597. requires Guile >= 2.0. A micro version can also be specified, e.g.:
  598. GUILE_PROGS([2.0.10])
  599. ** Error reporting improvements
  600. *** Improved run-time error reporting in (ice-9 match).
  601. If no pattern matches in a 'match' form, the datum that failed to match
  602. is printed along with the location of the failed 'match' invocation.
  603. *** Print the faulty object upon invalid-keyword errors.
  604. *** Improved error reporting of procedures defined by define-inlinable.
  605. *** Improved error reporting for misplaced ellipses in macro definitions.
  606. *** Improved error checking in 'define-public' and 'module-add!'.
  607. *** Improved error when 'include' form with relative path is not in a file.
  608. ** Speed improvements
  609. *** 'scm_c_read' on ISO-8859-1 (e.g. binary) unbuffered ports is faster.
  610. *** New inline asm for VM fixnum multiply, for faster overflow checking.
  611. *** New inline asm for VM fixnum operations on ARM and 32-bit x86.
  612. *** 'positive?' and 'negative?' are now compiled to VM primitives.
  613. *** Numerical comparisons with more than 2 arguments are compiled to VM code.
  614. *** Several R6RS bitwise operators have been optimized.
  615. ** Miscellaneous
  616. *** Web: 'content-disposition' headers are now supported.
  617. *** Web: 'uri-encode' hexadecimal percent-encoding is now uppercase.
  618. *** Size argument to 'make-doubly-weak-hash-table' is now optional.
  619. *** Timeout for 'unlock-mutex' and SRFI-18 'mutex-unlock!' may now be #f.
  620. ** Gnulib update
  621. Guile's copy of Gnulib was updated to v0.1-92-g546ff82. The following
  622. modules were imported from Gnulib: copysign, fsync, isfinite, link,
  623. lstat, mkdir, mkstemp, readlink, rename, rmdir, and unistd.
  624. * New interfaces
  625. ** Cooperative REPL servers
  626. This new facility supports REPLs that run at specified times within an
  627. existing thread, for example in programs utilizing an event loop or in
  628. single-threaded programs. This allows for safe access and mutation of
  629. a program's data structures from the REPL without concern for thread
  630. synchronization. See "Cooperative REPL Servers" in the manual for
  631. details.
  632. ** SRFI-43 (Vector Library)
  633. Guile now includes SRFI-43, a comprehensive library of vector operations
  634. analogous to the SRFI-1 list library. See "SRFI-43" in the manual for
  635. details.
  636. ** SRFI-64 (A Scheme API for test suites)
  637. Guile now includes SRFI-64, a flexible framework for creating test
  638. suites. The reference implementation of SRFI-64 has also been updated
  639. to fully support earlier versions of Guile.
  640. ** SRFI-111 (Boxes)
  641. See "SRFI-111" in the manual.
  642. ** 'define-values'
  643. See "Binding multiple return values" in the manual.
  644. ** Custom ellipsis identifiers using 'with-ellipsis' or SRFI-46.
  645. Guile now allows macro definitions to use identifiers other than '...'
  646. as the ellipsis. This is convenient when writing macros that generate
  647. macro definitions. The desired ellipsis identifier can be given as the
  648. first operand to 'syntax-rules', as specified in SRFI-46 and R7RS, or by
  649. using the new 'with-ellipsis' special form in procedural macros. With
  650. this addition, Guile now fully supports SRFI-46.
  651. See "Specifying a Custom Ellipsis Identifier" and "Custom Ellipsis
  652. Identifiers for syntax-case Macros" in the manual for details.
  653. ** R7RS 'syntax-error'
  654. Guile now supports 'syntax-error', as specified by R7RS, allowing for
  655. improved compile-time error reporting from 'syntax-rules' macros. See
  656. "Reporting Syntax Errors in Macros" in the manual for details.
  657. ** New procedures to convert association lists into hash tables
  658. Guile now includes the convenience procedures 'alist->hash-table',
  659. 'alist->hashq-table', 'alist->hashv-table', and 'alist->hashx-table'.
  660. See "Hash Table Reference" in the manual.
  661. ** New predicates: 'exact-integer?' and 'scm_is_exact_integer'
  662. See "Integers" in the manual.
  663. ** 'weak-vector-length', 'weak-vector-ref', and 'weak-vector-set!'
  664. These should now be used to access weak vectors, instead of
  665. 'vector-length', 'vector-ref', and 'vector-set!'.
  666. * Manual updates
  667. ** Improve docs for 'eval-when'.
  668. Each 'eval-when' condition is now explained in detail, including
  669. 'expand' which was previously undocumented. (expand load eval) is now
  670. the recommended set of conditions, instead of (compile load eval).
  671. See "Eval When" in the manual, for details.
  672. ** Update the section on SMOBs and memory management.
  673. See "Defining New Types (Smobs)" in the manual.
  674. ** Fixes
  675. *** GOOPS: #:dsupers is the init keyword for the dsupers slot.
  676. *** 'unfold-right' takes a tail, not a tail generator.
  677. *** Clarify that 'append!' and 'reverse!' might not mutate.
  678. *** Fix doc that incorrectly claimed (integer? +inf.0) => #t.
  679. (http://bugs.gnu.org/16356)
  680. *** Document that we support SRFI-62 (S-expression comments).
  681. *** Document that we support SRFI-87 (=> in case clauses).
  682. *** Document 'equal?' in the list of R6RS incompatibilities.
  683. *** Remove outdated documentation of LTDL_LIBRARY_PATH.
  684. *** Fix 'weak-vector?' doc: Weak hash tables are not weak vectors.
  685. *** Fix 'my-or' examples to use let-bound variable.
  686. (http://bugs.gnu.org/14203)
  687. * New deprecations
  688. ** General 'uniform-vector' interface
  689. This interface lacked both generality and specificity. The general
  690. replacements are 'array-length', 'array-ref', and friends on the scheme
  691. side, and the array handle interface on the C side. On the specific
  692. side of things, there are the specific bytevector, SRFI-4, and bitvector
  693. interfaces.
  694. ** Use of the vector interface on arrays
  695. ** 'vector-length', 'vector-ref', and 'vector-set!' on weak vectors
  696. ** 'vector-length', 'vector-ref', and 'vector-set!' as primitive-generics
  697. Making the vector interface operate only on a single representation will
  698. allow future versions of Guile to compile loops involving vectors to
  699. more efficient native code.
  700. ** 'htons', 'htonl', 'ntohs', 'ntohl'
  701. These procedures, like their C counterpart, were used to convert numbers
  702. to/from network byte order, typically in conjunction with the
  703. now-deprecated uniform vector API.
  704. This functionality is now covered by the bytevector and binary I/O APIs.
  705. See "Interpreting Bytevector Contents as Integers" in the manual.
  706. ** 'gc-live-object-stats'
  707. It hasn't worked in the whole 2.0 series. There is no replacement,
  708. unfortunately.
  709. ** 'scm_c_program_source'
  710. This internal VM function was not meant to be public. Use
  711. 'scm_procedure_source' instead.
  712. * Build fixes
  713. ** Fix build with Clang 3.4.
  714. ** MinGW build fixes
  715. *** Do not add $(EXEEXT) to guild or guile-tools.
  716. *** tests: Use double quotes around shell arguments, for Windows.
  717. *** tests: Don't rely on $TMPDIR and /tmp on Windows.
  718. *** tests: Skip FFI tests that use `qsort' when it's not accessible.
  719. *** tests: Remove symlink only when it exists.
  720. *** tests: Don't rely on `scm_call_2' being visible.
  721. ** Fix computation of LIBLOBJS so dependencies work properly.
  722. (http://bugs.gnu.org/14193)
  723. * Bug fixes
  724. ** Web: Fix web client with methods other than GET.
  725. (http://bugs.gnu.org/15908)
  726. ** Web: Add Content-Length header for empty bodies.
  727. ** Web: Accept "UTC" as the zone offset in date headers.
  728. (http://bugs.gnu.org/14128)
  729. ** Web: Don't throw if a response is longer than its Content-Length says.
  730. ** Web: Write out HTTP Basic auth headers correctly.
  731. (http://bugs.gnu.org/14370)
  732. ** Web: Always print a path component in 'write-request-line'.
  733. ** Fix 'define-public' from (ice-9 curried-definitions).
  734. ** psyntax: toplevel variable definitions discard previous syntactic binding.
  735. (http://bugs.gnu.org/11988)
  736. ** Fix thread-unsafe lazy initializations.
  737. ** Make (ice-9 popen) thread-safe.
  738. (http://bugs.gnu.org/15683)
  739. ** Make guardians thread-safe.
  740. ** Make regexp_exec thread-safe.
  741. (http://bugs.gnu.org/14404)
  742. ** vm: Gracefully handle stack overflows.
  743. (http://bugs.gnu.org/15065)
  744. ** Fix 'rationalize'.
  745. (http://bugs.gnu.org/14905)
  746. ** Fix inline asm for VM fixnum operations on x32.
  747. ** Fix 'SCM_SYSCALL' to really swallow EINTR.
  748. ** Hide EINTR returns from 'accept'.
  749. ** SRFI-19: Update the table of leap seconds.
  750. ** Add missing files to the test-suite Makefile.
  751. ** Make sure 'ftw' allows directory traversal when running as root.
  752. ** Fix 'hash-for-each' for weak hash tables.
  753. ** SRFI-18: Export 'current-thread'.
  754. (http://bugs.gnu.org/16890)
  755. ** Fix inlining of tail list to apply.
  756. (http://bugs.gnu.org/15533)
  757. ** Fix bug in remqueue in threads.c when removing last element.
  758. ** Fix build when '>>' on negative integers is not arithmetic.
  759. ** Fix 'bitwise-bit-count' for negative arguments.
  760. (http://bugs.gnu.org/14864)
  761. ** Fix VM 'ash' for right shifts by large amounts.
  762. (http://bugs.gnu.org/14864)
  763. ** Fix rounding in scm_i_divide2double for negative arguments.
  764. ** Avoid lossy conversion from inum to double in numerical comparisons.
  765. ** Fix numerical comparison of fractions to infinities.
  766. ** Allow fl+ and fl* to accept zero arguments.
  767. (http://bugs.gnu.org/14869)
  768. ** flonum? returns false for complex number objects.
  769. (http://bugs.gnu.org/14866)
  770. ** flfinite? applied to a NaN returns false.
  771. (http://bugs.gnu.org/14868)
  772. ** Flonum operations always return flonums.
  773. (http://bugs.gnu.org/14871)
  774. ** min and max: NaNs beat infinities, per R6RS errata.
  775. (http://bugs.gnu.org/14865)
  776. ** Fix 'fxbit-count' for negative arguments.
  777. ** 'gcd' and 'lcm' support inexact integer arguments.
  778. (http://bugs.gnu.org/14870)
  779. ** Fix R6RS 'fixnum-width'.
  780. (http://bugs.gnu.org/14879)
  781. ** tests: Use shell constructs that /bin/sh on Solaris 10 can understand.
  782. (http://bugs.gnu.org/14042)
  783. ** Fix display of symbols containing backslashes.
  784. (http://bugs.gnu.org/15033)
  785. ** Fix truncated-print for uniform vectors.
  786. ** Define `AF_UNIX' only when Unix-domain sockets are supported.
  787. ** Decompiler: fix handling of empty 'case-lambda' expressions.
  788. ** Fix handling of signed zeroes and infinities in 'numerator' and 'denominator'.
  789. ** dereference-pointer: check for null pointer.
  790. ** Optimizer: Numerical comparisons are not negatable, for correct NaN handling.
  791. ** Compiler: Evaluate '-' and '/' in left-to-right order.
  792. (for more robust floating-point arithmetic)
  793. ** snarf.h: Declare static const function name vars as SCM_UNUSED.
  794. ** chars.c: Remove duplicate 'const' specifiers.
  795. ** Modify SCM_UNPACK type check to avoid warnings in clang.
  796. ** Arrange so that 'file-encoding' does not truncate the encoding name.
  797. (http://bugs.gnu.org/16463)
  798. ** Improve error checking in bytevector->uint-list and bytevector->sint-list.
  799. (http://bugs.gnu.org/15100)
  800. ** Fix (ash -1 SCM_I_FIXNUM_BIT-1) to return a fixnum instead of a bignum.
  801. ** i18n: Fix null pointer dereference when locale info is missing.
  802. ** Fix 'string-copy!' to work properly with overlapping src/dest.
  803. ** Fix hashing of vectors to run in bounded time.
  804. ** 'port-position' works on CBIPs that do not support 'set-port-position!'.
  805. ** Custom binary input ports sanity-check the return value of 'read!'.
  806. ** bdw-gc.h: Check SCM_USE_PTHREAD_THREADS using #if not #ifdef.
  807. ** REPL Server: Don't establish a SIGINT handler.
  808. ** REPL Server: Redirect warnings to client socket.
  809. ** REPL Server: Improve robustness of 'stop-server-and-clients!'.
  810. ** Add srfi-16, srfi-30, srfi-46, srfi-62, srfi-87 to %cond-expand-features.
  811. ** Fix trap handlers to handle applicable structs.
  812. (http://bugs.gnu.org/15691)
  813. ** Fix optional end argument in `uniform-vector-read!'.
  814. (http://bugs.gnu.org/15370)
  815. ** Fix brainfuck->scheme compiler.
  816. ** texinfo: Fix newline preservation in @example with lines beginning with @
  817. ** C standards conformance improvements
  818. Improvements and bug fixes were made to the C part of Guile's run-time
  819. support (libguile).
  820. *** Don't use the identifier 'noreturn'.
  821. (http://bugs.gnu.org/15798)
  822. *** Rewrite SCM_I_INUM to avoid unspecified behavior when not using GNU C.
  823. *** Improve fallback implemention of SCM_SRS to avoid unspecified behavior.
  824. *** SRFI-60: Reimplement 'rotate-bit-field' on inums to be more portable.
  825. *** Improve compliance with C standards regarding signed integer shifts.
  826. *** Avoid signed overflow in random.c.
  827. *** VM: Avoid signed overflows in 'add1' and 'sub1'.
  828. *** VM: Avoid overflow in ASM_ADD when the result is most-positive-fixnum.
  829. *** read: Avoid signed integer overflow in 'read_decimal_integer'.
  830. Changes in 2.0.9 (since 2.0.7):
  831. Note: 2.0.8 was a brown paper bag release that was never announced, but
  832. some mirrors may have picked it up. Please do not use it.
  833. * Notable changes
  834. ** New keyword arguments for procedures that open files
  835. The following procedures that open files now support keyword arguments
  836. to request binary I/O or to specify the character encoding for text
  837. files: `open-file', `open-input-file', `open-output-file',
  838. `call-with-input-file', `call-with-output-file', `with-input-from-file',
  839. `with-output-to-file', and `with-error-to-file'.
  840. It is also now possible to specify whether Guile should scan files for
  841. Emacs-style coding declarations. This scan was done by default in
  842. versions 2.0.0 through 2.0.7, but now must be explicitly requested.
  843. See "File Ports" in the manual for details.
  844. ** Rewritten guile.m4
  845. The `guile.m4' autoconf macros have been rewritten to use `guild' and
  846. `pkg-config' instead of the deprecated `guile-config' (which itself
  847. calls pkg-config).
  848. There is also a new macro, `GUILE_PKG', which allows packages to select
  849. the version of Guile that they want to compile against. See "Autoconf
  850. Macros" in the manual, for more information.
  851. ** Better Windows support
  852. Guile now correctly identifies absolute paths on Windows (MinGW), and
  853. creates files on that platform according to its path conventions. See
  854. "File System" in the manual, for all details.
  855. In addition, the new Gnulib imports provide `select' and `poll' on
  856. Windows builds.
  857. As an incompatible change, systems that are missing <sys/select.h> were
  858. previously provided a public `scm_std_select' C function that defined a
  859. version of `select', but unhappily it also provided its own incompatible
  860. definitions for FD_SET, FD_ZERO, and other system interfaces. Guile
  861. should not be setting these macros in public API, so this interface was
  862. removed on those plaforms (basically only MinGW).
  863. ** Numerics improvements
  864. `number->string' now reliably outputs enough digits to produce the same
  865. number when read back in. Previously, it mishandled subnormal numbers
  866. (printing them as "#.#"), and failed to distinguish between some
  867. distinct inexact numbers, e.g. 1.0 and (+ 1.0 (expt 2.0 -52)). These
  868. problems had far-reaching implications, since the compiler uses
  869. `number->string' to serialize numeric constants into .go files.
  870. `sqrt' now produces exact rational results when possible, and handles
  871. very large or very small numbers more robustly.
  872. A number (ahem) of operations involving exact rationals have been
  873. optimized, most notably `integer-expt' and `expt'.
  874. `exact->inexact' now performs correct IEEE rounding.
  875. ** New optimizations
  876. There were a number of improvements to the partial evaluator, allowing
  877. complete reduction of forms such as:
  878. ((let ((_ 10)) (lambda () _)))
  879. ((lambda _ _))
  880. (apply (lambda _ _) 1 2 3 '(4))
  881. (call-with-values (lambda () (values 1 2)) (lambda _ _))
  882. `string-join' now handles huge lists efficiently.
  883. `get-bytevector-some' now uses buffered input, which is much faster.
  884. Finally, `array-ref', `array-set!' on arrays of rank 1 or 2 is now
  885. faster, because it avoids building a rest list. Similarly, the
  886. one-argument case of `array-for-each' and `array-map!' has been
  887. optimized, and `array-copy!' and `array-fill!' are faster.
  888. ** `peek-char' no longer consumes EOF
  889. As required by the R5RS, if `peek-char' returns EOF, then the next read
  890. will also return EOF. Previously `peek-char' would consume the EOF.
  891. This makes a difference for terminal devices where it is possible to
  892. read past an EOF.
  893. ** Gnulib update
  894. Guile's copy of Gnulib was updated to v0.0-7865-ga828bb2. The following
  895. modules were imported from Gnulib: select, times, pipe-posix, fstat,
  896. getlogin, poll, and c-strcase.
  897. ** `include' resolves relative file names relative to including file
  898. Given a relative file name, `include' will look for it relative to the
  899. directory of the including file. This harmonizes the behavior of
  900. `include' with that of `load'.
  901. ** SLIB compatibility restored
  902. Guile 2.0.8 is now compatible with SLIB. You will have to use a
  903. development version of SLIB, however, until a new version of SLIB is
  904. released.
  905. ** Better ,trace REPL command
  906. Sometimes the ,trace output for nested function calls could overflow the
  907. terminal width, which wasn't useful. Now there is a limit to the amount
  908. of space the prefix will take. See the documentation for ",trace" for
  909. more information.
  910. ** Better docstring syntax supported for `case-lambda'
  911. Docstrings can now be placed immediately after the `case-lambda' or
  912. `case-lambda*' keyword. See "Case-lambda" in the manual.
  913. ** Improved handling of Unicode byte order marks
  914. See "BOM Handling" in the manual for details.
  915. ** Update predefined character sets to Unicode 6.2
  916. ** GMP 4.2 or later required
  917. Guile used to require GMP at least version 4.1 (released in May 2002),
  918. and now requires at least version 4.2 (released in March 2006).
  919. * Manual updates
  920. ** Better SXML documentation
  921. The documentation for SXML modules was much improved, though there is
  922. still far to go. See "SXML" in manual.
  923. ** Style updates
  924. Use of "iff" was replaced with standard English. Keyword arguments are
  925. now documented consistently, along with their default values.
  926. ** An end to the generated-documentation experiment
  927. When Guile 2.0 imported some modules from Guile-Lib, they came with a
  928. system that generated documentation from docstrings and module
  929. commentaries. This produced terrible documentation. We finally bit the
  930. bullet and incorporated these modules into the main text, and will be
  931. improving them manually over time, as is the case with SXML. Help is
  932. appreciated.
  933. ** New documentation
  934. There is now documentation for `scm_array_type', and `scm_array_ref', as
  935. well as for the new `array-length' / 'scm_c_array_length' /
  936. `scm_array_length' functions. `array-in-bounds?' has better
  937. documentation as well. The `program-arguments-alist' and
  938. `program-lambda-list' functions are now documented, as well as `and=>',
  939. `exit', and `quit'. The (system repl server) module is now documented
  940. (see REPL Servers). Finally, the GOOPS class hierarchy diagram has been
  941. regenerated for the web and print output formats.
  942. * New deprecations
  943. ** Deprecate generalized vector interface
  944. The generalized vector interface, introduced in 1.8.0, is simply a
  945. redundant, verbose interface to arrays of rank 1. `array-ref' and
  946. similar functions are entirely sufficient. Thus,
  947. `scm_generalized_vector_p', `scm_generalized_vector_length',
  948. `scm_generalized_vector_ref', `scm_generalized_vector_set_x', and
  949. `scm_generalized_vector_to_list' are now deprecated.
  950. ** Deprecate SCM_CHAR_CODE_LIMIT and char-code-limit
  951. These constants were defined to 256, which is not the highest codepoint
  952. supported by Guile. Given that they were useless and incorrect, they
  953. have been deprecated.
  954. ** Deprecate `http-get*'
  955. The new `#:streaming?' argument to `http-get' subsumes the functionality
  956. of `http-get*' (introduced in 2.0.7). Also, the `#:extra-headers'
  957. argument is deprecated in favor of `#:headers'.
  958. ** Deprecate (ice-9 mapping)
  959. This module, present in Guile since 1996 but never used or documented,
  960. has never worked in Guile 2.0. It has now been deprecated and will be
  961. removed in Guile 2.2.
  962. ** Deprecate undocumented array-related C functions
  963. These are `scm_array_fill_int', `scm_ra_eqp', `scm_ra_lessp',
  964. `scm_ra_leqp', `scm_ra_grp', `scm_ra_greqp', `scm_ra_sum',
  965. `scm_ra_product', `scm_ra_difference', `scm_ra_divide', and
  966. `scm_array_identity'.
  967. * New interfaces
  968. ** SRFI-41 Streams
  969. See "SRFI-41" in the manual.
  970. ** SRFI-45 exports `promise?'
  971. SRFI-45 now exports a `promise?' procedure that works with its promises.
  972. Also, its promises now print more nicely.
  973. ** New HTTP client procedures
  974. See "Web Client" for documentation on the new `http-head', `http-post',
  975. `http-put', `http-delete', `http-trace', and `http-options' procedures,
  976. and also for more options to `http-get'.
  977. ** Much more capable `xml->sxml'
  978. See "Reading and Writing XML" for information on how the `xml->sxml'
  979. parser deals with namespaces, processed entities, doctypes, and literal
  980. strings. Incidentally, `current-ssax-error-port' is now a parameter
  981. object.
  982. ** New procedures for converting strings to and from bytevectors
  983. See "Representing Strings as Bytes" for documention on the new `(ice-9
  984. iconv)' module and its `bytevector->string' and `string->bytevector'
  985. procedures.
  986. ** Escape continuations with `call/ec' and `let/ec'
  987. See "Prompt Primitives".
  988. ** New procedures to read all characters from a port
  989. See "Line/Delimited" in the manual for documentation on `read-string'
  990. and `read-string!'.
  991. ** New procedure `sendfile'
  992. See "File System".
  993. ** New procedure `unget-bytevector'
  994. See "R6RS Binary Input".
  995. ** New C helper: `scm_c_bind_keyword_arguments'
  996. See "Keyword Procedures".
  997. ** New command-line arguments: `--language' and `-C'
  998. See "Command-line Options" in the manual.
  999. ** New environment variables: `GUILE_STACK_SIZE', `GUILE_INSTALL_LOCALE'
  1000. See "Environment Variables".
  1001. ** New procedures for dealing with file names
  1002. See "File System" for documentation on `system-file-name-convention',
  1003. `file-name-separator?', `absolute-file-name?', and
  1004. `file-name-separator-string'.
  1005. ** `array-length', an array's first dimension
  1006. See "Array Procedures".
  1007. ** `hash-count', for hash tables
  1008. See "Hash Tables".
  1009. ** `round-ash', a bit-shifting operator that rounds on right-shift
  1010. See "Bitwise Operations".
  1011. ** New foreign types: `ssize_t', `ptrdiff_t'
  1012. See "Foreign Types".
  1013. ** New C helpers: `scm_from_ptrdiff_t', `scm_to_ptrdiff_t'
  1014. See "Integers".
  1015. ** Socket option `SO_REUSEPORT' now available from Scheme
  1016. If supported on the platform, `SO_REUSEPORT' is now available from
  1017. Scheme as well. See "Network Sockets and Communication".
  1018. ** `current-language' in default environment
  1019. Previously defined only in `(system base language)', `current-language'
  1020. is now defined in the default environment, and is used to determine the
  1021. language for the REPL, and for `compile-and-load'.
  1022. ** New procedure: `fluid->parameter'
  1023. See "Parameters", for information on how to convert a fluid to a
  1024. parameter.
  1025. ** New `print' REPL option
  1026. See "REPL Commands" in the manual for information on the new
  1027. user-customizable REPL printer.
  1028. ** New variable: %site-ccache-dir
  1029. The "Installing Site Packages" and "Build Config" manual sections now
  1030. refer to this variable to describe where users should install their
  1031. `.go' files.
  1032. * Build fixes
  1033. ** Fix compilation against libgc 7.3.
  1034. ** Fix cross-compilation of `c-tokenize.o'.
  1035. ** Fix warning when compiling against glibc 2.17.
  1036. ** Fix documentation build against Texinfo 5.0.
  1037. ** Fix building Guile from a directory with non-ASCII characters.
  1038. ** Fix native MinGW build.
  1039. ** Fix --disable-posix build.
  1040. ** Fix MinGW builds with networking, POSIX, and thread support.
  1041. * Bug fixes
  1042. ** Fix inexact number printer.
  1043. (http://bugs.gnu.org/13757)
  1044. ** Fix infinite loop when parsing optional-argument short options (SRFI-37).
  1045. (http://bugs.gnu.org/13176)
  1046. ** web: Support non-GMT date headers in the HTTP client.
  1047. (http://bugs.gnu.org/13544)
  1048. ** web: support IP-literal (IPv6 address) in Host header.
  1049. ** Avoid stack overflows with `par-map' and nested futures in general.
  1050. (http://bugs.gnu.org/13188)
  1051. ** Peek-char no longer consumes EOF.
  1052. (http://bugs.gnu.org/12216)
  1053. ** Avoid swallowing multiple EOFs in R6RS binary-input procedures.
  1054. ** A fork when multiple threads are running will now print a warning.
  1055. ** Allow for spurious wakeups from pthread_cond_wait.
  1056. (http://bugs.gnu.org/10641)
  1057. ** Warn and ignore module autoload failures.
  1058. (http://bugs.gnu.org/12202)
  1059. ** Use chmod portably in (system base compile).
  1060. (http://bugs.gnu.org/10474)
  1061. ** Fix response-body-port for HTTP responses without content-length.
  1062. (http://bugs.gnu.org/13857)
  1063. ** Allow case-lambda expressions with no clauses.
  1064. (http://bugs.gnu.org/9776)
  1065. ** Improve standards conformance of string->number.
  1066. (http://bugs.gnu.org/11887)
  1067. ** Support calls and tail-calls with more than 255 formals.
  1068. ** ,option evaluates its right-hand-side.
  1069. (http://bugs.gnu.org/13076)
  1070. ** Structs with tail arrays are not simple.
  1071. (http://bugs.gnu.org/12808)
  1072. ** Make `SCM_LONG_BIT' usable in preprocessor conditionals.
  1073. (http://bugs.gnu.org/13848)
  1074. ** Fix thread-unsafe lazy initializations.
  1075. ** Allow SMOB mark procedures to be called from parallel markers.
  1076. (http://bugs.gnu.org/13611)
  1077. ** Fix later-bindings-win logic in with-fluids.
  1078. (http://bugs.gnu.org/13843)
  1079. ** Fix duplicate removal of with-fluids.
  1080. (http://bugs.gnu.org/13838)
  1081. ** Support calling foreign functions of 10 arguments or more.
  1082. (http://bugs.gnu.org/13809)
  1083. ** Let reverse! accept arbitrary types as second argument.
  1084. (http://bugs.gnu.org/13835)
  1085. ** Recognize the `x86_64.*-gnux32' triplet.
  1086. ** Check whether a triplet's OS part specifies an ABI.
  1087. ** Recognize mips64* as having 32-bit pointers by default.
  1088. ** Use portable sed constructs.
  1089. (http://bugs.gnu.org/14042)
  1090. ** Remove language/glil/decompile-assembly.scm.
  1091. (http://bugs.gnu.org/10622)
  1092. ** Use O_BINARY in `copy-file', `load-objcode', `mkstemp'.
  1093. ** Use byte-oriented functions in `get-bytevector*'.
  1094. ** Fix abort when iconv swallows BOM from UTF-16 or UTF-32 stream.
  1095. ** Fix compilation of functions with more than 255 local variables.
  1096. ** Fix `getgroups' for when zero supplementary group IDs exist.
  1097. ** Allow (define-macro name (lambda ...)).
  1098. ** Various fixes to the (texinfo) modules.
  1099. ** guild: Gracefully handle failures to install the locale.
  1100. ** Fix format string warnings for ~!, ~|, ~/, ~q, ~Q, and ~^.
  1101. (http://bugs.gnu.org/13485)
  1102. ** Fix source annotation bug in psyntax 'expand-body'.
  1103. ** Ecmascript: Fix conversion to boolean for non-numbers.
  1104. ** Use case-insensitive comparisons for encoding names.
  1105. ** Add missing cond-expand feature identifiers.
  1106. ** A failure to find a module's file does not prevent future loading.
  1107. ** Many (oop goops save) fixes.
  1108. ** `http-get': don't shutdown write end of socket.
  1109. (http://bugs.gnu.org/13095)
  1110. ** Avoid signed integer overflow in scm_product.
  1111. ** http: read-response-body always returns bytevector or #f, never EOF.
  1112. ** web: Correctly detect "No route to host" conditions.
  1113. ** `system*': failure to execvp no longer leaks dangling processes.
  1114. (http://bugs.gnu.org/13166)
  1115. ** More sensible case-lambda* dispatch.
  1116. (http://bugs.gnu.org/12929)
  1117. ** Do not defer expansion of internal define-syntax forms.
  1118. (http://bugs.gnu.org/13509)
  1119. Changes in 2.0.7 (since 2.0.6):
  1120. * Notable changes
  1121. ** SRFI-105 curly infix expressions are supported
  1122. Curly infix expressions as described at
  1123. http://srfi.schemers.org/srfi-105/srfi-105.html are now supported by
  1124. Guile's reader. This allows users to write things like {a * {b + c}}
  1125. instead of (* a (+ b c)). SRFI-105 support is enabled by using the
  1126. `#!curly-infix' directive in source code, or the `curly-infix' reader
  1127. option. See the manual for details.
  1128. ** Reader options may now be per-port
  1129. Historically, `read-options' and related procedures would manipulate
  1130. global options, affecting the `read' procedure for all threads, and all
  1131. current uses of `read'.
  1132. Guile can now associate `read' options with specific ports, allowing
  1133. different ports to use different options. For instance, the
  1134. `#!fold-case' and `#!no-fold-case' reader directives have been
  1135. implemented, and their effect is to modify the current read options of
  1136. the current port only; similarly for `#!curly-infix'. Thus, it is
  1137. possible, for instance, to have one port reading case-sensitive code,
  1138. while another port reads case-insensitive code.
  1139. ** Futures may now be nested
  1140. Futures may now be nested: a future can itself spawn and then `touch'
  1141. other futures. In addition, any thread that touches a future that has
  1142. not completed now processes other futures while waiting for the touched
  1143. future to completed. This allows all threads to be kept busy, and was
  1144. made possible by the use of delimited continuations (see the manual for
  1145. details.)
  1146. Consequently, `par-map' and `par-for-each' have been rewritten and can
  1147. now use all cores.
  1148. ** `GUILE_LOAD_PATH' et al can now add directories to the end of the path
  1149. `GUILE_LOAD_PATH' and `GUILE_LOAD_COMPILED_PATH' can now be used to add
  1150. directories to both ends of the load path. If the special path
  1151. component `...' (ellipsis) is present in these environment variables,
  1152. then the default path is put in place of the ellipsis, otherwise the
  1153. default path is placed at the end. See "Environment Variables" in the
  1154. manual for details.
  1155. ** `load-in-vicinity' search for `.go' files in `%load-compiled-path'
  1156. Previously, `load-in-vicinity' would look for compiled files in the
  1157. auto-compilation cache, but not in `%load-compiled-path'. This is now
  1158. fixed. This affects `load', and the `-l' command-line flag. See
  1159. <http://bugs.gnu.org/12519> for details.
  1160. ** Extension search order fixed, and LD_LIBRARY_PATH preserved
  1161. Up to 2.0.6, Guile would modify the `LD_LIBRARY_PATH' environment
  1162. variable (or whichever is relevant for the host OS) to insert its own
  1163. default extension directories in the search path (using GNU libltdl
  1164. facilities was not possible here.) This approach was problematic in two
  1165. ways.
  1166. First, the `LD_LIBRARY_PATH' modification would be visible to
  1167. sub-processes, and would also affect future calls to `dlopen', which
  1168. could lead to subtle bugs in the application or sub-processes. Second,
  1169. when the installation prefix is /usr, the `LD_LIBRARY_PATH' modification
  1170. would typically end up inserting /usr/lib before /usr/local/lib in the
  1171. search path, which is often the opposite of system-wide settings such as
  1172. `ld.so.conf'.
  1173. Both issues have now been fixed.
  1174. ** `make-vtable-vtable' is now deprecated
  1175. Programs should instead use `make-vtable' and `<standard-vtable>'.
  1176. ** The `-Wduplicate-case-datum' and `-Wbad-case-datum' are enabled
  1177. These recently introduced warnings have been documented and are now
  1178. enabled by default when auto-compiling.
  1179. ** Optimize calls to `equal?' or `eqv?' with a constant argument
  1180. The compiler simplifies calls to `equal?' or `eqv?' with a constant
  1181. argument to use `eq?' instead, when applicable.
  1182. * Manual updates
  1183. ** SRFI-9 records now documented under "Compound Data Types"
  1184. The documentation of SRFI-9 record types has been moved in the "Compound
  1185. Data Types", next to Guile's other record APIs. A new section
  1186. introduces the various record APIs, and describes the trade-offs they
  1187. make. These changes were made in an attempt to better guide users
  1188. through the maze of records API, and to recommend SRFI-9 as the main
  1189. API.
  1190. The documentation of Guile's raw `struct' API has also been improved.
  1191. ** (ice-9 and-let-star) and (ice-9 curried-definitions) now documented
  1192. These modules were missing from the manual.
  1193. * New interfaces
  1194. ** New "functional record setters" as a GNU extension of SRFI-9
  1195. The (srfi srfi-9 gnu) module now provides three new macros to deal with
  1196. "updates" of immutable records: `define-immutable-record-type',
  1197. `set-field', and `set-fields'.
  1198. The first one allows record type "functional setters" to be defined;
  1199. such setters keep the record unchanged, and instead return a new record
  1200. with only one different field. The remaining macros provide the same
  1201. functionality, and also optimize updates of multiple or nested fields.
  1202. See the manual for details.
  1203. ** web: New `http-get*', `response-body-port', and `text-content-type?'
  1204. procedures
  1205. These procedures return a port from which to read the response's body.
  1206. Unlike `http-get' and `read-response-body', they allow the body to be
  1207. processed incrementally instead of being stored entirely in memory.
  1208. The `text-content-type?' predicate allows users to determine whether the
  1209. content type of a response is textual.
  1210. See the manual for details.
  1211. ** `string-split' accepts character sets and predicates
  1212. The `string-split' procedure can now be given a SRFI-14 character set or
  1213. a predicate, instead of just a character.
  1214. ** R6RS SRFI support
  1215. Previously, in R6RS modules, Guile incorrectly ignored components of
  1216. SRFI module names after the SRFI number, making it impossible to specify
  1217. sub-libraries. This release corrects this, bringing us into accordance
  1218. with SRFI 97.
  1219. ** `define-public' is no a longer curried definition by default
  1220. The (ice-9 curried-definitions) should be used for such uses. See the
  1221. manual for details.
  1222. * Build fixes
  1223. ** Remove reference to `scm_init_popen' when `fork' is unavailable
  1224. This fixes a MinGW build issue (http://bugs.gnu.org/12477).
  1225. ** Fix race between installing `guild' and the `guile-tools' symlink
  1226. * Bug fixes
  1227. ** Procedures returned by `eval' now have docstrings
  1228. (http://bugs.gnu.org/12173)
  1229. ** web client: correctly handle uri-query, etc. in relative URI headers
  1230. (http://bugs.gnu.org/12827)
  1231. ** Fix docs for R6RS `hashtable-copy'
  1232. ** R6RS `string-for-each' now accepts multiple string arguments
  1233. ** Fix out-of-range error in the compiler's CSE pass
  1234. (http://bugs.gnu.org/12883)
  1235. ** Add missing R6RS `open-file-input/output-port' procedure
  1236. ** Futures: Avoid creating the worker pool more than once
  1237. ** Fix invalid assertion about mutex ownership in threads.c
  1238. (http://bugs.gnu.org/12719)
  1239. ** Have `SCM_NUM2FLOAT' and `SCM_NUM2DOUBLE' use `scm_to_double'
  1240. ** The `scandir' procedure now uses `lstat' instead of `stat'
  1241. ** Fix `generalized-vector->list' indexing bug with shared arrays
  1242. (http://bugs.gnu.org/12465)
  1243. ** web: Change `http-get' to try all the addresses for the given URI
  1244. ** Implement `hash' for structs
  1245. (http://lists.gnu.org/archive/html/guile-devel/2012-10/msg00031.html)
  1246. ** `read' now adds source properties for data types beyond pairs
  1247. ** Improve error reporting in `append!'
  1248. ** In fold-matches, set regexp/notbol unless matching string start
  1249. ** Don't stat(2) and access(2) the .go location before using it
  1250. ** SRFI-19: use zero padding for hours in ISO 8601 format, not blanks
  1251. ** web: Fix uri-encoding for strings with no unreserved chars, and octets 0-15
  1252. ** More robust texinfo alias handling
  1253. ** Optimize `format' and `simple-format'
  1254. (http://bugs.gnu.org/12033)
  1255. ** Angle of -0.0 is pi, not zero
  1256. Changes in 2.0.6 (since 2.0.5):
  1257. * Notable changes
  1258. ** New optimization pass: common subexpression elimination (CSE)
  1259. Guile's optimizer will now run a CSE pass after partial evaluation.
  1260. This pass propagates static information about branches taken, bound
  1261. lexicals, and effects from an expression's dominators. It can replace
  1262. common subexpressions with their boolean values (potentially enabling
  1263. dead code elimination), equivalent bound lexicals, or it can elide them
  1264. entirely, depending on the context in which they are executed. This
  1265. pass is especially useful in removing duplicate type checks, such as
  1266. those produced by SRFI-9 record accessors.
  1267. ** Improvements to the partial evaluator
  1268. Peval can now hoist tests that are common to both branches of a
  1269. conditional into the test. This can help with long chains of
  1270. conditionals, such as those generated by the `match' macro. Peval can
  1271. now do simple beta-reductions of procedures with rest arguments. It
  1272. also avoids residualizing degenerate lexical aliases, even when full
  1273. inlining is not possible. Finally, peval now uses the effects analysis
  1274. introduced for the CSE pass. More precise effects analysis allows peval
  1275. to move more code.
  1276. ** Run finalizers asynchronously in asyncs
  1277. Finalizers are now run asynchronously, via an async. See Asyncs in the
  1278. manual. This allows Guile and user code to safely allocate memory while
  1279. holding a mutex.
  1280. ** Update SRFI-14 character sets to Unicode 6.1
  1281. Note that this update causes the Latin-1 characters `§' and `¶' to be
  1282. reclassified as punctuation. They were previously considered to be part
  1283. of `char-set:symbol'.
  1284. ** Better source information for datums
  1285. When the `positions' reader option is on, as it is by default, Guile's
  1286. reader will record source information for more kinds of datums.
  1287. ** Improved error and warning messages
  1288. `syntax-violation' errors now prefer `subform' for source info, with
  1289. `form' as fallback. Syntactic errors in `cond' and `case' now produce
  1290. better errors. `case' can now warn on duplicate datums, or datums that
  1291. cannot be usefully compared with `eqv?'. `-Warity-mismatch' now handles
  1292. applicable structs. `-Wformat' is more robust in the presence of
  1293. `gettext'. Finally, various exceptions thrown by the Web modules now
  1294. define appropriate exception printers.
  1295. ** A few important bug fixes in the HTTP modules.
  1296. Guile's web server framework now checks if an application returns a body
  1297. where it is not permitted, for example in response to a HEAD request,
  1298. and warn or truncate the response as appropriate. Bad requests now
  1299. cause a 400 Bad Request response to be printed before closing the port.
  1300. Finally, some date-printing and URL-parsing bugs were fixed.
  1301. ** Pretty-print improvements
  1302. When Guile needs to pretty-print Tree-IL, it will try to reconstruct
  1303. `cond', `or`, and other derived syntax forms from the primitive tree-IL
  1304. forms. It also uses the original names instead of the fresh unique
  1305. names, when it is unambiguous to do so. This can be seen in the output
  1306. of REPL commands like `,optimize'.
  1307. Also, the `pretty-print' procedure has a new keyword argument,
  1308. `#:max-expr-width'.
  1309. ** Fix memory leak involving applicable SMOBs
  1310. At some point in the 1.9.x series, Guile began leaking any applicable
  1311. SMOB that was actually applied. (There was a weak-key map from SMOB to
  1312. trampoline functions, where the value had a strong reference on the
  1313. key.) This has been fixed. There was much rejoicing!
  1314. ** Support for HTTP/1.1 chunked transfer coding
  1315. See "Transfer Codings" in the manual, for more.
  1316. ** Micro-optimizations
  1317. A pile of micro-optimizations: the `string-trim' function when called
  1318. with `char-set:whitespace'; the `(web http)' parsers; SMOB application;
  1319. conversion of raw UTF-8 and UTF-32 data to and from SCM strings; vlists
  1320. and vhashes; `read' when processing string literals.
  1321. ** Incompatible change to `scandir'
  1322. As was the original intention, `scandir' now runs the `select?'
  1323. procedure on all items, including subdirectories and the `.' and `..'
  1324. entries. It receives the basename of the file in question instead of
  1325. the full name. We apologize for this incompatible change to this
  1326. function introduced in the 2.0.4 release.
  1327. * Manual updates
  1328. The manual has been made much more consistent in its naming conventions
  1329. with regards to formal parameters of functions. Thanks to Bake Timmons.
  1330. * New interfaces
  1331. ** New C function: `scm_to_pointer'
  1332. ** New C inline functions: `scm_new_smob', `scm_new_double_smob'
  1333. ** (ice-9 format): Add ~h specifier for localized number output.
  1334. ** (web response): New procedure: `response-must-not-include-body?'
  1335. ** New predicate: 'supports-source-properties?'
  1336. ** New C helpers: `scm_c_values', `scm_c_nvalues'
  1337. ** Newly public inline C function: `scm_unget_byte'
  1338. ** (language tree-il): New functions: `tree-il=?', `tree-il-hash'
  1339. ** New fluid: `%default-port-conversion-strategy'
  1340. ** New syntax: `=>' within `case'
  1341. ** (web http): `make-chunked-input-port', `make-chunked-output-port'
  1342. ** (web http): `declare-opaque-header!'
  1343. Search the manual for these identifiers, for more information.
  1344. * New deprecations
  1345. ** `close-io-port' deprecated
  1346. Use `close-port'.
  1347. ** `scm_sym2var' deprecated
  1348. In most cases, replace with `scm_lookup' or `scm_module_variable'. Use
  1349. `scm_define' or `scm_module_ensure_local_variable' if the second
  1350. argument is nonzero. See "Accessing Modules from C" in the manual, for
  1351. full details.
  1352. ** Lookup closures deprecated
  1353. These were never documented. See "Module System Reflection" in the
  1354. manual for replacements.
  1355. * Build fixes
  1356. ** Fix compilation against uninstalled Guile on non-GNU platforms.
  1357. ** Fix `SCM_I_ERROR' definition for MinGW without networking.
  1358. ** Fix compilation with the Sun C compiler.
  1359. ** Fix check for `clock_gettime' on OpenBSD and some other systems.
  1360. ** Fix build with --enable-debug-malloc.
  1361. ** Honor $(program_transform_name) for the `guile-tools' symlink.
  1362. ** Fix cross-compilation of GOOPS-using code.
  1363. * Bug fixes
  1364. ** Fix use of unitialized stat buffer in search-path of absolute paths.
  1365. ** Avoid calling `freelocale' with a NULL argument.
  1366. ** Work around erroneous tr_TR locale in Darwin 8 in tests.
  1367. ** Fix `getaddrinfo' test for Darwin 8.
  1368. ** Use Gnulib's `regex' module for better regex portability.
  1369. ** `source-properties' and friends work on any object
  1370. ** Rewrite open-process in C, for robustness related to threads and fork
  1371. ** Fix <TAG>vector-length when applied to other uniform vector types
  1372. ** Fix escape-only prompt optimization (was disabled previously)
  1373. ** Fix a segfault when /dev/urandom is not accessible
  1374. ** Fix flush on soft ports, so that it actually runs.
  1375. ** Better compatibility of SRFI-9 records with core records
  1376. ** Fix and clarify documentation of `sorted?'.
  1377. ** Fix IEEE-754 endianness conversion in bytevectors.
  1378. ** Correct thunk check in the `wind' instruction.
  1379. ** Add @acronym support to texinfo modules
  1380. ** Fix docbook->texi for <ulink> without URL
  1381. ** Fix `setvbuf' to leave the line/column number unchanged.
  1382. ** Add missing public declaration for `scm_take_from_input_buffers'.
  1383. ** Fix relative file name canonicalization with empty %LOAD-PATH entries.
  1384. ** Import newer (ice-9 match) from Chibi-Scheme.
  1385. ** Fix unbound variables and unbound values in ECMAScript runtime.
  1386. ** Make SRFI-6 string ports Unicode-capable.
  1387. Changes in 2.0.5 (since 2.0.4):
  1388. This release fixes the binary interface information (SONAME) of
  1389. libguile, which was incorrect in 2.0.4. It does not contain other
  1390. changes.
  1391. Changes in 2.0.4 (since 2.0.3):
  1392. * Notable changes
  1393. ** Better debuggability for interpreted procedures.
  1394. Guile 2.0 came with a great debugging experience for compiled
  1395. procedures, but the story for interpreted procedures was terrible. Now,
  1396. at least, interpreted procedures have names, and the `arity' procedure
  1397. property is always correct (or, as correct as it can be, in the presence
  1398. of `case-lambda').
  1399. ** Support for cross-compilation.
  1400. One can now use a native Guile to cross-compile `.go' files for a
  1401. different architecture. See the documentation for `--target' in the
  1402. "Compilation" section of the manual, for information on how to use the
  1403. cross-compiler. See the "Cross building Guile" section of the README,
  1404. for more on how to cross-compile Guile itself.
  1405. ** The return of `local-eval'.
  1406. Back by popular demand, `the-environment' and `local-eval' allow the
  1407. user to capture a lexical environment, and then evaluate arbitrary
  1408. expressions in that context. There is also a new `local-compile'
  1409. command. See "Local Evaluation" in the manual, for more. Special
  1410. thanks to Mark Weaver for an initial implementation of this feature.
  1411. ** Fluids can now have default values.
  1412. Fluids are used for dynamic and thread-local binding. They have always
  1413. inherited their values from the context or thread that created them.
  1414. However, there was a case in which a new thread would enter Guile, and
  1415. the default values of all the fluids would be `#f' for that thread.
  1416. This has now been fixed so that `make-fluid' has an optional default
  1417. value for fluids in unrelated dynamic roots, which defaults to `#f'.
  1418. ** Garbage collector tuning.
  1419. The garbage collector has now been tuned to run more often under some
  1420. circumstances.
  1421. *** Unmanaged allocation
  1422. The new `scm_gc_register_allocation' function will notify the collector
  1423. of unmanaged allocation. This will cause the collector to run sooner.
  1424. Guile's `scm_malloc', `scm_calloc', and `scm_realloc' unmanaged
  1425. allocators eventually call this function. This leads to better
  1426. performance under steady-state unmanaged allocation.
  1427. *** Transient allocation
  1428. When the collector runs, it will try to record the total memory
  1429. footprint of a process, if the platform supports this information. If
  1430. the memory footprint is growing, the collector will run more frequently.
  1431. This reduces the increase of the resident size of a process in response
  1432. to a transient increase in allocation.
  1433. *** Management of threads, bignums
  1434. Creating a thread will allocate a fair amount of memory. Guile now does
  1435. some GC work (using `GC_collect_a_little') when allocating a thread.
  1436. This leads to a better memory footprint when creating many short-lived
  1437. threads.
  1438. Similarly, bignums can occupy a lot of memory. Guile now offers hooks
  1439. to enable custom GMP allocators that end up calling
  1440. `scm_gc_register_allocation'. These allocators are enabled by default
  1441. when running Guile from the command-line. To enable them in libraries,
  1442. set the `scm_install_gmp_memory_functions' variable to a nonzero value
  1443. before loading Guile.
  1444. ** SRFI-39 parameters are available by default.
  1445. Guile now includes support for parameters, as defined by SRFI-39, in the
  1446. default environment. See "Parameters" in the manual, for more
  1447. information. `current-input-port', `current-output-port', and
  1448. `current-error-port' are now parameters.
  1449. ** Add `current-warning-port'.
  1450. Guile now outputs warnings on a separate port, `current-warning-port',
  1451. initialized to the value that `current-error-port' has on startup.
  1452. ** Syntax parameters.
  1453. Following Racket's lead, Guile now supports syntax parameters. See
  1454. "Syntax parameters" in the manual, for more.
  1455. Also see Barzilay, Culpepper, and Flatt's 2011 SFP workshop paper,
  1456. "Keeping it Clean with syntax-parameterize".
  1457. ** Parse command-line arguments from the locale encoding.
  1458. Guile now attempts to parse command-line arguments using the user's
  1459. locale. However for backwards compatibility with other 2.0.x releases,
  1460. it does so without actually calling `setlocale'. Please report any bugs
  1461. in this facility to bug-guile@gnu.org.
  1462. ** One-armed conditionals: `when' and `unless'
  1463. Guile finally has `when' and `unless' in the default environment. Use
  1464. them whenever you would use an `if' with only one branch. See
  1465. "Conditionals" in the manual, for more.
  1466. ** `current-filename', `add-to-load-path'
  1467. There is a new form, `(current-filename)', which expands out to the
  1468. source file in which it occurs. Combined with the new
  1469. `add-to-load-path', this allows simple scripts to easily add nearby
  1470. directories to the load path. See "Load Paths" in the manual, for more.
  1471. ** `random-state-from-platform'
  1472. This procedure initializes a random seed using good random sources
  1473. available on your platform, such as /dev/urandom. See "Random Number
  1474. Generation" in the manual, for more.
  1475. ** Warn about unsupported `simple-format' options.
  1476. The `-Wformat' compilation option now reports unsupported format options
  1477. passed to `simple-format'.
  1478. ** Manual updates
  1479. Besides the sections already mentioned, the following manual sections
  1480. are new in this release: "Modules and the File System", "Module System
  1481. Reflection", "Syntax Transformer Helpers", and "Local Inclusion".
  1482. * New interfaces
  1483. ** (ice-9 session): `apropos-hook'
  1484. ** New print option: `escape-newlines', defaults to #t.
  1485. ** (ice-9 ftw): `file-system-fold', `file-system-tree', `scandir'
  1486. ** `scm_c_value_ref': access to multiple returned values from C
  1487. ** scm_call (a varargs version), scm_call_7, scm_call_8, scm_call_9
  1488. ** Some new syntax helpers in (system syntax)
  1489. Search the manual for these identifiers and modules, for more.
  1490. * Build fixes
  1491. ** FreeBSD build fixes.
  1492. ** OpenBSD compilation fixes.
  1493. ** Solaris 2.10 test suite fixes.
  1494. ** IA64 compilation fix.
  1495. ** MinGW build fixes.
  1496. ** Work around instruction reordering on SPARC and HPPA in the VM.
  1497. ** Gnulib updates: added `dirfd', `setenv' modules.
  1498. * Bug fixes
  1499. ** Add a deprecated alias for $expt.
  1500. ** Add an exception printer for `getaddrinfo-error'.
  1501. ** Add deprecated shim for `scm_display_error' with stack as first argument.
  1502. ** Add warnings for unsupported `simple-format' options.
  1503. ** Allow overlapping regions to be passed to `bytevector-copy!'.
  1504. ** Better function prologue disassembly
  1505. ** Compiler: fix miscompilation of (values foo ...) in some contexts.
  1506. ** Compiler: fix serialization of #nil-terminated lists.
  1507. ** Compiler: allow values bound in non-tail let expressions to be collected.
  1508. ** Deprecate SCM_ASRTGO.
  1509. ** Document invalidity of (begin) as expression; add back-compat shim.
  1510. ** Don't leak file descriptors when mmaping objcode.
  1511. ** Empty substrings no longer reference the original stringbuf.
  1512. ** FFI: Fix `set-pointer-finalizer!' to leave the type cell unchanged.
  1513. ** FFI: Hold a weak reference to the CIF made by `procedure->pointer'.
  1514. ** FFI: Hold a weak reference to the procedure passed to `procedure->pointer'.
  1515. ** FFI: Properly unpack small integer return values in closure call.
  1516. ** Fix R6RS `fold-left' so the accumulator is the first argument.
  1517. ** Fix bit-set*! bug from 2005.
  1518. ** Fix bug in `make-repl' when `lang' is actually a <language>.
  1519. ** Fix bugs related to mutation, the null string, and shared substrings.
  1520. ** Fix <dynwind> serialization.
  1521. ** Fix erroneous check in `set-procedure-properties!'.
  1522. ** Fix generalized-vector-{ref,set!} for slices.
  1523. ** Fix error messages involving definition forms.
  1524. ** Fix primitive-eval to return #<unspecified> for definitions.
  1525. ** HTTP: Extend handling of "Cache-Control" header.
  1526. ** HTTP: Fix qstring writing of cache-extension values
  1527. ** HTTP: Fix validators for various list-style headers.
  1528. ** HTTP: Permit non-date values for Expires header.
  1529. ** HTTP: `write-request-line' writes absolute paths, not absolute URIs.
  1530. ** Hack the port-column of current-output-port after printing a prompt.
  1531. ** Make sure `regexp-quote' tests use Unicode-capable string ports.
  1532. ** Peval: Fix bugs in the new optimizer.
  1533. ** Statistically unique marks and labels, for robust hygiene across sessions.
  1534. ** Web: Allow URIs with empty authorities, like "file:///etc/hosts".
  1535. ** `,language' at REPL sets the current-language fluid.
  1536. ** `primitive-load' returns the value(s) of the last expression.
  1537. ** `scm_from_stringn' always returns unique strings.
  1538. ** `scm_i_substring_copy' tries to narrow the substring.
  1539. ** i18n: Fix gc_malloc/free mismatch on non-GNU systems.
  1540. Changes in 2.0.3 (since 2.0.2):
  1541. * Speed improvements
  1542. ** Guile has a new optimizer, `peval'.
  1543. `Peval' is a partial evaluator that performs constant folding, dead code
  1544. elimination, copy propagation, and inlining. By default it runs on
  1545. every piece of code that Guile compiles, to fold computations that can
  1546. happen at compile-time, so they don't have to happen at runtime.
  1547. If we did our job right, the only impact you would see would be your
  1548. programs getting faster. But if you notice slowdowns or bloated code,
  1549. please send a mail to bug-guile@gnu.org with details.
  1550. Thanks to William R. Cook, Oscar Waddell, and Kent Dybvig for inspiring
  1551. peval and its implementation.
  1552. You can see what peval does on a given piece of code by running the new
  1553. `,optimize' REPL meta-command, and comparing it to the output of
  1554. `,expand'. See "Compile Commands" in the manual, for more.
  1555. ** Fewer calls to `stat'.
  1556. Guile now stats only the .go file and the .scm file when loading a fresh
  1557. compiled file.
  1558. * Notable changes
  1559. ** New module: `(web client)', a simple synchronous web client.
  1560. See "Web Client" in the manual, for more.
  1561. ** Users can now install compiled `.go' files.
  1562. See "Installing Site Packages" in the manual.
  1563. ** Remove Front-Cover and Back-Cover text from the manual.
  1564. The manual is still under the GNU Free Documentation License, but no
  1565. longer has any invariant sections.
  1566. ** More helpful `guild help'.
  1567. `guild' is Guile's multi-tool, for use in shell scripting. Now it has a
  1568. nicer interface for querying the set of existing commands, and getting
  1569. help on those commands. Try it out and see!
  1570. ** New macro: `define-syntax-rule'
  1571. `define-syntax-rule' is a shorthand to make a `syntax-rules' macro with
  1572. one clause. See "Syntax Rules" in the manual, for more.
  1573. ** The `,time' REPL meta-command now has more precision.
  1574. The output of this command now has microsecond precision, instead of
  1575. 10-millisecond precision.
  1576. ** `(ice-9 match)' can now match records.
  1577. See "Pattern Matching" in the manual, for more on matching records.
  1578. ** New module: `(language tree-il debug)'.
  1579. This module provides a tree-il verifier. This is useful for people that
  1580. generate tree-il, usually as part of a language compiler.
  1581. ** New functions: `scm_is_exact', `scm_is_inexact'.
  1582. These provide a nice C interface for Scheme's `exact?' and `inexact?',
  1583. respectively.
  1584. * Bugs fixed
  1585. See the git log (or the ChangeLog) for more details on these bugs.
  1586. ** Fix order of importing modules and resolving duplicates handlers.
  1587. ** Fix a number of bugs involving extended (merged) generics.
  1588. ** Fix invocation of merge-generics duplicate handler.
  1589. ** Fix write beyond array end in arrays.c.
  1590. ** Fix read beyond end of hashtable size array in hashtab.c.
  1591. ** (web http): Locale-independent parsing and serialization of dates.
  1592. ** Ensure presence of Host header in HTTP/1.1 requests.
  1593. ** Fix take-right and drop-right for improper lists.
  1594. ** Fix leak in get_current_locale().
  1595. ** Fix recursive define-inlinable expansions.
  1596. ** Check that srfi-1 procedure arguments are procedures.
  1597. ** Fix r6rs `map' for multiple returns.
  1598. ** Fix scm_tmpfile leak on POSIX platforms.
  1599. ** Fix a couple of leaks (objcode->bytecode, make-boot-program).
  1600. ** Fix guile-lib back-compatibility for module-stexi-documentation.
  1601. ** Fix --listen option to allow other ports.
  1602. ** Fix scm_to_latin1_stringn for substrings.
  1603. ** Fix compilation of untyped arrays of rank not 1.
  1604. ** Fix unparse-tree-il of <dynset>.
  1605. ** Fix reading of #||||#.
  1606. ** Fix segfault in GOOPS when class fields are redefined.
  1607. ** Prefer poll(2) over select(2) to allow file descriptors above FD_SETSIZE.
  1608. Changes in 2.0.2 (since 2.0.1):
  1609. * Notable changes
  1610. ** `guile-tools' renamed to `guild'
  1611. The new name is shorter. Its intended future use is for a CPAN-like
  1612. system for Guile wizards and journeyfolk to band together to share code;
  1613. hence the name. `guile-tools' is provided as a backward-compatible
  1614. symbolic link. See "Using Guile Tools" in the manual, for more.
  1615. ** New control operators: `shift' and `reset'
  1616. See "Shift and Reset" in the manual, for more information.
  1617. ** `while' as an expression
  1618. Previously the return value of `while' was unspecified. Now its
  1619. values are specified both in the case of normal termination, and via
  1620. termination by invoking `break', possibly with arguments. See "while
  1621. do" in the manual for more.
  1622. ** Disallow access to handles of weak hash tables
  1623. `hash-get-handle' and `hash-create-handle!' are no longer permitted to
  1624. be called on weak hash tables, because the fields in a weak handle could
  1625. be nulled out by the garbage collector at any time, but yet they are
  1626. otherwise indistinguishable from pairs. Use `hash-ref' and `hash-set!'
  1627. instead.
  1628. ** More precision for `get-internal-run-time', `get-internal-real-time'
  1629. On 64-bit systems which support POSIX clocks, Guile's internal timing
  1630. procedures offer nanosecond resolution instead of the 10-millisecond
  1631. resolution previously available. 32-bit systems now use 1-millisecond
  1632. timers.
  1633. ** Guile now measures time spent in GC
  1634. `gc-stats' now returns a meaningful value for `gc-time-taken'.
  1635. ** Add `gcprof'
  1636. The statprof profiler now exports a `gcprof' procedure, driven by the
  1637. `after-gc-hook', to see which parts of your program are causing GC. Let
  1638. us know if you find it useful.
  1639. ** `map', `for-each' and some others now implemented in Scheme
  1640. We would not mention this in NEWS, as it is not a user-visible change,
  1641. if it were not for one thing: `map' and `for-each' are no longer
  1642. primitive generics. Instead they are normal bindings, which can be
  1643. wrapped by normal generics. This fixes some modularity issues between
  1644. core `map', SRFI-1 `map', and GOOPS.
  1645. Also it's pretty cool that we can do this without a performance impact.
  1646. ** Add `scm_peek_byte_or_eof'.
  1647. This helper is like `scm_peek_char_or_eof', but for bytes instead of
  1648. full characters.
  1649. ** Implement #:stop-at-first-non-option option for getopt-long
  1650. See "getopt-long Reference" in the manual, for more information.
  1651. ** Improve R6RS conformance for conditions in the I/O libraries
  1652. The `(rnrs io simple)' module now raises the correct R6RS conditions in
  1653. error cases. `(rnrs io ports)' is also more correct now, though it is
  1654. still a work in progress.
  1655. ** All deprecated routines emit warnings
  1656. A few deprecated routines were lacking deprecation warnings. This has
  1657. been fixed now.
  1658. * Speed improvements
  1659. ** Constants in compiled code now share state better
  1660. Constants with shared state, like `("foo")' and `"foo"', now share state
  1661. as much as possible, in the entire compilation unit. This cuts compiled
  1662. `.go' file sizes in half, generally, and speeds startup.
  1663. ** VLists: optimize `vlist-fold-right', and add `vhash-fold-right'
  1664. These procedures are now twice as fast as they were.
  1665. ** UTF-8 ports to bypass `iconv' entirely
  1666. This reduces memory usage in a very common case.
  1667. ** Compiler speedups
  1668. The compiler is now about 40% faster. (Note that this is only the case
  1669. once the compiler is itself compiled, so the build still takes as long
  1670. as it did before.)
  1671. ** VM speed tuning
  1672. Some assertions that were mostly useful for sanity-checks on the
  1673. bytecode compiler are now off for both "regular" and "debug" engines.
  1674. This together with a fix to cache a TLS access and some other tweaks
  1675. improve the VM's performance by about 20%.
  1676. ** SRFI-1 list-set optimizations
  1677. lset-adjoin and lset-union now have fast paths for eq? sets.
  1678. ** `memq', `memv' optimizations
  1679. These procedures are now at least twice as fast than in 2.0.1.
  1680. * Deprecations
  1681. ** Deprecate scm_whash API
  1682. `scm_whash_get_handle', `SCM_WHASHFOUNDP', `SCM_WHASHREF',
  1683. `SCM_WHASHSET', `scm_whash_create_handle', `scm_whash_lookup', and
  1684. `scm_whash_insert' are now deprecated. Use the normal hash table API
  1685. instead.
  1686. ** Deprecate scm_struct_table
  1687. `SCM_STRUCT_TABLE_NAME', `SCM_SET_STRUCT_TABLE_NAME',
  1688. `SCM_STRUCT_TABLE_CLASS', `SCM_SET_STRUCT_TABLE_CLASS',
  1689. `scm_struct_table', and `scm_struct_create_handle' are now deprecated.
  1690. These routines formed part of the internals of the map between structs
  1691. and classes.
  1692. ** Deprecate scm_internal_dynamic_wind
  1693. The `scm_t_inner' type and `scm_internal_dynamic_wind' are deprecated,
  1694. as the `scm_dynwind' API is better, and this API encourages users to
  1695. stuff SCM values into pointers.
  1696. ** Deprecate scm_immutable_cell, scm_immutable_double_cell
  1697. These routines are deprecated, as the GC_STUBBORN API doesn't do
  1698. anything any more.
  1699. * Manual updates
  1700. Andreas Rottman kindly transcribed the missing parts of the `(rnrs io
  1701. ports)' documentation from the R6RS documentation. Thanks Andreas!
  1702. * Bugs fixed
  1703. ** Fix double-loading of script in -ds case
  1704. ** -x error message fix
  1705. ** iconveh-related cross-compilation fixes
  1706. ** Fix small integer return value packing on big endian machines.
  1707. ** Fix hash-set! in weak-value table from non-immediate to immediate
  1708. ** Fix call-with-input-file & relatives for multiple values
  1709. ** Fix `hash' for inf and nan
  1710. ** Fix libguile internal type errors caught by typing-strictness==2
  1711. ** Fix compile error in MinGW fstat socket detection
  1712. ** Fix generation of auto-compiled file names on MinGW
  1713. ** Fix multithreaded access to internal hash tables
  1714. ** Emit a 1-based line number in error messages
  1715. ** Fix define-module ordering
  1716. ** Fix several POSIX functions to use the locale encoding
  1717. ** Add type and range checks to the complex generalized vector accessors
  1718. ** Fix unaligned accesses for bytevectors of complex numbers
  1719. ** Fix '(a #{.} b)
  1720. ** Fix erroneous VM stack overflow for canceled threads
  1721. Changes in 2.0.1 (since 2.0.0):
  1722. * Notable changes
  1723. ** guile.m4 supports linking with rpath
  1724. The GUILE_FLAGS macro now sets GUILE_LIBS and GUILE_LTLIBS, which
  1725. include appropriate directives to the linker to include libguile-2.0.so
  1726. in the runtime library lookup path.
  1727. ** `begin' expands macros in its body before other expressions
  1728. This enables support for programs like the following:
  1729. (begin
  1730. (define even?
  1731. (lambda (x)
  1732. (or (= x 0) (odd? (- x 1)))))
  1733. (define-syntax odd?
  1734. (syntax-rules ()
  1735. ((odd? x) (not (even? x)))))
  1736. (even? 10))
  1737. ** REPL reader usability enhancements
  1738. The REPL now flushes input after a read error, which should prevent one
  1739. error from causing other errors. The REPL also now interprets comments
  1740. as whitespace.
  1741. ** REPL output has configurable width
  1742. The REPL now defaults to output with the current terminal's width, in
  1743. columns. See "Debug Commands" in the manual for more information on
  1744. the ,width command.
  1745. ** Better C access to the module system
  1746. Guile now has convenient C accessors to look up variables or values in
  1747. modules and their public interfaces. See `scm_c_public_ref' and friends
  1748. in "Accessing Modules from C" in the manual.
  1749. ** Added `scm_call_5', `scm_call_6'
  1750. See "Fly Evaluation" in the manual.
  1751. ** Added `scm_from_latin1_keyword', `scm_from_utf8_keyword'
  1752. See "Keyword Procedures" in the manual, for more. Note that
  1753. `scm_from_locale_keyword' should not be used when the name is a C string
  1754. constant.
  1755. ** R6RS unicode and string I/O work
  1756. Added efficient implementations of `get-string-n' and `get-string-n!'
  1757. for binary ports. Exported `current-input-port', `current-output-port'
  1758. and `current-error-port' from `(rnrs io ports)', and enhanced support
  1759. for transcoders.
  1760. ** Added `pointer->scm', `scm->pointer' to `(system foreign)'
  1761. These procedure are useful if one needs to pass and receive SCM values
  1762. to and from foreign functions. See "Foreign Variables" in the manual,
  1763. for more.
  1764. ** Added `heap-allocated-since-gc' to `(gc-stats)'
  1765. Also fixed the long-standing bug in the REPL `,stat' command.
  1766. ** Add `on-error' REPL option
  1767. This option controls what happens when an error occurs at the REPL, and
  1768. defaults to `debug', indicating that Guile should enter the debugger.
  1769. Other values include `report', which will simply print a backtrace
  1770. without entering the debugger. See "System Commands" in the manual.
  1771. ** Enforce immutability of string literals
  1772. Attempting to mutate a string literal now causes a runtime error.
  1773. ** Fix pthread redirection
  1774. Guile 2.0.0 shipped with headers that, if configured with pthread
  1775. support, would re-define `pthread_create', `pthread_join', and other API
  1776. to redirect to the BDW-GC wrappers, `GC_pthread_create', etc. This was
  1777. unintended, and not necessary: because threads must enter Guile with
  1778. `scm_with_guile', Guile can handle thread registration itself, without
  1779. needing to make the GC aware of all threads. This oversight has been
  1780. fixed.
  1781. ** `with-continuation-barrier' now unwinds on `quit'
  1782. A throw to `quit' in a continuation barrier will cause Guile to exit.
  1783. Before, it would do so before unwinding to the barrier, which would
  1784. prevent cleanup handlers from running. This has been fixed so that it
  1785. exits only after unwinding.
  1786. ** `string->pointer' and `pointer->string' have optional encoding arg
  1787. This allows users of the FFI to more easily deal in strings with
  1788. particular (non-locale) encodings, like "utf-8". See "Void Pointers and
  1789. Byte Access" in the manual, for more.
  1790. ** R6RS fixnum arithmetic optimizations
  1791. R6RS fixnum operations are are still slower than generic arithmetic,
  1792. however.
  1793. ** New procedure: `define-inlinable'
  1794. See "Inlinable Procedures" in the manual, for more.
  1795. ** New procedure: `exact-integer-sqrt'
  1796. See "Integer Operations" in the manual, for more.
  1797. ** "Extended read syntax" for symbols parses better
  1798. In #{foo}# symbols, backslashes are now treated as escapes, as the
  1799. symbol-printing code intended. Additionally, "\x" within #{foo}# is now
  1800. interpreted as starting an R6RS hex escape. This is backward compatible
  1801. because the symbol printer would never produce a "\x" before. The
  1802. printer also works better too.
  1803. ** Added `--fresh-auto-compile' option
  1804. This allows a user to invalidate the auto-compilation cache. It's
  1805. usually not needed. See "Compilation" in the manual, for a discussion.
  1806. * Manual updates
  1807. ** GOOPS documentation updates
  1808. ** New man page
  1809. Thanks to Mark Harig for improvements to guile.1.
  1810. ** SRFI-23 documented
  1811. The humble `error' SRFI now has an entry in the manual.
  1812. * New modules
  1813. ** `(ice-9 binary-ports)': "R6RS I/O Ports", in the manual
  1814. ** `(ice-9 eval-string)': "Fly Evaluation", in the manual
  1815. ** `(ice-9 command-line)', not documented yet
  1816. * Bugs fixed
  1817. ** Fixed `iconv_t' memory leak on close-port
  1818. ** Fixed some leaks with weak hash tables
  1819. ** Export `vhash-delq' and `vhash-delv' from `(ice-9 vlist)'
  1820. ** `after-gc-hook' works again
  1821. ** `define-record-type' now allowed in nested contexts
  1822. ** `exact-integer-sqrt' now handles large integers correctly
  1823. ** Fixed C extension examples in manual
  1824. ** `vhash-delete' honors HASH argument
  1825. ** Make `locale-digit-grouping' more robust
  1826. ** Default exception printer robustness fixes
  1827. ** Fix presence of non-I CPPFLAGS in `guile-2.0.pc'
  1828. ** `read' updates line/column numbers when reading SCSH block comments
  1829. ** Fix imports of multiple custom interfaces of same module
  1830. ** Fix encoding scanning for non-seekable ports
  1831. ** Fix `setter' when called with a non-setter generic
  1832. ** Fix f32 and f64 bytevectors to not accept rationals
  1833. ** Fix description of the R6RS `finite?' in manual
  1834. ** Quotient, remainder and modulo accept inexact integers again
  1835. ** Fix `continue' within `while' to take zero arguments
  1836. ** Fix alignment for structures in FFI
  1837. ** Fix port-filename of stdin, stdout, stderr to match the docs
  1838. ** Fix weak hash table-related bug in `define-wrapped-pointer-type'
  1839. ** Fix partial continuation application with pending procedure calls
  1840. ** scm_{to,from}_locale_string use current locale, not current ports
  1841. ** Fix thread cleanup, by using a pthread_key destructor
  1842. ** Fix `quit' at the REPL
  1843. ** Fix a failure to sync regs in vm bytevector ops
  1844. ** Fix (texinfo reflection) to handle nested structures like syntax patterns
  1845. ** Fix stexi->html double translation
  1846. ** Fix tree-il->scheme fix for <prompt>
  1847. ** Fix compilation of <prompt> in <fix> in single-value context
  1848. ** Fix race condition in ensure-writable-dir
  1849. ** Fix error message on ,disassemble "non-procedure"
  1850. ** Fix prompt and abort with the boot evaluator
  1851. ** Fix `procedure->pointer' for functions returning `void'
  1852. ** Fix error reporting in dynamic-pointer
  1853. ** Fix problems detecting coding: in block comments
  1854. ** Fix duplicate load-path and load-compiled-path in compilation environment
  1855. ** Add fallback read(2) suppport for .go files if mmap(2) unavailable
  1856. ** Fix c32vector-set!, c64vector-set!
  1857. ** Fix mistakenly deprecated read syntax for uniform complex vectors
  1858. ** Fix parsing of exact numbers with negative exponents
  1859. ** Ignore SIGPIPE in (system repl server)
  1860. ** Fix optional second arg to R6RS log function
  1861. ** Fix R6RS `assert' to return true value.
  1862. ** Fix fencepost error when seeking in bytevector input ports
  1863. ** Gracefully handle `setlocale' errors when starting the REPL
  1864. ** Improve support of the `--disable-posix' configure option
  1865. ** Make sure R6RS binary ports pass `binary-port?' regardless of the locale
  1866. ** Gracefully handle unterminated UTF-8 sequences instead of hitting an `assert'
  1867. Changes in 2.0.0 (changes since the 1.8.x series):
  1868. * New modules (see the manual for details)
  1869. ** `(srfi srfi-18)', more sophisticated multithreading support
  1870. ** `(srfi srfi-27)', sources of random bits
  1871. ** `(srfi srfi-38)', External Representation for Data With Shared Structure
  1872. ** `(srfi srfi-42)', eager comprehensions
  1873. ** `(srfi srfi-45)', primitives for expressing iterative lazy algorithms
  1874. ** `(srfi srfi-67)', compare procedures
  1875. ** `(ice-9 i18n)', internationalization support
  1876. ** `(ice-9 futures)', fine-grain parallelism
  1877. ** `(rnrs bytevectors)', the R6RS bytevector API
  1878. ** `(rnrs io ports)', a subset of the R6RS I/O port API
  1879. ** `(system xref)', a cross-referencing facility (FIXME undocumented)
  1880. ** `(ice-9 vlist)', lists with constant-time random access; hash lists
  1881. ** `(system foreign)', foreign function interface
  1882. ** `(sxml match)', a pattern matcher for SXML
  1883. ** `(srfi srfi-9 gnu)', extensions to the SRFI-9 record library
  1884. ** `(system vm coverage)', a line-by-line code coverage library
  1885. ** `(web uri)', URI data type, parser, and unparser
  1886. ** `(web http)', HTTP header parsers and unparsers
  1887. ** `(web request)', HTTP request data type, reader, and writer
  1888. ** `(web response)', HTTP response data type, reader, and writer
  1889. ** `(web server)', Generic HTTP server
  1890. ** `(ice-9 poll)', a poll wrapper
  1891. ** `(web server http)', HTTP-over-TCP web server implementation
  1892. ** Replaced `(ice-9 match)' with Alex Shinn's compatible, hygienic matcher.
  1893. Guile's copy of Andrew K. Wright's `match' library has been replaced by
  1894. a compatible hygienic implementation by Alex Shinn. It is now
  1895. documented, see "Pattern Matching" in the manual.
  1896. Compared to Andrew K. Wright's `match', the new `match' lacks
  1897. `match-define', `match:error-control', `match:set-error-control',
  1898. `match:error', `match:set-error', and all structure-related procedures.
  1899. ** Imported statprof, SSAX, and texinfo modules from Guile-Lib
  1900. The statprof statistical profiler, the SSAX XML toolkit, and the texinfo
  1901. toolkit from Guile-Lib have been imported into Guile proper. See
  1902. "Standard Library" in the manual for more details.
  1903. ** Integration of lalr-scm, a parser generator
  1904. Guile has included Dominique Boucher's fine `lalr-scm' parser generator
  1905. as `(system base lalr)'. See "LALR(1) Parsing" in the manual, for more
  1906. information.
  1907. * Changes to the stand-alone interpreter
  1908. ** Guile now can compile Scheme to bytecode for a custom virtual machine.
  1909. Compiled code loads much faster than Scheme source code, and runs around
  1910. 3 or 4 times as fast, generating much less garbage in the process.
  1911. ** Evaluating Scheme code does not use the C stack.
  1912. Besides when compiling Guile itself, Guile no longer uses a recursive C
  1913. function as an evaluator. This obviates the need to check the C stack
  1914. pointer for overflow. Continuations still capture the C stack, however.
  1915. ** New environment variables: GUILE_LOAD_COMPILED_PATH,
  1916. GUILE_SYSTEM_LOAD_COMPILED_PATH
  1917. GUILE_LOAD_COMPILED_PATH is for compiled files what GUILE_LOAD_PATH is
  1918. for source files. It is a different path, however, because compiled
  1919. files are architecture-specific. GUILE_SYSTEM_LOAD_COMPILED_PATH is like
  1920. GUILE_SYSTEM_PATH.
  1921. ** New read-eval-print loop (REPL) implementation
  1922. Running Guile with no arguments drops the user into the new REPL. See
  1923. "Using Guile Interactively" in the manual, for more information.
  1924. ** Remove old Emacs interface
  1925. Guile had an unused `--emacs' command line argument that was supposed to
  1926. help when running Guile inside Emacs. This option has been removed, and
  1927. the helper functions `named-module-use!' and `load-emacs-interface' have
  1928. been deprecated.
  1929. ** Add `(system repl server)' module and `--listen' command-line argument
  1930. The `(system repl server)' module exposes procedures to listen on
  1931. sockets for connections, and serve REPLs to those clients. The --listen
  1932. command-line argument allows any Guile program to thus be remotely
  1933. debuggable.
  1934. See "Invoking Guile" for more information on `--listen'.
  1935. ** Command line additions
  1936. The guile binary now supports a new switch "-x", which can be used to
  1937. extend the list of filename extensions tried when loading files
  1938. (%load-extensions).
  1939. ** New reader options: `square-brackets', `r6rs-hex-escapes',
  1940. `hungry-eol-escapes'
  1941. The reader supports a new option (changeable via `read-options'),
  1942. `square-brackets', which instructs it to interpret square brackets as
  1943. parentheses. This option is on by default.
  1944. When the new `r6rs-hex-escapes' reader option is enabled, the reader
  1945. will recognize string escape sequences as defined in R6RS. R6RS string
  1946. escape sequences are incompatible with Guile's existing escapes, though,
  1947. so this option is off by default.
  1948. Additionally, Guile follows the R6RS newline escaping rules when the
  1949. `hungry-eol-escapes' option is enabled.
  1950. See "String Syntax" in the manual, for more information.
  1951. ** Function profiling and tracing at the REPL
  1952. The `,profile FORM' REPL meta-command can now be used to statistically
  1953. profile execution of a form, to see which functions are taking the most
  1954. time. See `,help profile' for more information.
  1955. Similarly, `,trace FORM' traces all function applications that occur
  1956. during the execution of `FORM'. See `,help trace' for more information.
  1957. ** Recursive debugging REPL on error
  1958. When Guile sees an error at the REPL, instead of saving the stack, Guile
  1959. will directly enter a recursive REPL in the dynamic context of the
  1960. error. See "Error Handling" in the manual, for more information.
  1961. A recursive REPL is the same as any other REPL, except that it
  1962. has been augmented with debugging information, so that one can inspect
  1963. the context of the error. The debugger has been integrated with the REPL
  1964. via a set of debugging meta-commands.
  1965. For example, one may access a backtrace with `,backtrace' (or
  1966. `,bt'). See "Interactive Debugging" in the manual, for more
  1967. information.
  1968. ** New `guile-tools' commands: `compile', `disassemble'
  1969. Pass the `--help' command-line option to these commands for more
  1970. information.
  1971. ** Guile now adds its install prefix to the LTDL_LIBRARY_PATH
  1972. Users may now install Guile to nonstandard prefixes and just run
  1973. `/path/to/bin/guile', instead of also having to set LTDL_LIBRARY_PATH to
  1974. include `/path/to/lib'.
  1975. ** Guile's Emacs integration is now more keyboard-friendly
  1976. Backtraces may now be disclosed with the keyboard in addition to the
  1977. mouse.
  1978. ** Load path change: search in version-specific paths before site paths
  1979. When looking for a module, Guile now searches first in Guile's
  1980. version-specific path (the library path), *then* in the site dir. This
  1981. allows Guile's copy of SSAX to override any Guile-Lib copy the user has
  1982. installed. Also it should cut the number of `stat' system calls by half,
  1983. in the common case.
  1984. ** Value history in the REPL on by default
  1985. By default, the REPL will save computed values in variables like `$1',
  1986. `$2', and the like. There are programmatic and interactive interfaces to
  1987. control this. See "Value History" in the manual, for more information.
  1988. ** Readline tab completion for arguments
  1989. When readline is enabled, tab completion works for arguments too, not
  1990. just for the operator position.
  1991. ** Expression-oriented readline history
  1992. Guile's readline history now tries to operate on expressions instead of
  1993. input lines. Let us know what you think!
  1994. ** Interactive Guile follows GNU conventions
  1995. As recommended by the GPL, Guile now shows a brief copyright and
  1996. warranty disclaimer on startup, along with pointers to more information.
  1997. * Changes to Scheme functions and syntax
  1998. ** Support for R6RS libraries
  1999. The `library' and `import' forms from the latest Scheme report have been
  2000. added to Guile, in such a way that R6RS libraries share a namespace with
  2001. Guile modules. R6RS modules may import Guile modules, and are available
  2002. for Guile modules to import via use-modules and all the rest. See "R6RS
  2003. Libraries" in the manual for more information.
  2004. ** Implementations of R6RS libraries
  2005. Guile now has implementations for all of the libraries defined in the
  2006. R6RS. Thanks to Julian Graham for this excellent hack. See "R6RS
  2007. Standard Libraries" in the manual for a full list of libraries.
  2008. ** Partial R6RS compatibility
  2009. Guile now has enough support for R6RS to run a reasonably large subset
  2010. of R6RS programs.
  2011. Guile is not fully R6RS compatible. Many incompatibilities are simply
  2012. bugs, though some parts of Guile will remain R6RS-incompatible for the
  2013. foreseeable future. See "R6RS Incompatibilities" in the manual, for more
  2014. information.
  2015. Please contact bug-guile@gnu.org if you have found an issue not
  2016. mentioned in that compatibility list.
  2017. ** New implementation of `primitive-eval'
  2018. Guile's `primitive-eval' is now implemented in Scheme. Actually there is
  2019. still a C evaluator, used when building a fresh Guile to interpret the
  2020. compiler, so we can compile eval.scm. Thereafter all calls to
  2021. primitive-eval are implemented by VM-compiled code.
  2022. This allows all of Guile's procedures, be they interpreted or compiled,
  2023. to execute on the same stack, unifying multiple-value return semantics,
  2024. providing for proper tail recursion between interpreted and compiled
  2025. code, and simplifying debugging.
  2026. As part of this change, the evaluator no longer mutates the internal
  2027. representation of the code being evaluated in a thread-unsafe manner.
  2028. There are two negative aspects of this change, however. First, Guile
  2029. takes a lot longer to compile now. Also, there is less debugging
  2030. information available for debugging interpreted code. We hope to improve
  2031. both of these situations.
  2032. There are many changes to the internal C evalator interface, but all
  2033. public interfaces should be the same. See the ChangeLog for details. If
  2034. we have inadvertantly changed an interface that you were using, please
  2035. contact bug-guile@gnu.org.
  2036. ** Procedure removed: `the-environment'
  2037. This procedure was part of the interpreter's execution model, and does
  2038. not apply to the compiler.
  2039. ** No more `local-eval'
  2040. `local-eval' used to exist so that one could evaluate code in the
  2041. lexical context of a function. Since there is no way to get the lexical
  2042. environment any more, as that concept has no meaning for the compiler,
  2043. and a different meaning for the interpreter, we have removed the
  2044. function.
  2045. If you think you need `local-eval', you should probably implement your
  2046. own metacircular evaluator. It will probably be as fast as Guile's
  2047. anyway.
  2048. ** Scheme source files will now be compiled automatically.
  2049. If a compiled .go file corresponding to a .scm file is not found or is
  2050. not fresh, the .scm file will be compiled on the fly, and the resulting
  2051. .go file stored away. An advisory note will be printed on the console.
  2052. Note that this mechanism depends on the timestamp of the .go file being
  2053. newer than that of the .scm file; if the .scm or .go files are moved
  2054. after installation, care should be taken to preserve their original
  2055. timestamps.
  2056. Auto-compiled files will be stored in the $XDG_CACHE_HOME/guile/ccache
  2057. directory, where $XDG_CACHE_HOME defaults to ~/.cache. This directory
  2058. will be created if needed.
  2059. To inhibit automatic compilation, set the GUILE_AUTO_COMPILE environment
  2060. variable to 0, or pass --no-auto-compile on the Guile command line.
  2061. ** New POSIX procedures: `getrlimit' and `setrlimit'
  2062. Note however that the interface of these functions is likely to change
  2063. in the next prerelease.
  2064. ** New POSIX procedure: `getsid'
  2065. Scheme binding for the `getsid' C library call.
  2066. ** New POSIX procedure: `getaddrinfo'
  2067. Scheme binding for the `getaddrinfo' C library function.
  2068. ** Multicast socket options
  2069. Support was added for the IP_MULTICAST_TTL and IP_MULTICAST_IF socket
  2070. options. See "Network Sockets and Communication" in the manual, for
  2071. more information.
  2072. ** `recv!', `recvfrom!', `send', `sendto' now deal in bytevectors
  2073. These socket procedures now take bytevectors as arguments, instead of
  2074. strings. There is some deprecated string support, however.
  2075. ** New GNU procedures: `setaffinity' and `getaffinity'.
  2076. See "Processes" in the manual, for more information.
  2077. ** New procedures: `compose', `negate', and `const'
  2078. See "Higher-Order Functions" in the manual, for more information.
  2079. ** New procedure in `(oops goops)': `method-formals'
  2080. ** New procedures in (ice-9 session): `add-value-help-handler!',
  2081. `remove-value-help-handler!', `add-name-help-handler!'
  2082. `remove-name-help-handler!', `procedure-arguments'
  2083. The value and name help handlers provide some minimal extensibility to
  2084. the help interface. Guile-lib's `(texinfo reflection)' uses them, for
  2085. example, to make stexinfo help documentation available. See those
  2086. procedures' docstrings for more information.
  2087. `procedure-arguments' describes the arguments that a procedure can take,
  2088. combining arity and formals. For example:
  2089. (procedure-arguments resolve-interface)
  2090. => ((required . (name)) (rest . args))
  2091. Additionally, `module-commentary' is now publically exported from
  2092. `(ice-9 session).
  2093. ** Removed: `procedure->memoizing-macro', `procedure->syntax'
  2094. These procedures created primitive fexprs for the old evaluator, and are
  2095. no longer supported. If you feel that you need these functions, you
  2096. probably need to write your own metacircular evaluator (which will
  2097. probably be as fast as Guile's, anyway).
  2098. ** New language: ECMAScript
  2099. Guile now ships with one other high-level language supported,
  2100. ECMAScript. The goal is to support all of version 3.1 of the standard,
  2101. but not all of the libraries are there yet. This support is not yet
  2102. documented; ask on the mailing list if you are interested.
  2103. ** New language: Brainfuck
  2104. Brainfuck is a toy language that closely models Turing machines. Guile's
  2105. brainfuck compiler is meant to be an example of implementing other
  2106. languages. See the manual for details, or
  2107. http://en.wikipedia.org/wiki/Brainfuck for more information about the
  2108. Brainfuck language itself.
  2109. ** New language: Elisp
  2110. Guile now has an experimental Emacs Lisp compiler and runtime. You can
  2111. now switch to Elisp at the repl: `,language elisp'. All kudos to Daniel
  2112. Kraft and Brian Templeton, and all bugs to bug-guile@gnu.org.
  2113. ** Better documentation infrastructure for macros
  2114. It is now possible to introspect on the type of a macro, e.g.
  2115. syntax-rules, identifier-syntax, etc, and extract information about that
  2116. macro, such as the syntax-rules patterns or the defmacro arguments.
  2117. `(texinfo reflection)' takes advantage of this to give better macro
  2118. documentation.
  2119. ** Support for arbitrary procedure metadata
  2120. Building on its support for docstrings, Guile now supports multiple
  2121. docstrings, adding them to the tail of a compiled procedure's
  2122. properties. For example:
  2123. (define (foo)
  2124. "one"
  2125. "two"
  2126. 3)
  2127. (procedure-properties foo)
  2128. => ((name . foo) (documentation . "one") (documentation . "two"))
  2129. Also, vectors of pairs are now treated as additional metadata entries:
  2130. (define (bar)
  2131. #((quz . #f) (docstring . "xyzzy"))
  2132. 3)
  2133. (procedure-properties bar)
  2134. => ((name . bar) (quz . #f) (docstring . "xyzzy"))
  2135. This allows arbitrary literals to be embedded as metadata in a compiled
  2136. procedure.
  2137. ** The psyntax expander now knows how to interpret the @ and @@ special
  2138. forms.
  2139. ** The psyntax expander is now hygienic with respect to modules.
  2140. Free variables in a macro are scoped in the module that the macro was
  2141. defined in, not in the module the macro is used in. For example, code
  2142. like this works now:
  2143. (define-module (foo) #:export (bar))
  2144. (define (helper x) ...)
  2145. (define-syntax bar
  2146. (syntax-rules () ((_ x) (helper x))))
  2147. (define-module (baz) #:use-module (foo))
  2148. (bar qux)
  2149. It used to be you had to export `helper' from `(foo)' as well.
  2150. Thankfully, this has been fixed.
  2151. ** Support for version information in Guile's `module' form
  2152. Guile modules now have a `#:version' field. See "R6RS Version
  2153. References", "General Information about Modules", "Using Guile Modules",
  2154. and "Creating Guile Modules" in the manual for more information.
  2155. ** Support for renaming bindings on module export
  2156. Wherever Guile accepts a symbol as an argument to specify a binding to
  2157. export, it now also accepts a pair of symbols, indicating that a binding
  2158. should be renamed on export. See "Creating Guile Modules" in the manual
  2159. for more information.
  2160. ** New procedure: `module-export-all!'
  2161. This procedure exports all current and future bindings from a module.
  2162. Use as `(module-export-all! (current-module))'.
  2163. ** New procedure `reload-module', and `,reload' REPL command
  2164. See "Module System Reflection" and "Module Commands" in the manual, for
  2165. more information.
  2166. ** `eval-case' has been deprecated, and replaced by `eval-when'.
  2167. The semantics of `eval-when' are easier to understand. See "Eval When"
  2168. in the manual, for more information.
  2169. ** Guile is now more strict about prohibiting definitions in expression
  2170. contexts.
  2171. Although previous versions of Guile accepted it, the following
  2172. expression is not valid, in R5RS or R6RS:
  2173. (if test (define foo 'bar) (define foo 'baz))
  2174. In this specific case, it would be better to do:
  2175. (define foo (if test 'bar 'baz))
  2176. It is possible to circumvent this restriction with e.g.
  2177. `(module-define! (current-module) 'foo 'baz)'. Contact the list if you
  2178. have any questions.
  2179. ** Support for `letrec*'
  2180. Guile now supports `letrec*', a recursive lexical binding operator in
  2181. which the identifiers are bound in order. See "Local Bindings" in the
  2182. manual, for more details.
  2183. ** Internal definitions now expand to `letrec*'
  2184. Following the R6RS, internal definitions now expand to letrec* instead
  2185. of letrec. The following program is invalid for R5RS, but valid for
  2186. R6RS:
  2187. (define (foo)
  2188. (define bar 10)
  2189. (define baz (+ bar 20))
  2190. baz)
  2191. ;; R5RS and Guile <= 1.8:
  2192. (foo) => Unbound variable: bar
  2193. ;; R6RS and Guile >= 2.0:
  2194. (foo) => 30
  2195. This change should not affect correct R5RS programs, or programs written
  2196. in earlier Guile dialects.
  2197. ** Macro expansion produces structures instead of s-expressions
  2198. In the olden days, macroexpanding an s-expression would yield another
  2199. s-expression. Though the lexical variables were renamed, expansions of
  2200. core forms like `if' and `begin' were still non-hygienic, as they relied
  2201. on the toplevel definitions of `if' et al being the conventional ones.
  2202. The solution is to expand to structures instead of s-expressions. There
  2203. is an `if' structure, a `begin' structure, a `toplevel-ref' structure,
  2204. etc. The expander already did this for compilation, producing Tree-IL
  2205. directly; it has been changed now to do so when expanding for the
  2206. evaluator as well.
  2207. ** Defmacros must now produce valid Scheme expressions.
  2208. It used to be that defmacros could unquote in Scheme values, as a way of
  2209. supporting partial evaluation, and avoiding some hygiene issues. For
  2210. example:
  2211. (define (helper x) ...)
  2212. (define-macro (foo bar)
  2213. `(,helper ,bar))
  2214. Assuming this macro is in the `(baz)' module, the direct translation of
  2215. this code would be:
  2216. (define (helper x) ...)
  2217. (define-macro (foo bar)
  2218. `((@@ (baz) helper) ,bar))
  2219. Of course, one could just use a hygienic macro instead:
  2220. (define-syntax foo
  2221. (syntax-rules ()
  2222. ((_ bar) (helper bar))))
  2223. ** Guile's psyntax now supports docstrings and internal definitions.
  2224. The following Scheme is not strictly legal:
  2225. (define (foo)
  2226. "bar"
  2227. (define (baz) ...)
  2228. (baz))
  2229. However its intent is fairly clear. Guile interprets "bar" to be the
  2230. docstring of `foo', and the definition of `baz' is still in definition
  2231. context.
  2232. ** Support for settable identifier syntax
  2233. Following the R6RS, "variable transformers" are settable
  2234. identifier-syntax. See "Identifier macros" in the manual, for more
  2235. information.
  2236. ** syntax-case treats `_' as a placeholder
  2237. Following R6RS, a `_' in a syntax-rules or syntax-case pattern matches
  2238. anything, and binds no pattern variables. Unlike the R6RS, Guile also
  2239. permits `_' to be in the literals list for a pattern.
  2240. ** Macros need to be defined before their first use.
  2241. It used to be that with lazy memoization, this might work:
  2242. (define (foo x)
  2243. (ref x))
  2244. (define-macro (ref x) x)
  2245. (foo 1) => 1
  2246. But now, the body of `foo' is interpreted to mean a call to the toplevel
  2247. `ref' function, instead of a macro expansion. The solution is to define
  2248. macros before code that uses them.
  2249. ** Functions needed by macros at expand-time need to be present at
  2250. expand-time.
  2251. For example, this code will work at the REPL:
  2252. (define (double-helper x) (* x x))
  2253. (define-macro (double-literal x) (double-helper x))
  2254. (double-literal 2) => 4
  2255. But it will not work when a file is compiled, because the definition of
  2256. `double-helper' is not present at expand-time. The solution is to wrap
  2257. the definition of `double-helper' in `eval-when':
  2258. (eval-when (load compile eval)
  2259. (define (double-helper x) (* x x)))
  2260. (define-macro (double-literal x) (double-helper x))
  2261. (double-literal 2) => 4
  2262. See the documentation for eval-when for more information.
  2263. ** `macroexpand' produces structures, not S-expressions.
  2264. Given the need to maintain referential transparency, both lexically and
  2265. modular, the result of expanding Scheme expressions is no longer itself
  2266. an s-expression. If you want a human-readable approximation of the
  2267. result of `macroexpand', call `tree-il->scheme' from `(language
  2268. tree-il)'.
  2269. ** Removed function: `macroexpand-1'
  2270. It is unclear how to implement `macroexpand-1' with syntax-case, though
  2271. PLT Scheme does prove that it is possible.
  2272. ** New reader macros: #' #` #, #,@
  2273. These macros translate, respectively, to `syntax', `quasisyntax',
  2274. `unsyntax', and `unsyntax-splicing'. See the R6RS for more information.
  2275. These reader macros may be overridden by `read-hash-extend'.
  2276. ** Incompatible change to #'
  2277. Guile did have a #' hash-extension, by default, which just returned the
  2278. subsequent datum: #'foo => foo. In the unlikely event that anyone
  2279. actually used this, this behavior may be reinstated via the
  2280. `read-hash-extend' mechanism.
  2281. ** `unquote' and `unquote-splicing' accept multiple expressions
  2282. As per the R6RS, these syntax operators can now accept any number of
  2283. expressions to unquote.
  2284. ** Scheme expresssions may be commented out with #;
  2285. #; comments out an entire expression. See SRFI-62 or the R6RS for more
  2286. information.
  2287. ** Prompts: Delimited, composable continuations
  2288. Guile now has prompts as part of its primitive language. See "Prompts"
  2289. in the manual, for more information.
  2290. Expressions entered in at the REPL, or from the command line, are
  2291. surrounded by a prompt with the default prompt tag.
  2292. ** `make-stack' with a tail-called procedural narrowing argument no longer
  2293. works (with compiled procedures)
  2294. It used to be the case that a captured stack could be narrowed to select
  2295. calls only up to or from a certain procedure, even if that procedure
  2296. already tail-called another procedure. This was because the debug
  2297. information from the original procedure was kept on the stack.
  2298. Now with the new compiler, the stack only contains active frames from
  2299. the current continuation. A narrow to a procedure that is not in the
  2300. stack will result in an empty stack. To fix this, narrow to a procedure
  2301. that is active in the current continuation, or narrow to a specific
  2302. number of stack frames.
  2303. ** Backtraces through compiled procedures only show procedures that are
  2304. active in the current continuation
  2305. Similarly to the previous issue, backtraces in compiled code may be
  2306. different from backtraces in interpreted code. There are no semantic
  2307. differences, however. Please mail bug-guile@gnu.org if you see any
  2308. deficiencies with Guile's backtraces.
  2309. ** `positions' reader option enabled by default
  2310. This change allows primitive-load without --auto-compile to also
  2311. propagate source information through the expander, for better errors and
  2312. to let macros know their source locations. The compiler was already
  2313. turning it on anyway.
  2314. ** New macro: `current-source-location'
  2315. The macro returns the current source location (to be documented).
  2316. ** syntax-rules and syntax-case macros now propagate source information
  2317. through to the expanded code
  2318. This should result in better backtraces.
  2319. ** The currying behavior of `define' has been removed.
  2320. Before, `(define ((f a) b) (* a b))' would translate to
  2321. (define f (lambda (a) (lambda (b) (* a b))))
  2322. Now a syntax error is signaled, as this syntax is not supported by
  2323. default. Use the `(ice-9 curried-definitions)' module to get back the
  2324. old behavior.
  2325. ** New procedure, `define!'
  2326. `define!' is a procedure that takes two arguments, a symbol and a value,
  2327. and binds the value to the symbol in the current module. It's useful to
  2328. programmatically make definitions in the current module, and is slightly
  2329. less verbose than `module-define!'.
  2330. ** All modules have names now
  2331. Before, you could have anonymous modules: modules without names. Now,
  2332. because of hygiene and macros, all modules have names. If a module was
  2333. created without a name, the first time `module-name' is called on it, a
  2334. fresh name will be lazily generated for it.
  2335. ** The module namespace is now separate from the value namespace
  2336. It was a little-known implementation detail of Guile's module system
  2337. that it was built on a single hierarchical namespace of values -- that
  2338. if there was a module named `(foo bar)', then in the module named
  2339. `(foo)' there was a binding from `bar' to the `(foo bar)' module.
  2340. This was a neat trick, but presented a number of problems. One problem
  2341. was that the bindings in a module were not apparent from the module
  2342. itself; perhaps the `(foo)' module had a private binding for `bar', and
  2343. then an external contributor defined `(foo bar)'. In the end there can
  2344. be only one binding, so one of the two will see the wrong thing, and
  2345. produce an obtuse error of unclear provenance.
  2346. Also, the public interface of a module was also bound in the value
  2347. namespace, as `%module-public-interface'. This was a hack from the early
  2348. days of Guile's modules.
  2349. Both of these warts have been fixed by the addition of fields in the
  2350. `module' data type. Access to modules and their interfaces from the
  2351. value namespace has been deprecated, and all accessors use the new
  2352. record accessors appropriately.
  2353. When Guile is built with support for deprecated code, as is the default,
  2354. the value namespace is still searched for modules and public interfaces,
  2355. and a deprecation warning is raised as appropriate.
  2356. Finally, to support lazy loading of modules as one used to be able to do
  2357. with module binder procedures, Guile now has submodule binders, called
  2358. if a given submodule is not found. See boot-9.scm for more information.
  2359. ** New procedures: module-ref-submodule, module-define-submodule,
  2360. nested-ref-module, nested-define-module!, local-ref-module,
  2361. local-define-module
  2362. These new accessors are like their bare variants, but operate on
  2363. namespaces instead of values.
  2364. ** The (app modules) module tree is officially deprecated
  2365. It used to be that one could access a module named `(foo bar)' via
  2366. `(nested-ref the-root-module '(app modules foo bar))'. The `(app
  2367. modules)' bit was a never-used and never-documented abstraction, and has
  2368. been deprecated. See the following mail for a full discussion:
  2369. http://lists.gnu.org/archive/html/guile-devel/2010-04/msg00168.html
  2370. The `%app' binding is also deprecated.
  2371. ** `module-filename' field and accessor
  2372. Modules now record the file in which they are defined. This field may be
  2373. accessed with the new `module-filename' procedure.
  2374. ** Modules load within a known environment
  2375. It takes a few procedure calls to define a module, and those procedure
  2376. calls need to be in scope. Now we ensure that the current module when
  2377. loading a module is one that has the needed bindings, instead of relying
  2378. on chance.
  2379. ** `load' is a macro (!) that resolves paths relative to source file dir
  2380. The familiar Schem `load' procedure is now a macro that captures the
  2381. name of the source file being expanded, and dispatches to the new
  2382. `load-in-vicinity'. Referencing `load' by bare name returns a closure
  2383. that embeds the current source file name.
  2384. This fix allows `load' of relative paths to be resolved with respect to
  2385. the location of the file that calls `load'.
  2386. ** Many syntax errors have different texts now
  2387. Syntax errors still throw to the `syntax-error' key, but the arguments
  2388. are often different now. Perhaps in the future, Guile will switch to
  2389. using standard SRFI-35 conditions.
  2390. ** Returning multiple values to compiled code will silently truncate the
  2391. values to the expected number
  2392. For example, the interpreter would raise an error evaluating the form,
  2393. `(+ (values 1 2) (values 3 4))', because it would see the operands as
  2394. being two compound "values" objects, to which `+' does not apply.
  2395. The compiler, on the other hand, receives multiple values on the stack,
  2396. not as a compound object. Given that it must check the number of values
  2397. anyway, if too many values are provided for a continuation, it chooses
  2398. to truncate those values, effectively evaluating `(+ 1 3)' instead.
  2399. The idea is that the semantics that the compiler implements is more
  2400. intuitive, and the use of the interpreter will fade out with time.
  2401. This behavior is allowed both by the R5RS and the R6RS.
  2402. ** Multiple values in compiled code are not represented by compound
  2403. objects
  2404. This change may manifest itself in the following situation:
  2405. (let ((val (foo))) (do-something) val)
  2406. In the interpreter, if `foo' returns multiple values, multiple values
  2407. are produced from the `let' expression. In the compiler, those values
  2408. are truncated to the first value, and that first value is returned. In
  2409. the compiler, if `foo' returns no values, an error will be raised, while
  2410. the interpreter would proceed.
  2411. Both of these behaviors are allowed by R5RS and R6RS. The compiler's
  2412. behavior is more correct, however. If you wish to preserve a potentially
  2413. multiply-valued return, you will need to set up a multiple-value
  2414. continuation, using `call-with-values'.
  2415. ** Defmacros are now implemented in terms of syntax-case.
  2416. The practical ramification of this is that the `defmacro?' predicate has
  2417. been removed, along with `defmacro-transformer', `macro-table',
  2418. `xformer-table', `assert-defmacro?!', `set-defmacro-transformer!' and
  2419. `defmacro:transformer'. This is because defmacros are simply macros. If
  2420. any of these procedures provided useful facilities to you, we encourage
  2421. you to contact the Guile developers.
  2422. ** Hygienic macros documented as the primary syntactic extension mechanism.
  2423. The macro documentation was finally fleshed out with some documentation
  2424. on `syntax-rules' and `syntax-case' macros, and other parts of the macro
  2425. expansion process. See "Macros" in the manual, for details.
  2426. ** psyntax is now the default expander
  2427. Scheme code is now expanded by default by the psyntax hygienic macro
  2428. expander. Expansion is performed completely before compilation or
  2429. interpretation.
  2430. Notably, syntax errors will be signalled before interpretation begins.
  2431. In the past, many syntax errors were only detected at runtime if the
  2432. code in question was memoized.
  2433. As part of its expansion, psyntax renames all lexically-bound
  2434. identifiers. Original identifier names are preserved and given to the
  2435. compiler, but the interpreter will see the renamed variables, e.g.,
  2436. `x432' instead of `x'.
  2437. Note that the psyntax that Guile uses is a fork, as Guile already had
  2438. modules before incompatible modules were added to psyntax -- about 10
  2439. years ago! Thus there are surely a number of bugs that have been fixed
  2440. in psyntax since then. If you find one, please notify bug-guile@gnu.org.
  2441. ** syntax-rules and syntax-case are available by default.
  2442. There is no longer any need to import the `(ice-9 syncase)' module
  2443. (which is now deprecated). The expander may be invoked directly via
  2444. `macroexpand', though it is normally searched for via the current module
  2445. transformer.
  2446. Also, the helper routines for syntax-case are available in the default
  2447. environment as well: `syntax->datum', `datum->syntax',
  2448. `bound-identifier=?', `free-identifier=?', `generate-temporaries',
  2449. `identifier?', and `syntax-violation'. See the R6RS for documentation.
  2450. ** Tail patterns in syntax-case
  2451. Guile has pulled in some more recent changes from the psyntax portable
  2452. syntax expander, to implement support for "tail patterns". Such patterns
  2453. are supported by syntax-rules and syntax-case. This allows a syntax-case
  2454. match clause to have ellipses, then a pattern at the end. For example:
  2455. (define-syntax case
  2456. (syntax-rules (else)
  2457. ((_ val match-clause ... (else e e* ...))
  2458. [...])))
  2459. Note how there is MATCH-CLAUSE, which is ellipsized, then there is a
  2460. tail pattern for the else clause. Thanks to Andreas Rottmann for the
  2461. patch, and Kent Dybvig for the code.
  2462. ** Lexical bindings introduced by hygienic macros may not be referenced
  2463. by nonhygienic macros.
  2464. If a lexical binding is introduced by a hygienic macro, it may not be
  2465. referenced by a nonhygienic macro. For example, this works:
  2466. (let ()
  2467. (define-macro (bind-x val body)
  2468. `(let ((x ,val)) ,body))
  2469. (define-macro (ref x)
  2470. x)
  2471. (bind-x 10 (ref x)))
  2472. But this does not:
  2473. (let ()
  2474. (define-syntax bind-x
  2475. (syntax-rules ()
  2476. ((_ val body) (let ((x val)) body))))
  2477. (define-macro (ref x)
  2478. x)
  2479. (bind-x 10 (ref x)))
  2480. It is not normal to run into this situation with existing code. However,
  2481. if you have defmacros that expand to hygienic macros, it is possible to
  2482. run into situations like this. For example, if you have a defmacro that
  2483. generates a `while' expression, the `break' bound by the `while' may not
  2484. be visible within other parts of your defmacro. The solution is to port
  2485. from defmacros to syntax-rules or syntax-case.
  2486. ** Macros may no longer be referenced as first-class values.
  2487. In the past, you could evaluate e.g. `if', and get its macro value. Now,
  2488. expanding this form raises a syntax error.
  2489. Macros still /exist/ as first-class values, but they must be
  2490. /referenced/ via the module system, e.g. `(module-ref (current-module)
  2491. 'if)'.
  2492. ** Macros may now have docstrings.
  2493. `object-documentation' from `(ice-9 documentation)' may be used to
  2494. retrieve the docstring, once you have a macro value -- but see the above
  2495. note about first-class macros. Docstrings are associated with the syntax
  2496. transformer procedures.
  2497. ** `case-lambda' is now available in the default environment.
  2498. The binding in the default environment is equivalent to the one from the
  2499. `(srfi srfi-16)' module. Use the srfi-16 module explicitly if you wish
  2500. to maintain compatibility with Guile 1.8 and earlier.
  2501. ** Procedures may now have more than one arity.
  2502. This can be the case, for example, in case-lambda procedures. The
  2503. arities of compiled procedures may be accessed via procedures from the
  2504. `(system vm program)' module; see "Compiled Procedures", "Optional
  2505. Arguments", and "Case-lambda" in the manual.
  2506. ** Deprecate arity access via (procedure-properties proc 'arity)
  2507. Instead of accessing a procedure's arity as a property, use the new
  2508. `procedure-minimum-arity' function, which gives the most permissive
  2509. arity that the function has, in the same format as the old arity
  2510. accessor.
  2511. ** `lambda*' and `define*' are now available in the default environment
  2512. As with `case-lambda', `(ice-9 optargs)' continues to be supported, for
  2513. compatibility purposes. No semantic change has been made (we hope).
  2514. Optional and keyword arguments now dispatch via special VM operations,
  2515. without the need to cons rest arguments, making them very fast.
  2516. ** New syntax: define-once
  2517. `define-once' is like Lisp's `defvar': it creates a toplevel binding,
  2518. but only if one does not exist already.
  2519. ** New function, `truncated-print', with `format' support
  2520. `(ice-9 pretty-print)' now exports `truncated-print', a printer that
  2521. will ensure that the output stays within a certain width, truncating the
  2522. output in what is hopefully an intelligent manner. See the manual for
  2523. more details.
  2524. There is a new `format' specifier, `~@y', for doing a truncated
  2525. print (as opposed to `~y', which does a pretty-print). See the `format'
  2526. documentation for more details.
  2527. ** Better pretty-printing
  2528. Indentation recognizes more special forms, like `syntax-case', and read
  2529. macros like `quote' are printed better.
  2530. ** Passing a number as the destination of `format' is deprecated
  2531. The `format' procedure in `(ice-9 format)' now emits a deprecation
  2532. warning if a number is passed as its first argument.
  2533. Also, it used to be that you could omit passing a port to `format', in
  2534. some cases. This still works, but has been formally deprecated.
  2535. ** SRFI-4 vectors reimplemented in terms of R6RS bytevectors
  2536. Guile now implements SRFI-4 vectors using bytevectors. Often when you
  2537. have a numeric vector, you end up wanting to write its bytes somewhere,
  2538. or have access to the underlying bytes, or read in bytes from somewhere
  2539. else. Bytevectors are very good at this sort of thing. But the SRFI-4
  2540. APIs are nicer to use when doing number-crunching, because they are
  2541. addressed by element and not by byte.
  2542. So as a compromise, Guile allows all bytevector functions to operate on
  2543. numeric vectors. They address the underlying bytes in the native
  2544. endianness, as one would expect.
  2545. Following the same reasoning, that it's just bytes underneath, Guile
  2546. also allows uniform vectors of a given type to be accessed as if they
  2547. were of any type. One can fill a u32vector, and access its elements with
  2548. u8vector-ref. One can use f64vector-ref on bytevectors. It's all the
  2549. same to Guile.
  2550. In this way, uniform numeric vectors may be written to and read from
  2551. input/output ports using the procedures that operate on bytevectors.
  2552. Calls to SRFI-4 accessors (ref and set functions) from Scheme are now
  2553. inlined to the VM instructions for bytevector access.
  2554. See "SRFI-4" in the manual, for more information.
  2555. ** Nonstandard SRFI-4 procedures now available from `(srfi srfi-4 gnu)'
  2556. Guile's `(srfi srfi-4)' now only exports those srfi-4 procedures that
  2557. are part of the standard. Complex uniform vectors and the
  2558. `any->FOOvector' family are now available only from `(srfi srfi-4 gnu)'.
  2559. Guile's default environment imports `(srfi srfi-4)', and probably should
  2560. import `(srfi srfi-4 gnu)' as well.
  2561. See "SRFI-4 Extensions" in the manual, for more information.
  2562. ** New syntax: include-from-path.
  2563. `include-from-path' is like `include', except it looks for its file in
  2564. the load path. It can be used to compile other files into a file.
  2565. ** New syntax: quasisyntax.
  2566. `quasisyntax' is to `syntax' as `quasiquote' is to `quote'. See the R6RS
  2567. documentation for more information. Thanks to Andre van Tonder for the
  2568. implementation.
  2569. ** `*unspecified*' is identifier syntax
  2570. `*unspecified*' is no longer a variable, so it is optimized properly by
  2571. the compiler, and is not `set!'-able.
  2572. ** Changes and bugfixes in numerics code
  2573. *** Added six new sets of fast quotient and remainder operators
  2574. Added six new sets of fast quotient and remainder operator pairs with
  2575. different semantics than the R5RS operators. They support not only
  2576. integers, but all reals, including exact rationals and inexact
  2577. floating point numbers.
  2578. These procedures accept two real numbers N and D, where the divisor D
  2579. must be non-zero. Each set of operators computes an integer quotient
  2580. Q and a real remainder R such that N = Q*D + R and |R| < |D|. They
  2581. differ only in how N/D is rounded to produce Q.
  2582. `euclidean-quotient' returns the integer Q and `euclidean-remainder'
  2583. returns the real R such that N = Q*D + R and 0 <= R < |D|. `euclidean/'
  2584. returns both Q and R, and is more efficient than computing each
  2585. separately. Note that when D > 0, `euclidean-quotient' returns
  2586. floor(N/D), and when D < 0 it returns ceiling(N/D).
  2587. `centered-quotient', `centered-remainder', and `centered/' are similar
  2588. except that the range of remainders is -abs(D/2) <= R < abs(D/2), and
  2589. `centered-quotient' rounds N/D to the nearest integer. Note that these
  2590. operators are equivalent to the R6RS integer division operators `div',
  2591. `mod', `div-and-mod', `div0', `mod0', and `div0-and-mod0'.
  2592. `floor-quotient' and `floor-remainder' compute Q and R, respectively,
  2593. where Q has been rounded toward negative infinity. `floor/' returns
  2594. both Q and R, and is more efficient than computing each separately.
  2595. Note that when applied to integers, `floor-remainder' is equivalent to
  2596. the R5RS integer-only `modulo' operator. `ceiling-quotient',
  2597. `ceiling-remainder', and `ceiling/' are similar except that Q is
  2598. rounded toward positive infinity.
  2599. For `truncate-quotient', `truncate-remainder', and `truncate/', Q is
  2600. rounded toward zero. Note that when applied to integers,
  2601. `truncate-quotient' and `truncate-remainder' are equivalent to the
  2602. R5RS integer-only operators `quotient' and `remainder'.
  2603. For `round-quotient', `round-remainder', and `round/', Q is rounded to
  2604. the nearest integer, with ties going to the nearest even integer.
  2605. *** Complex number changes
  2606. Guile is now able to represent non-real complex numbers whose
  2607. imaginary part is an _inexact_ zero (0.0 or -0.0), per R6RS.
  2608. Previously, such numbers were immediately changed into inexact reals.
  2609. (real? 0.0+0.0i) now returns #f, per R6RS, although (zero? 0.0+0.0i)
  2610. still returns #t, per R6RS. (= 0 0.0+0.0i) and (= 0.0 0.0+0.0i) are
  2611. #t, but the same comparisons using `eqv?' or `equal?' are #f.
  2612. Like other non-real numbers, these complex numbers with inexact zero
  2613. imaginary part will raise exceptions is passed to procedures requiring
  2614. reals, such as `<', `>', `<=', `>=', `min', `max', `positive?',
  2615. `negative?', `inf?', `nan?', `finite?', etc.
  2616. **** `make-rectangular' changes
  2617. scm_make_rectangular `make-rectangular' now returns a real number only
  2618. if the imaginary part is an _exact_ 0. Previously, it would return a
  2619. real number if the imaginary part was an inexact zero.
  2620. scm_c_make_rectangular now always returns a non-real complex number,
  2621. even if the imaginary part is zero. Previously, it would return a
  2622. real number if the imaginary part was zero.
  2623. **** `make-polar' changes
  2624. scm_make_polar `make-polar' now returns a real number only if the
  2625. angle or magnitude is an _exact_ 0. If the magnitude is an exact 0,
  2626. it now returns an exact 0. Previously, it would return a real
  2627. number if the imaginary part was an inexact zero.
  2628. scm_c_make_polar now always returns a non-real complex number, even if
  2629. the imaginary part is 0.0. Previously, it would return a real number
  2630. if the imaginary part was 0.0.
  2631. **** `imag-part' changes
  2632. scm_imag_part `imag-part' now returns an exact 0 if applied to an
  2633. inexact real number. Previously it returned an inexact zero in this
  2634. case.
  2635. *** `eqv?' and `equal?' now compare numbers equivalently
  2636. scm_equal_p `equal?' now behaves equivalently to scm_eqv_p `eqv?' for
  2637. numeric values, per R5RS. Previously, equal? worked differently,
  2638. e.g. `(equal? 0.0 -0.0)' returned #t but `(eqv? 0.0 -0.0)' returned #f,
  2639. and `(equal? +nan.0 +nan.0)' returned #f but `(eqv? +nan.0 +nan.0)'
  2640. returned #t.
  2641. *** `(equal? +nan.0 +nan.0)' now returns #t
  2642. Previously, `(equal? +nan.0 +nan.0)' returned #f, although
  2643. `(let ((x +nan.0)) (equal? x x))' and `(eqv? +nan.0 +nan.0)'
  2644. both returned #t. R5RS requires that `equal?' behave like
  2645. `eqv?' when comparing numbers.
  2646. *** Change in handling products `*' involving exact 0
  2647. scm_product `*' now handles exact 0 differently. A product containing
  2648. an exact 0 now returns an exact 0 if and only if the other arguments
  2649. are all exact. An inexact zero is returned if and only if the other
  2650. arguments are all finite but not all exact. If an infinite or NaN
  2651. value is present, a NaN value is returned. Previously, any product
  2652. containing an exact 0 yielded an exact 0, regardless of the other
  2653. arguments.
  2654. *** `expt' and `integer-expt' changes when the base is 0
  2655. While `(expt 0 0)' is still 1, and `(expt 0 N)' for N > 0 is still
  2656. zero, `(expt 0 N)' for N < 0 is now a NaN value, and likewise for
  2657. integer-expt. This is more correct, and conforming to R6RS, but seems
  2658. to be incompatible with R5RS, which would return 0 for all non-zero
  2659. values of N.
  2660. *** `expt' and `integer-expt' are more generic, less strict
  2661. When raising to an exact non-negative integer exponent, `expt' and
  2662. `integer-expt' are now able to exponentiate any object that can be
  2663. multiplied using `*'. They can also raise an object to an exact
  2664. negative integer power if its reciprocal can be taken using `/'.
  2665. In order to allow this, the type of the first argument is no longer
  2666. checked when raising to an exact integer power. If the exponent is 0
  2667. or 1, the first parameter is not manipulated at all, and need not
  2668. even support multiplication.
  2669. *** Infinities are no longer integers, nor rationals
  2670. scm_integer_p `integer?' and scm_rational_p `rational?' now return #f
  2671. for infinities, per R6RS. Previously they returned #t for real
  2672. infinities. The real infinities and NaNs are still considered real by
  2673. scm_real `real?' however, per R6RS.
  2674. *** NaNs are no longer rationals
  2675. scm_rational_p `rational?' now returns #f for NaN values, per R6RS.
  2676. Previously it returned #t for real NaN values. They are still
  2677. considered real by scm_real `real?' however, per R6RS.
  2678. *** `inf?' and `nan?' now throw exceptions for non-reals
  2679. The domain of `inf?' and `nan?' is the real numbers. Guile now signals
  2680. an error when a non-real number or non-number is passed to these
  2681. procedures. (Note that NaNs _are_ considered numbers by scheme, despite
  2682. their name).
  2683. *** `rationalize' bugfixes and changes
  2684. Fixed bugs in scm_rationalize `rationalize'. Previously, it returned
  2685. exact integers unmodified, although that was incorrect if the epsilon
  2686. was at least 1 or inexact, e.g. (rationalize 4 1) should return 3 per
  2687. R5RS and R6RS, but previously it returned 4. It also now handles
  2688. cases involving infinities and NaNs properly, per R6RS.
  2689. *** Trigonometric functions now return exact numbers in some cases
  2690. scm_sin `sin', scm_cos `cos', scm_tan `tan', scm_asin `asin', scm_acos
  2691. `acos', scm_atan `atan', scm_sinh `sinh', scm_cosh `cosh', scm_tanh
  2692. `tanh', scm_sys_asinh `asinh', scm_sys_acosh `acosh', and
  2693. scm_sys_atanh `atanh' now return exact results in some cases.
  2694. *** New procedure: `finite?'
  2695. Add scm_finite_p `finite?' from R6RS to guile core, which returns #t
  2696. if and only if its argument is neither infinite nor a NaN. Note that
  2697. this is not the same as (not (inf? x)) or (not (infinite? x)), since
  2698. NaNs are neither finite nor infinite.
  2699. *** Improved exactness handling for complex number parsing
  2700. When parsing non-real complex numbers, exactness specifiers are now
  2701. applied to each component, as is done in PLT Scheme. For complex
  2702. numbers written in rectangular form, exactness specifiers are applied
  2703. to the real and imaginary parts before calling scm_make_rectangular.
  2704. For complex numbers written in polar form, exactness specifiers are
  2705. applied to the magnitude and angle before calling scm_make_polar.
  2706. Previously, exactness specifiers were applied to the number as a whole
  2707. _after_ calling scm_make_rectangular or scm_make_polar.
  2708. For example, (string->number "#i5.0+0i") now does the equivalent of:
  2709. (make-rectangular (exact->inexact 5.0) (exact->inexact 0))
  2710. which yields 5.0+0.0i. Previously it did the equivalent of:
  2711. (exact->inexact (make-rectangular 5.0 0))
  2712. which yielded 5.0.
  2713. ** Unicode characters
  2714. Unicode characters may be entered in octal format via e.g. `#\454', or
  2715. created via (integer->char 300). A hex external representation will
  2716. probably be introduced at some point.
  2717. ** Unicode strings
  2718. Internally, strings are now represented either in the `latin-1'
  2719. encoding, one byte per character, or in UTF-32, with four bytes per
  2720. character. Strings manage their own allocation, switching if needed.
  2721. Extended characters may be written in a literal string using the
  2722. hexadecimal escapes `\xXX', `\uXXXX', or `\UXXXXXX', for 8-bit, 16-bit,
  2723. or 24-bit codepoints, respectively, or entered directly in the native
  2724. encoding of the port on which the string is read.
  2725. ** Unicode symbols
  2726. One may now use U+03BB (GREEK SMALL LETTER LAMBDA) as an identifier.
  2727. ** Support for non-ASCII source code files
  2728. The default reader now handles source code files for some of the
  2729. non-ASCII character encodings, such as UTF-8. A non-ASCII source file
  2730. should have an encoding declaration near the top of the file. Also,
  2731. there is a new function, `file-encoding', that scans a port for a coding
  2732. declaration. See the section of the manual entitled, "Character Encoding
  2733. of Source Files".
  2734. The pre-1.9.3 reader handled 8-bit clean but otherwise unspecified source
  2735. code. This use is now discouraged. Binary input and output is
  2736. currently supported by opening ports in the ISO-8859-1 locale.
  2737. ** Source files default to UTF-8.
  2738. If source files do not specify their encoding via a `coding:' block,
  2739. the default encoding is UTF-8, instead of being taken from the current
  2740. locale.
  2741. ** Interactive Guile installs the current locale.
  2742. Instead of leaving the user in the "C" locale, running the Guile REPL
  2743. installs the current locale. [FIXME xref?]
  2744. ** Support for locale transcoding when reading from and writing to ports
  2745. Ports now have an associated character encoding, and port read and write
  2746. operations do conversion to and from locales automatically. Ports also
  2747. have an associated strategy for how to deal with locale conversion
  2748. failures.
  2749. See the documentation in the manual for the four new support functions,
  2750. `set-port-encoding!', `port-encoding', `set-port-conversion-strategy!',
  2751. and `port-conversion-strategy'.
  2752. ** String and SRFI-13 functions can operate on Unicode strings
  2753. ** Unicode support for SRFI-14 character sets
  2754. The default character sets are no longer locale dependent and contain
  2755. characters from the whole Unicode range. There is a new predefined
  2756. character set, `char-set:designated', which contains all assigned
  2757. Unicode characters. There is a new debugging function, `%char-set-dump'.
  2758. ** Character functions operate on Unicode characters
  2759. `char-upcase' and `char-downcase' use default Unicode casing rules.
  2760. Character comparisons such as `char<?' and `char-ci<?' now sort based on
  2761. Unicode code points.
  2762. ** Global variables `scm_charnames' and `scm_charnums' are removed
  2763. These variables contained the names of control characters and were
  2764. used when writing characters. While these were global, they were
  2765. never intended to be public API. They have been replaced with private
  2766. functions.
  2767. ** EBCDIC support is removed
  2768. There was an EBCDIC compile flag that altered some of the character
  2769. processing. It appeared that full EBCDIC support was never completed
  2770. and was unmaintained.
  2771. ** Compile-time warnings
  2772. Guile can warn about potentially unbound free variables. Pass the
  2773. -Wunbound-variable on the `guile-tools compile' command line, or add
  2774. `#:warnings '(unbound-variable)' to your `compile' or `compile-file'
  2775. invocation. Warnings are also enabled by default for expressions entered
  2776. at the REPL.
  2777. Guile can also warn when you pass the wrong number of arguments to a
  2778. procedure, with -Warity-mismatch, or `arity-mismatch' in the
  2779. `#:warnings' as above.
  2780. Other warnings include `-Wunused-variable' and `-Wunused-toplevel', to
  2781. warn about unused local or global (top-level) variables, and `-Wformat',
  2782. to check for various errors related to the `format' procedure.
  2783. ** A new `memoize-symbol' evaluator trap has been added.
  2784. This trap can be used for efficiently implementing a Scheme code
  2785. coverage.
  2786. ** Duplicate bindings among used modules are resolved lazily.
  2787. This slightly improves program startup times.
  2788. ** New thread cancellation and thread cleanup API
  2789. See `cancel-thread', `set-thread-cleanup!', and `thread-cleanup'.
  2790. ** New threads are in `(guile-user)' by default, not `(guile)'
  2791. It used to be that a new thread entering Guile would do so in the
  2792. `(guile)' module, unless this was the first time Guile was initialized,
  2793. in which case it was `(guile-user)'. This has been fixed to have all
  2794. new threads unknown to Guile default to `(guile-user)'.
  2795. ** New helpers: `print-exception', `set-exception-printer!'
  2796. These functions implement an extensible exception printer. Guile
  2797. registers printers for all of the exceptions it throws. Users may add
  2798. their own printers. There is also `scm_print_exception', for use by C
  2799. programs. Pleasantly, this allows SRFI-35 and R6RS exceptions to be
  2800. printed appropriately.
  2801. ** GOOPS dispatch in scheme
  2802. As an implementation detail, GOOPS dispatch is no longer implemented by
  2803. special evaluator bytecodes, but rather directly via a Scheme function
  2804. associated with an applicable struct. There is some VM support for the
  2805. underlying primitives, like `class-of'.
  2806. This change will in the future allow users to customize generic function
  2807. dispatch without incurring a performance penalty, and allow us to
  2808. implement method combinations.
  2809. ** Applicable struct support
  2810. One may now make structs from Scheme that may be applied as procedures.
  2811. To do so, make a struct whose vtable is `<applicable-struct-vtable>'.
  2812. That struct will be the vtable of your applicable structs; instances of
  2813. that new struct are assumed to have the procedure in their first slot.
  2814. `<applicable-struct-vtable>' is like Common Lisp's
  2815. `funcallable-standard-class'. Likewise there is
  2816. `<applicable-struct-with-setter-vtable>', which looks for the setter in
  2817. the second slot. This needs to be better documented.
  2818. ** GOOPS cleanups.
  2819. GOOPS had a number of concepts that were relevant to the days of Tcl,
  2820. but not any more: operators and entities, mainly. These objects were
  2821. never documented, and it is unlikely that they were ever used. Operators
  2822. were a kind of generic specific to the Tcl support. Entities were
  2823. replaced by applicable structs, mentioned above.
  2824. ** New struct slot allocation: "hidden"
  2825. A hidden slot is readable and writable, but will not be initialized by a
  2826. call to make-struct. For example in your layout you would say "ph"
  2827. instead of "pw". Hidden slots are useful for adding new slots to a
  2828. vtable without breaking existing invocations to make-struct.
  2829. ** eqv? not a generic
  2830. One used to be able to extend `eqv?' as a primitive-generic, but no
  2831. more. Because `eqv?' is in the expansion of `case' (via `memv'), which
  2832. should be able to compile to static dispatch tables, it doesn't make
  2833. sense to allow extensions that would subvert this optimization.
  2834. ** `inet-ntop' and `inet-pton' are always available.
  2835. Guile now use a portable implementation of `inet_pton'/`inet_ntop', so
  2836. there is no more need to use `inet-aton'/`inet-ntoa'. The latter
  2837. functions are deprecated.
  2838. ** `getopt-long' parsing errors throw to `quit', not `misc-error'
  2839. This change should inhibit backtraces on argument parsing errors.
  2840. `getopt-long' has been modified to print out the error that it throws
  2841. itself.
  2842. ** New primitive: `tmpfile'.
  2843. See "File System" in the manual.
  2844. ** Random generator state may be serialized to a datum
  2845. `random-state->datum' will serialize a random state to a datum, which
  2846. may be written out, read back in later, and revivified using
  2847. `datum->random-state'. See "Random" in the manual, for more details.
  2848. ** Fix random number generator on 64-bit platforms
  2849. There was a nasty bug on 64-bit platforms in which asking for a random
  2850. integer with a range between 2**32 and 2**64 caused a segfault. After
  2851. many embarrassing iterations, this was fixed.
  2852. ** Fast bit operations.
  2853. The bit-twiddling operations `ash', `logand', `logior', and `logxor' now
  2854. have dedicated bytecodes. Guile is not just for symbolic computation,
  2855. it's for number crunching too.
  2856. ** Faster SRFI-9 record access
  2857. SRFI-9 records are now implemented directly on top of Guile's structs,
  2858. and their accessors are defined in such a way that normal call-sites
  2859. inline to special VM opcodes, while still allowing for the general case
  2860. (e.g. passing a record accessor to `apply').
  2861. ** R6RS block comment support
  2862. Guile now supports R6RS nested block comments. The start of a comment is
  2863. marked with `#|', and the end with `|#'.
  2864. ** `guile-2' cond-expand feature
  2865. To test if your code is running under Guile 2.0 (or its alpha releases),
  2866. test for the `guile-2' cond-expand feature. Like this:
  2867. (cond-expand (guile-2 (eval-when (compile)
  2868. ;; This must be evaluated at compile time.
  2869. (fluid-set! current-reader my-reader)))
  2870. (guile
  2871. ;; Earlier versions of Guile do not have a
  2872. ;; separate compilation phase.
  2873. (fluid-set! current-reader my-reader)))
  2874. ** New global variables: %load-compiled-path, %load-compiled-extensions
  2875. These are analogous to %load-path and %load-extensions.
  2876. ** New fluid: `%file-port-name-canonicalization'
  2877. This fluid parameterizes the file names that are associated with file
  2878. ports. If %file-port-name-canonicalization is 'absolute, then file names
  2879. are canonicalized to be absolute paths. If it is 'relative, then the
  2880. name is canonicalized, but any prefix corresponding to a member of
  2881. `%load-path' is stripped off. Otherwise the names are passed through
  2882. unchanged.
  2883. In addition, the `compile-file' and `compile-and-load' procedures bind
  2884. %file-port-name-canonicalization to their `#:canonicalization' keyword
  2885. argument, which defaults to 'relative. In this way, one might compile
  2886. "../module/ice-9/boot-9.scm", but the path that gets residualized into
  2887. the .go is "ice-9/boot-9.scm".
  2888. ** New procedure, `make-promise'
  2889. `(make-promise (lambda () foo))' is equivalent to `(delay foo)'.
  2890. ** `defined?' may accept a module as its second argument
  2891. Previously it only accepted internal structures from the evaluator.
  2892. ** New entry into %guile-build-info: `ccachedir'
  2893. ** Fix bug in `module-bound?'.
  2894. `module-bound?' was returning true if a module did have a local
  2895. variable, but one that was unbound, but another imported module bound
  2896. the variable. This was an error, and was fixed.
  2897. ** `(ice-9 syncase)' has been deprecated.
  2898. As syntax-case is available by default, importing `(ice-9 syncase)' has
  2899. no effect, and will trigger a deprecation warning.
  2900. ** New readline history functions
  2901. The (ice-9 readline) module now provides add-history, read-history,
  2902. write-history and clear-history, which wrap the corresponding GNU
  2903. History library functions.
  2904. ** Removed deprecated uniform array procedures:
  2905. dimensions->uniform-array, list->uniform-array, array-prototype
  2906. Instead, use make-typed-array, list->typed-array, or array-type,
  2907. respectively.
  2908. ** Deprecate the old `scm-style-repl'
  2909. The following bindings from boot-9 are now found in `(ice-9
  2910. scm-style-repl)': `scm-style-repl', `error-catching-loop',
  2911. `error-catching-repl', `bad-throw', `scm-repl-silent'
  2912. `assert-repl-silence', `repl-print-unspecified',
  2913. `assert-repl-print-unspecified', `scm-repl-verbose',
  2914. `assert-repl-verbosity', `scm-repl-prompt', `set-repl-prompt!', `repl',
  2915. `default-pre-unwind-handler', `handle-system-error',
  2916. The following bindings have been deprecated, with no replacement:
  2917. `pre-unwind-handler-dispatch'.
  2918. The following bindings have been totally removed:
  2919. `before-signal-stack'.
  2920. Deprecated forwarding shims have been installed so that users that
  2921. expect these bindings in the main namespace will still work, but receive
  2922. a deprecation warning.
  2923. ** `set-batch-mode?!' replaced by `ensure-batch-mode!'
  2924. "Batch mode" is a flag used to tell a program that it is not running
  2925. interactively. One usually turns it on after a fork. It may not be
  2926. turned off. `ensure-batch-mode!' deprecates the old `set-batch-mode?!',
  2927. because it is a better interface, as it can only turn on batch mode, not
  2928. turn it off.
  2929. ** Deprecate `save-stack', `the-last-stack'
  2930. It used to be that the way to debug programs in Guile was to capture the
  2931. stack at the time of error, drop back to the REPL, then debug that
  2932. stack. But this approach didn't compose, was tricky to get right in the
  2933. presence of threads, and was not very powerful.
  2934. So `save-stack', `stack-saved?', and `the-last-stack' have been moved to
  2935. `(ice-9 save-stack)', with deprecated bindings left in the root module.
  2936. ** `top-repl' has its own module
  2937. The `top-repl' binding, called with Guile is run interactively, is now
  2938. is its own module, `(ice-9 top-repl)'. A deprecated forwarding shim was
  2939. left in the default environment.
  2940. ** `display-error' takes a frame
  2941. The `display-error' / `scm_display_error' helper now takes a frame as an
  2942. argument instead of a stack. Stacks are still supported in deprecated
  2943. builds. Additionally, `display-error' will again source location
  2944. information for the error.
  2945. ** No more `(ice-9 debug)'
  2946. This module had some debugging helpers that are no longer applicable to
  2947. the current debugging model. Importing this module will produce a
  2948. deprecation warning. Users should contact bug-guile for support.
  2949. ** Remove obsolete debug-options
  2950. Removed `breakpoints', `trace', `procnames', `indent', `frames',
  2951. `maxdepth', and `debug' debug-options.
  2952. ** `backtrace' debug option on by default
  2953. Given that Guile 2.0 can always give you a backtrace, backtraces are now
  2954. on by default.
  2955. ** `turn-on-debugging' deprecated
  2956. ** Remove obsolete print-options
  2957. The `source' and `closure-hook' print options are obsolete, and have
  2958. been removed.
  2959. ** Remove obsolete read-options
  2960. The "elisp-strings" and "elisp-vectors" read options were unused and
  2961. obsolete, so they have been removed.
  2962. ** Remove eval-options and trap-options
  2963. Eval-options and trap-options are obsolete with the new VM and
  2964. evaluator.
  2965. ** Remove (ice-9 debugger) and (ice-9 debugging)
  2966. See "Traps" and "Interactive Debugging" in the manual, for information
  2967. on their replacements.
  2968. ** Remove the GDS Emacs integration
  2969. See "Using Guile in Emacs" in the manual, for info on how we think you
  2970. should use Guile with Emacs.
  2971. ** Deprecated: `lazy-catch'
  2972. `lazy-catch' was a form that captured the stack at the point of a
  2973. `throw', but the dynamic state at the point of the `catch'. It was a bit
  2974. crazy. Please change to use `catch', possibly with a throw-handler, or
  2975. `with-throw-handler'.
  2976. ** Deprecated: primitive properties
  2977. The `primitive-make-property', `primitive-property-set!',
  2978. `primitive-property-ref', and `primitive-property-del!' procedures were
  2979. crufty and only used to implement object properties, which has a new,
  2980. threadsafe implementation. Use object properties or weak hash tables
  2981. instead.
  2982. ** Deprecated `@bind' syntax
  2983. `@bind' was part of an older implementation of the Emacs Lisp language,
  2984. and is no longer used.
  2985. ** Miscellaneous other deprecations
  2986. `cuserid' has been deprecated, as it only returns 8 bytes of a user's
  2987. login. Use `(passwd:name (getpwuid (geteuid)))' instead.
  2988. Additionally, the procedures `apply-to-args', `has-suffix?', `scheme-file-suffix'
  2989. `get-option', `for-next-option', `display-usage-report',
  2990. `transform-usage-lambda', `collect', and `set-batch-mode?!' have all
  2991. been deprecated.
  2992. ** Add support for unbound fluids
  2993. See `make-unbound-fluid', `fluid-unset!', and `fluid-bound?' in the
  2994. manual.
  2995. ** Add `variable-unset!'
  2996. See "Variables" in the manual, for more details.
  2997. ** Last but not least, the `λ' macro can be used in lieu of `lambda'
  2998. * Changes to the C interface
  2999. ** Guile now uses libgc, the Boehm-Demers-Weiser garbage collector
  3000. The semantics of `scm_gc_malloc ()' have been changed, in a
  3001. backward-compatible way. A new allocation routine,
  3002. `scm_gc_malloc_pointerless ()', was added.
  3003. Libgc is a conservative GC, which we hope will make interaction with C
  3004. code easier and less error-prone.
  3005. ** New procedures: `scm_to_stringn', `scm_from_stringn'
  3006. ** New procedures: scm_{to,from}_{utf8,latin1}_symbol{n,}
  3007. ** New procedures: scm_{to,from}_{utf8,utf32,latin1}_string{n,}
  3008. These new procedures convert to and from string representations in
  3009. particular encodings.
  3010. Users should continue to use locale encoding for user input, user
  3011. output, or interacting with the C library.
  3012. Use the Latin-1 functions for ASCII, and for literals in source code.
  3013. Use UTF-8 functions for interaction with modern libraries which deal in
  3014. UTF-8, and UTF-32 for interaction with utf32-using libraries.
  3015. Otherwise, use scm_to_stringn or scm_from_stringn with a specific
  3016. encoding.
  3017. ** New type definitions for `scm_t_intptr' and friends.
  3018. `SCM_T_UINTPTR_MAX', `SCM_T_INTPTR_MIN', `SCM_T_INTPTR_MAX',
  3019. `SIZEOF_SCM_T_BITS', `scm_t_intptr' and `scm_t_uintptr' are now
  3020. available to C. Have fun!
  3021. ** The GH interface (deprecated in version 1.6, 2001) was removed.
  3022. ** Internal `scm_i_' functions now have "hidden" linkage with GCC/ELF
  3023. This makes these internal functions technically not callable from
  3024. application code.
  3025. ** Functions for handling `scm_option' now no longer require an argument
  3026. indicating length of the `scm_t_option' array.
  3027. ** Procedures-with-setters are now implemented using applicable structs
  3028. From a user's perspective this doesn't mean very much. But if, for some
  3029. odd reason, you used the SCM_PROCEDURE_WITH_SETTER_P, SCM_PROCEDURE, or
  3030. SCM_SETTER macros, know that they're deprecated now. Also, scm_tc7_pws
  3031. is gone.
  3032. ** Remove old evaluator closures
  3033. There used to be ranges of typecodes allocated to interpreted data
  3034. structures, but that it no longer the case, given that interpreted
  3035. procedure are now just regular VM closures. As a result, there is a
  3036. newly free tc3, and a number of removed macros. See the ChangeLog for
  3037. details.
  3038. ** Primitive procedures are now VM trampoline procedures
  3039. It used to be that there were something like 12 different typecodes
  3040. allocated to primitive procedures, each with its own calling convention.
  3041. Now there is only one, the gsubr. This may affect user code if you were
  3042. defining a procedure using scm_c_make_subr rather scm_c_make_gsubr. The
  3043. solution is to switch to use scm_c_make_gsubr. This solution works well
  3044. both with the old 1.8 and with the current 1.9 branch.
  3045. Guile's old evaluator used to have special cases for applying "gsubrs",
  3046. primitive procedures with specified numbers of required, optional, and
  3047. rest arguments. Now, however, Guile represents gsubrs as normal VM
  3048. procedures, with appropriate bytecode to parse out the correct number of
  3049. arguments, including optional and rest arguments, and then with a
  3050. special bytecode to apply the gsubr.
  3051. This allows primitive procedures to appear on the VM stack, allowing
  3052. them to be accurately counted in profiles. Also they now have more
  3053. debugging information attached to them -- their number of arguments, for
  3054. example. In addition, the VM can completely inline the application
  3055. mechanics, allowing for faster primitive calls.
  3056. However there are some changes on the C level. There is no more
  3057. `scm_tc7_gsubr' or `scm_tcs_subrs' typecode for primitive procedures, as
  3058. they are just VM procedures. Likewise the macros `SCM_GSUBR_TYPE',
  3059. `SCM_GSUBR_MAKTYPE', `SCM_GSUBR_REQ', `SCM_GSUBR_OPT', and
  3060. `SCM_GSUBR_REST' are gone, as are `SCM_SUBR_META_INFO', `SCM_SUBR_PROPS'
  3061. `SCM_SET_SUBR_GENERIC_LOC', and `SCM_SUBR_ARITY_TO_TYPE'.
  3062. Perhaps more significantly, `scm_c_make_subr',
  3063. `scm_c_make_subr_with_generic', `scm_c_define_subr', and
  3064. `scm_c_define_subr_with_generic'. They all operated on subr typecodes,
  3065. and there are no more subr typecodes. Use the scm_c_make_gsubr family
  3066. instead.
  3067. Normal users of gsubrs should not be affected, though, as the
  3068. scm_c_make_gsubr family still is the correct way to create primitive
  3069. procedures.
  3070. ** Remove deprecated array C interfaces
  3071. Removed the deprecated array functions `scm_i_arrayp',
  3072. `scm_i_array_ndim', `scm_i_array_mem', `scm_i_array_v',
  3073. `scm_i_array_base', `scm_i_array_dims', and the deprecated macros
  3074. `SCM_ARRAYP', `SCM_ARRAY_NDIM', `SCM_ARRAY_CONTP', `SCM_ARRAY_MEM',
  3075. `SCM_ARRAY_V', `SCM_ARRAY_BASE', and `SCM_ARRAY_DIMS'.
  3076. ** Remove unused snarf macros
  3077. `SCM_DEFINE1', `SCM_PRIMITIVE_GENERIC_1', `SCM_PROC1, and `SCM_GPROC1'
  3078. are no more. Use SCM_DEFINE or SCM_PRIMITIVE_GENERIC instead.
  3079. ** New functions: `scm_call_n', `scm_c_run_hookn'
  3080. `scm_call_n' applies to apply a function to an array of arguments.
  3081. `scm_c_run_hookn' runs a hook with an array of arguments.
  3082. ** Some SMOB types changed to have static typecodes
  3083. Fluids, dynamic states, and hash tables used to be SMOB objects, but now
  3084. they have statically allocated tc7 typecodes.
  3085. ** Preparations for changing SMOB representation
  3086. If things go right, we'll be changing the SMOB representation soon. To
  3087. that end, we did a lot of cleanups to calls to e.g. SCM_CELL_WORD_2(x) when
  3088. the code meant SCM_SMOB_DATA_2(x); user code will need similar changes
  3089. in the future. Code accessing SMOBs using SCM_CELL macros was never
  3090. correct, but until now things still worked. Users should be aware of
  3091. such changes.
  3092. ** Changed invocation mechanics of applicable SMOBs
  3093. Guile's old evaluator used to have special cases for applying SMOB
  3094. objects. Now, with the VM, when Guile sees a SMOB, it looks up a VM
  3095. trampoline procedure for it, and use the normal mechanics to apply the
  3096. trampoline. This simplifies procedure application in the normal,
  3097. non-SMOB case.
  3098. The upshot is that the mechanics used to apply a SMOB are different from
  3099. 1.8. Descriptors no longer have `apply_0', `apply_1', `apply_2', and
  3100. `apply_3' functions, and the macros SCM_SMOB_APPLY_0 and friends are now
  3101. deprecated. Just use the scm_call_0 family of procedures.
  3102. ** Removed support shlibs for SRFIs 1, 4, 13, 14, and 60
  3103. Though these SRFI support libraries did expose API, they encoded a
  3104. strange version string into their library names. That version was never
  3105. programmatically exported, so there was no way people could use the
  3106. libs.
  3107. This was a fortunate oversight, as it allows us to remove the need for
  3108. extra, needless shared libraries --- the C support code for SRFIs 4, 13,
  3109. and 14 was already in core --- and allow us to incrementally return the
  3110. SRFI implementation to Scheme.
  3111. ** New C function: scm_module_public_interface
  3112. This procedure corresponds to Scheme's `module-public-interface'.
  3113. ** Undeprecate `scm_the_root_module ()'
  3114. It's useful to be able to get the root module from C without doing a
  3115. full module lookup.
  3116. ** Inline vector allocation
  3117. Instead of having vectors point out into the heap for their data, their
  3118. data is now allocated inline to the vector object itself. The same is
  3119. true for bytevectors, by default, though there is an indirection
  3120. available which should allow for making a bytevector from an existing
  3121. memory region.
  3122. ** New struct constructors that don't involve making lists
  3123. `scm_c_make_struct' and `scm_c_make_structv' are new varargs and array
  3124. constructors, respectively, for structs. You might find them useful.
  3125. ** Stack refactor
  3126. In Guile 1.8, there were debugging frames on the C stack. Now there is
  3127. no more need to explicitly mark the stack in this way, because Guile has
  3128. a VM stack that it knows how to walk, which simplifies the C API
  3129. considerably. See the ChangeLog for details; the relevant interface is
  3130. in libguile/stacks.h. The Scheme API has not been changed significantly.
  3131. ** Removal of Guile's primitive object system.
  3132. There were a number of pieces in `objects.[ch]' that tried to be a
  3133. minimal object system, but were never documented, and were quickly
  3134. obseleted by GOOPS' merge into Guile proper. So `scm_make_class_object',
  3135. `scm_make_subclass_object', `scm_metaclass_standard', and like symbols
  3136. from objects.h are no more. In the very unlikely case in which these
  3137. were useful to you, we urge you to contact guile-devel.
  3138. ** No future.
  3139. Actually the future is still in the state that it was, is, and ever
  3140. shall be, Amen, except that `futures.c' and `futures.h' are no longer a
  3141. part of it. These files were experimental, never compiled, and would be
  3142. better implemented in Scheme anyway. In the future, that is.
  3143. ** Deprecate trampolines
  3144. There used to be C functions `scm_trampoline_0', `scm_trampoline_1', and
  3145. so on. The point was to do some precomputation on the type of the
  3146. procedure, then return a specialized "call" procedure. However this
  3147. optimization wasn't actually an optimization, so it is now deprecated.
  3148. Just use `scm_call_0', etc instead.
  3149. ** Deprecated `scm_badargsp'
  3150. This function is unused in Guile, but was part of its API.
  3151. ** Better support for Lisp `nil'.
  3152. The bit representation of `nil' has been tweaked so that it is now very
  3153. efficient to check e.g. if a value is equal to Scheme's end-of-list or
  3154. Lisp's nil. Additionally there are a heap of new, specific predicates
  3155. like scm_is_null_or_nil.
  3156. ** Better integration of Lisp `nil'.
  3157. `scm_is_boolean', `scm_is_false', and `scm_is_null' all return true now
  3158. for Lisp's `nil'. This shouldn't affect any Scheme code at this point,
  3159. but when we start to integrate more with Emacs, it is possible that we
  3160. break code that assumes that, for example, `(not x)' implies that `x' is
  3161. `eq?' to `#f'. This is not a common assumption. Refactoring affected
  3162. code to rely on properties instead of identities will improve code
  3163. correctness. See "Nil" in the manual, for more details.
  3164. ** Support for static allocation of strings, symbols, and subrs.
  3165. Calls to snarfing CPP macros like SCM_DEFINE macro will now allocate
  3166. much of their associated data as static variables, reducing Guile's
  3167. memory footprint.
  3168. ** `scm_stat' has an additional argument, `exception_on_error'
  3169. ** `scm_primitive_load_path' has an additional argument `exception_on_not_found'
  3170. ** `scm_set_port_seek' and `scm_set_port_truncate' use the `scm_t_off' type
  3171. Previously they would use the `off_t' type, which is fragile since its
  3172. definition depends on the application's value for `_FILE_OFFSET_BITS'.
  3173. ** The `long_long' C type, deprecated in 1.8, has been removed
  3174. ** Removed deprecated uniform array procedures: scm_make_uve,
  3175. scm_array_prototype, scm_list_to_uniform_array,
  3176. scm_dimensions_to_uniform_array, scm_make_ra, scm_shap2ra, scm_cvref,
  3177. scm_ra_set_contp, scm_aind, scm_raprin1
  3178. These functions have been deprecated since early 2005.
  3179. * Changes to the distribution
  3180. ** Guile's license is now LGPLv3+
  3181. In other words the GNU Lesser General Public License, version 3 or
  3182. later (at the discretion of each person that chooses to redistribute
  3183. part of Guile).
  3184. ** AM_SILENT_RULES
  3185. Guile's build is visually quieter, due to the use of Automake 1.11's
  3186. AM_SILENT_RULES. Build as `make V=1' to see all of the output.
  3187. ** GOOPS documentation folded into Guile reference manual
  3188. GOOPS, Guile's object system, used to be documented in separate manuals.
  3189. This content is now included in Guile's manual directly.
  3190. ** `guile-config' will be deprecated in favor of `pkg-config'
  3191. `guile-config' has been rewritten to get its information from
  3192. `pkg-config', so this should be a transparent change. Note however that
  3193. guile.m4 has yet to be modified to call pkg-config instead of
  3194. guile-config.
  3195. ** Guile now provides `guile-2.0.pc' instead of `guile-1.8.pc'
  3196. Programs that use `pkg-config' to find Guile or one of its Autoconf
  3197. macros should now require `guile-2.0' instead of `guile-1.8'.
  3198. ** New installation directory: $(pkglibdir)/1.9/ccache
  3199. If $(libdir) is /usr/lib, for example, Guile will install its .go files
  3200. to /usr/lib/guile/1.9/ccache. These files are architecture-specific.
  3201. ** Parallel installability fixes
  3202. Guile now installs its header files to a effective-version-specific
  3203. directory, and includes the effective version (e.g. 2.0) in the library
  3204. name (e.g. libguile-2.0.so).
  3205. This change should be transparent to users, who should detect Guile via
  3206. the guile.m4 macro, or the guile-2.0.pc pkg-config file. It will allow
  3207. parallel installs for multiple versions of Guile development
  3208. environments.
  3209. ** Dynamically loadable extensions may be placed in a Guile-specific path
  3210. Before, Guile only searched the system library paths for extensions
  3211. (e.g. /usr/lib), which meant that the names of Guile extensions had to
  3212. be globally unique. Installing them to a Guile-specific extensions
  3213. directory is cleaner. Use `pkg-config --variable=extensiondir
  3214. guile-2.0' to get the location of the extensions directory.
  3215. ** User Scheme code may be placed in a version-specific path
  3216. Before, there was only one way to install user Scheme code to a
  3217. version-specific Guile directory: install to Guile's own path,
  3218. e.g. /usr/share/guile/2.0. The site directory,
  3219. e.g. /usr/share/guile/site, was unversioned. This has been changed to
  3220. add a version-specific site directory, e.g. /usr/share/guile/site/2.0,
  3221. searched before the global site directory.
  3222. ** New dependency: libgc
  3223. See http://www.hpl.hp.com/personal/Hans_Boehm/gc/, for more information.
  3224. ** New dependency: GNU libunistring
  3225. See http://www.gnu.org/software/libunistring/, for more information. Our
  3226. Unicode support uses routines from libunistring.
  3227. ** New dependency: libffi
  3228. See http://sourceware.org/libffi/, for more information.
  3229. Changes in 1.8.8 (since 1.8.7)
  3230. * Bugs fixed
  3231. ** Fix possible buffer overruns when parsing numbers
  3232. ** Avoid clash with system setjmp/longjmp on IA64
  3233. ** Fix `wrong type arg' exceptions with IPv6 addresses
  3234. Changes in 1.8.7 (since 1.8.6)
  3235. * New modules (see the manual for details)
  3236. ** `(srfi srfi-98)', an interface to access environment variables
  3237. * Bugs fixed
  3238. ** Fix compilation with `--disable-deprecated'
  3239. ** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
  3240. ** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
  3241. ** Fix build problem when scm_t_timespec is different from struct timespec
  3242. ** Fix build when compiled with -Wundef -Werror
  3243. ** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
  3244. ** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
  3245. ** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
  3246. ** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
  3247. ** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
  3248. ** Fix reading of complex numbers where both parts are inexact decimals
  3249. ** Allow @ macro to work with (ice-9 syncase)
  3250. Previously, use of the @ macro in a module whose code is being
  3251. transformed by (ice-9 syncase) would cause an "Invalid syntax" error.
  3252. Now it works as you would expect (giving the value of the specified
  3253. module binding).
  3254. ** Have `scm_take_locale_symbol ()' return an interned symbol (bug #25865)
  3255. Changes in 1.8.6 (since 1.8.5)
  3256. * New features (see the manual for details)
  3257. ** New convenience function `scm_c_symbol_length ()'
  3258. ** Single stepping through code from Emacs
  3259. When you use GDS to evaluate Scheme code from Emacs, you can now use
  3260. `C-u' to indicate that you want to single step through that code. See
  3261. `Evaluating Scheme Code' in the manual for more details.
  3262. ** New "guile(1)" man page!
  3263. * Changes to the distribution
  3264. ** Automake's `AM_MAINTAINER_MODE' is no longer used
  3265. Thus, the `--enable-maintainer-mode' configure option is no longer
  3266. available: Guile is now always configured in "maintainer mode".
  3267. ** `ChangeLog' files are no longer updated
  3268. Instead, changes are detailed in the version control system's logs. See
  3269. the top-level `ChangeLog' files for details.
  3270. * Bugs fixed
  3271. ** `symbol->string' now returns a read-only string, as per R5RS
  3272. ** Fix incorrect handling of the FLAGS argument of `fold-matches'
  3273. ** `guile-config link' now prints `-L$libdir' before `-lguile'
  3274. ** Fix memory corruption involving GOOPS' `class-redefinition'
  3275. ** Fix possible deadlock in `mutex-lock'
  3276. ** Fix build issue on Tru64 and ia64-hp-hpux11.23 (`SCM_UNPACK' macro)
  3277. ** Fix build issue on mips, mipsel, powerpc and ia64 (stack direction)
  3278. ** Fix build issue on hppa2.0w-hp-hpux11.11 (`dirent64' and `readdir64_r')
  3279. ** Fix build issue on i386-unknown-freebsd7.0 ("break strict-aliasing rules")
  3280. ** Fix misleading output from `(help rationalize)'
  3281. ** Fix build failure on Debian hppa architecture (bad stack growth detection)
  3282. ** Fix `gcd' when called with a single, negative argument.
  3283. ** Fix `Stack overflow' errors seen when building on some platforms
  3284. ** Fix bug when `scm_with_guile ()' was called several times from the
  3285. same thread
  3286. ** The handler of SRFI-34 `with-exception-handler' is now invoked in the
  3287. dynamic environment of the call to `raise'
  3288. ** Fix potential deadlock in `make-struct'
  3289. ** Fix compilation problem with libltdl from Libtool 2.2.x
  3290. ** Fix sloppy bound checking in `string-{ref,set!}' with the empty string
  3291. Changes in 1.8.5 (since 1.8.4)
  3292. * Infrastructure changes
  3293. ** Guile repository switched from CVS to Git
  3294. The new repository can be accessed using
  3295. "git-clone git://git.sv.gnu.org/guile.git", or can be browsed on-line at
  3296. http://git.sv.gnu.org/gitweb/?p=guile.git . See `README' for details.
  3297. ** Add support for `pkg-config'
  3298. See "Autoconf Support" in the manual for details.
  3299. * New modules (see the manual for details)
  3300. ** `(srfi srfi-88)'
  3301. * New features (see the manual for details)
  3302. ** New `postfix' read option, for SRFI-88 keyword syntax
  3303. ** Some I/O primitives have been inlined, which improves I/O performance
  3304. ** New object-based traps infrastructure
  3305. This is a GOOPS-based infrastructure that builds on Guile's low-level
  3306. evaluator trap calls and facilitates the development of debugging
  3307. features like single-stepping, breakpoints, tracing and profiling.
  3308. See the `Traps' node of the manual for details.
  3309. ** New support for working on Guile code from within Emacs
  3310. Guile now incorporates the `GDS' library (previously distributed
  3311. separately) for working on Guile code from within Emacs. See the
  3312. `Using Guile In Emacs' node of the manual for details.
  3313. * Bugs fixed
  3314. ** `scm_add_slot ()' no longer segfaults (fixes bug #22369)
  3315. ** Fixed `(ice-9 match)' for patterns like `((_ ...) ...)'
  3316. Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
  3317. would trigger an unbound variable error for `match:andmap'.
  3318. ** `(oop goops describe)' now properly provides the `describe' feature
  3319. ** Fixed `args-fold' from `(srfi srfi-37)'
  3320. Previously, parsing short option names of argument-less options would
  3321. lead to a stack overflow.
  3322. ** `(srfi srfi-35)' is now visible through `cond-expand'
  3323. ** Fixed type-checking for the second argument of `eval'
  3324. ** Fixed type-checking for SRFI-1 `partition'
  3325. ** Fixed `struct-ref' and `struct-set!' on "light structs"
  3326. ** Honor struct field access rights in GOOPS
  3327. ** Changed the storage strategy of source properties, which fixes a deadlock
  3328. ** Allow compilation of Guile-using programs in C99 mode with GCC 4.3 and later
  3329. ** Fixed build issue for GNU/Linux on IA64
  3330. ** Fixed build issues on NetBSD 1.6
  3331. ** Fixed build issue on Solaris 2.10 x86_64
  3332. ** Fixed build issue with DEC/Compaq/HP's compiler
  3333. ** Fixed `scm_from_complex_double' build issue on FreeBSD
  3334. ** Fixed `alloca' build issue on FreeBSD 6
  3335. ** Removed use of non-portable makefile constructs
  3336. ** Fixed shadowing of libc's <random.h> on Tru64, which broke compilation
  3337. ** Make sure all tests honor `$TMPDIR'
  3338. Changes in 1.8.4 (since 1.8.3)
  3339. * Bugs fixed
  3340. ** CR (ASCII 0x0d) is (again) recognized as a token delimiter by the reader
  3341. ** Fixed a segmentation fault which occurred when displaying the
  3342. backtrace of a stack with a promise object (made by `delay') in it.
  3343. ** Make `accept' leave guile mode while blocking
  3344. ** `scm_c_read ()' and `scm_c_write ()' now type-check their port argument
  3345. ** Fixed a build problem on AIX (use of func_data identifier)
  3346. ** Fixed a segmentation fault which occurred when hashx-ref or hashx-set! was
  3347. called with an associator proc that returns neither a pair nor #f.
  3348. ** Secondary threads now always return a valid module for (current-module).
  3349. ** Avoid MacOS build problems caused by incorrect combination of "64"
  3350. system and library calls.
  3351. ** `guile-snarf' now honors `$TMPDIR'
  3352. ** `guile-config compile' now reports CPPFLAGS used at compile-time
  3353. ** Fixed build with Sun Studio (Solaris 9)
  3354. ** Fixed wrong-type-arg errors when creating zero length SRFI-4
  3355. uniform vectors on AIX.
  3356. ** Fixed a deadlock that occurs upon GC with multiple threads.
  3357. ** Fixed compile problem with GCC on Solaris and AIX (use of _Complex_I)
  3358. ** Fixed autotool-derived build problems on AIX 6.1.
  3359. ** Fixed NetBSD/alpha support
  3360. ** Fixed MacOS build problem caused by use of rl_get_keymap(_name)
  3361. * New modules (see the manual for details)
  3362. ** `(srfi srfi-69)'
  3363. * Documentation fixes and improvements
  3364. ** Removed premature breakpoint documentation
  3365. The features described are not available in the series of 1.8.x
  3366. releases, so the documentation was misleading and has been removed.
  3367. ** More about Guile's default *random-state* variable
  3368. ** GOOPS: more about how to use `next-method'
  3369. * Changes to the distribution
  3370. ** Corrected a few files that referred incorrectly to the old GPL + special exception licence
  3371. In fact Guile since 1.8.0 has been licensed with the GNU Lesser
  3372. General Public License, and the few incorrect files have now been
  3373. fixed to agree with the rest of the Guile distribution.
  3374. ** Removed unnecessary extra copies of COPYING*
  3375. The distribution now contains a single COPYING.LESSER at its top level.
  3376. Changes in 1.8.3 (since 1.8.2)
  3377. * New modules (see the manual for details)
  3378. ** `(srfi srfi-35)'
  3379. ** `(srfi srfi-37)'
  3380. * Bugs fixed
  3381. ** The `(ice-9 slib)' module now works as expected
  3382. ** Expressions like "(set! 'x #t)" no longer yield a crash
  3383. ** Warnings about duplicate bindings now go to stderr
  3384. ** A memory leak in `make-socket-address' was fixed
  3385. ** Alignment issues (e.g., on SPARC) in network routines were fixed
  3386. ** A threading issue that showed up at least on NetBSD was fixed
  3387. ** Build problems on Solaris and IRIX fixed
  3388. * Implementation improvements
  3389. ** The reader is now faster, which reduces startup time
  3390. ** Procedures returned by `record-accessor' and `record-modifier' are faster
  3391. Changes in 1.8.2 (since 1.8.1):
  3392. * New procedures (see the manual for details)
  3393. ** set-program-arguments
  3394. ** make-vtable
  3395. * Incompatible changes
  3396. ** The body of a top-level `define' no longer sees the binding being created
  3397. In a top-level `define', the binding being created is no longer visible
  3398. from the `define' body. This breaks code like
  3399. "(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now
  3400. unbound in the body. However, such code was not R5RS-compliant anyway,
  3401. per Section 5.2.1.
  3402. * Bugs fixed
  3403. ** Fractions were not `equal?' if stored in unreduced form.
  3404. (A subtle problem, since printing a value reduced it, making it work.)
  3405. ** srfi-60 `copy-bit' failed on 64-bit systems
  3406. ** "guile --use-srfi" option at the REPL can replace core functions
  3407. (Programs run with that option were ok, but in the interactive REPL
  3408. the core bindings got priority, preventing SRFI replacements or
  3409. extensions.)
  3410. ** `regexp-exec' doesn't abort() on #\nul in the input or bad flags arg
  3411. ** `kill' on mingw throws an error for a PID other than oneself
  3412. ** Procedure names are attached to procedure-with-setters
  3413. ** Array read syntax works with negative lower bound
  3414. ** `array-in-bounds?' fix if an array has different lower bounds on each index
  3415. ** `*' returns exact 0 for "(* inexact 0)"
  3416. This follows what it always did for "(* 0 inexact)".
  3417. ** SRFI-19: Value returned by `(current-time time-process)' was incorrect
  3418. ** SRFI-19: `date->julian-day' did not account for timezone offset
  3419. ** `ttyname' no longer crashes when passed a non-tty argument
  3420. ** `inet-ntop' no longer crashes on SPARC when passed an `AF_INET' address
  3421. ** Small memory leaks have been fixed in `make-fluid' and `add-history'
  3422. ** GOOPS: Fixed a bug in `method-more-specific?'
  3423. ** Build problems on Solaris fixed
  3424. ** Build problems on HP-UX IA64 fixed
  3425. ** Build problems on MinGW fixed
  3426. Changes in 1.8.1 (since 1.8.0):
  3427. * LFS functions are now used to access 64-bit files on 32-bit systems.
  3428. * New procedures (see the manual for details)
  3429. ** primitive-_exit - [Scheme] the-root-module
  3430. ** scm_primitive__exit - [C]
  3431. ** make-completion-function - [Scheme] (ice-9 readline)
  3432. ** scm_c_locale_stringn_to_number - [C]
  3433. ** scm_srfi1_append_reverse [C]
  3434. ** scm_srfi1_append_reverse_x [C]
  3435. ** scm_log - [C]
  3436. ** scm_log10 - [C]
  3437. ** scm_exp - [C]
  3438. ** scm_sqrt - [C]
  3439. * Bugs fixed
  3440. ** Build problems have been fixed on MacOS, SunOS, and QNX.
  3441. ** `strftime' fix sign of %z timezone offset.
  3442. ** A one-dimensional array can now be 'equal?' to a vector.
  3443. ** Structures, records, and SRFI-9 records can now be compared with `equal?'.
  3444. ** SRFI-14 standard char sets are recomputed upon a successful `setlocale'.
  3445. ** `record-accessor' and `record-modifier' now have strict type checks.
  3446. Record accessor and modifier procedures now throw an error if the
  3447. record type of the record they're given is not the type expected.
  3448. (Previously accessors returned #f and modifiers silently did nothing).
  3449. ** It is now OK to use both autoload and use-modules on a given module.
  3450. ** `apply' checks the number of arguments more carefully on "0 or 1" funcs.
  3451. Previously there was no checking on primatives like make-vector that
  3452. accept "one or two" arguments. Now there is.
  3453. ** The srfi-1 assoc function now calls its equality predicate properly.
  3454. Previously srfi-1 assoc would call the equality predicate with the key
  3455. last. According to the SRFI, the key should be first.
  3456. ** A bug in n-par-for-each and n-for-each-par-map has been fixed.
  3457. ** The array-set! procedure no longer segfaults when given a bit vector.
  3458. ** Bugs in make-shared-array have been fixed.
  3459. ** string<? and friends now follow char<? etc order on 8-bit chars.
  3460. ** The format procedure now handles inf and nan values for ~f correctly.
  3461. ** exact->inexact should no longer overflow when given certain large fractions.
  3462. ** srfi-9 accessor and modifier procedures now have strict record type checks.
  3463. This matches the srfi-9 specification.
  3464. ** (ice-9 ftw) procedures won't ignore different files with same inode number.
  3465. Previously the (ice-9 ftw) procedures would ignore any file that had
  3466. the same inode number as a file they had already seen, even if that
  3467. file was on a different device.
  3468. Changes in 1.8.0 (changes since the 1.6.x series):
  3469. * Changes to the distribution
  3470. ** Guile is now licensed with the GNU Lesser General Public License.
  3471. ** The manual is now licensed with the GNU Free Documentation License.
  3472. ** Guile now requires GNU MP (http://swox.com/gmp).
  3473. Guile now uses the GNU MP library for arbitrary precision arithmetic.
  3474. ** Guile now has separate private and public configuration headers.
  3475. That is, things like HAVE_STRING_H no longer leak from Guile's
  3476. headers.
  3477. ** Guile now provides and uses an "effective" version number.
  3478. Guile now provides scm_effective_version and effective-version
  3479. functions which return the "effective" version number. This is just
  3480. the normal full version string without the final micro-version number,
  3481. so the current effective-version is "1.8". The effective version
  3482. should remain unchanged during a stable series, and should be used for
  3483. items like the versioned share directory name
  3484. i.e. /usr/share/guile/1.8.
  3485. Providing an unchanging version number during a stable release for
  3486. things like the versioned share directory can be particularly
  3487. important for Guile "add-on" packages, since it provides a directory
  3488. that they can install to that won't be changed out from under them
  3489. with each micro release during a stable series.
  3490. ** Thread implementation has changed.
  3491. When you configure "--with-threads=null", you will get the usual
  3492. threading API (call-with-new-thread, make-mutex, etc), but you can't
  3493. actually create new threads. Also, "--with-threads=no" is now
  3494. equivalent to "--with-threads=null". This means that the thread API
  3495. is always present, although you might not be able to create new
  3496. threads.
  3497. When you configure "--with-threads=pthreads" or "--with-threads=yes",
  3498. you will get threads that are implemented with the portable POSIX
  3499. threads. These threads can run concurrently (unlike the previous
  3500. "coop" thread implementation), but need to cooperate for things like
  3501. the GC.
  3502. The default is "pthreads", unless your platform doesn't have pthreads,
  3503. in which case "null" threads are used.
  3504. See the manual for details, nodes "Initialization", "Multi-Threading",
  3505. "Blocking", and others.
  3506. ** There is the new notion of 'discouraged' features.
  3507. This is a milder form of deprecation.
  3508. Things that are discouraged should not be used in new code, but it is
  3509. OK to leave them in old code for now. When a discouraged feature is
  3510. used, no warning message is printed like there is for 'deprecated'
  3511. features. Also, things that are merely discouraged are nevertheless
  3512. implemented efficiently, while deprecated features can be very slow.
  3513. You can omit discouraged features from libguile by configuring it with
  3514. the '--disable-discouraged' option.
  3515. ** Deprecation warnings can be controlled at run-time.
  3516. (debug-enable 'warn-deprecated) switches them on and (debug-disable
  3517. 'warn-deprecated) switches them off.
  3518. ** Support for SRFI 61, extended cond syntax for multiple values has
  3519. been added.
  3520. This SRFI is always available.
  3521. ** Support for require-extension, SRFI-55, has been added.
  3522. The SRFI-55 special form `require-extension' has been added. It is
  3523. available at startup, and provides a portable way to load Scheme
  3524. extensions. SRFI-55 only requires support for one type of extension,
  3525. "srfi"; so a set of SRFIs may be loaded via (require-extension (srfi 1
  3526. 13 14)).
  3527. ** New module (srfi srfi-26) provides support for `cut' and `cute'.
  3528. The (srfi srfi-26) module is an implementation of SRFI-26 which
  3529. provides the `cut' and `cute' syntax. These may be used to specialize
  3530. parameters without currying.
  3531. ** New module (srfi srfi-31)
  3532. This is an implementation of SRFI-31 which provides a special form
  3533. `rec' for recursive evaluation.
  3534. ** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
  3535. been merged with the core, making their functionality always
  3536. available.
  3537. The modules are still available, tho, and you could use them together
  3538. with a renaming import, for example.
  3539. ** Guile no longer includes its own version of libltdl.
  3540. The official version is good enough now.
  3541. ** The --enable-htmldoc option has been removed from 'configure'.
  3542. Support for translating the documentation into HTML is now always
  3543. provided. Use 'make html'.
  3544. ** New module (ice-9 serialize):
  3545. (serialize FORM1 ...) and (parallelize FORM1 ...) are useful when you
  3546. don't trust the thread safety of most of your program, but where you
  3547. have some section(s) of code which you consider can run in parallel to
  3548. other sections. See ice-9/serialize.scm for more information.
  3549. ** The configure option '--disable-arrays' has been removed.
  3550. Support for arrays and uniform numeric arrays is now always included
  3551. in Guile.
  3552. * Changes to the stand-alone interpreter
  3553. ** New command line option `-L'.
  3554. This option adds a directory to the front of the load path.
  3555. ** New command line option `--no-debug'.
  3556. Specifying `--no-debug' on the command line will keep the debugging
  3557. evaluator turned off, even for interactive sessions.
  3558. ** User-init file ~/.guile is now loaded with the debugging evaluator.
  3559. Previously, the normal evaluator would have been used. Using the
  3560. debugging evaluator gives better error messages.
  3561. ** The '-e' option now 'read's its argument.
  3562. This is to allow the new '(@ MODULE-NAME VARIABLE-NAME)' construct to
  3563. be used with '-e'. For example, you can now write a script like
  3564. #! /bin/sh
  3565. exec guile -e '(@ (demo) main)' -s "$0" "$@"
  3566. !#
  3567. (define-module (demo)
  3568. :export (main))
  3569. (define (main args)
  3570. (format #t "Demo: ~a~%" args))
  3571. * Changes to Scheme functions and syntax
  3572. ** Guardians have changed back to their original semantics
  3573. Guardians now behave like described in the paper by Dybvig et al. In
  3574. particular, they no longer make guarantees about the order in which
  3575. they return objects, and they can no longer be greedy.
  3576. They no longer drop cyclic data structures.
  3577. The C function scm_make_guardian has been changed incompatibly and no
  3578. longer takes the 'greedy_p' argument.
  3579. ** New function hashx-remove!
  3580. This function completes the set of 'hashx' functions.
  3581. ** The concept of dynamic roots has been factored into continuation
  3582. barriers and dynamic states.
  3583. Each thread has a current dynamic state that carries the values of the
  3584. fluids. You can create and copy dynamic states and use them as the
  3585. second argument for 'eval'. See "Fluids and Dynamic States" in the
  3586. manual.
  3587. To restrict the influence that captured continuations can have on the
  3588. control flow, you can errect continuation barriers. See "Continuation
  3589. Barriers" in the manual.
  3590. The function call-with-dynamic-root now essentially temporarily
  3591. installs a new dynamic state and errects a continuation barrier.
  3592. ** The default load path no longer includes "." at the end.
  3593. Automatically loading modules from the current directory should not
  3594. happen by default. If you want to allow it in a more controlled
  3595. manner, set the environment variable GUILE_LOAD_PATH or the Scheme
  3596. variable %load-path.
  3597. ** The uniform vector and array support has been overhauled.
  3598. It now complies with SRFI-4 and the weird prototype based uniform
  3599. array creation has been deprecated. See the manual for more details.
  3600. Some non-compatible changes have been made:
  3601. - characters can no longer be stored into byte arrays.
  3602. - strings and bit vectors are no longer considered to be uniform numeric
  3603. vectors.
  3604. - array-rank throws an error for non-arrays instead of returning zero.
  3605. - array-ref does no longer accept non-arrays when no indices are given.
  3606. There is the new notion of 'generalized vectors' and corresponding
  3607. procedures like 'generalized-vector-ref'. Generalized vectors include
  3608. strings, bitvectors, ordinary vectors, and uniform numeric vectors.
  3609. Arrays use generalized vectors as their storage, so that you still
  3610. have arrays of characters, bits, etc. However, uniform-array-read!
  3611. and uniform-array-write can no longer read/write strings and
  3612. bitvectors.
  3613. ** There is now support for copy-on-write substrings, mutation-sharing
  3614. substrings and read-only strings.
  3615. Three new procedures are related to this: substring/shared,
  3616. substring/copy, and substring/read-only. See the manual for more
  3617. information.
  3618. ** Backtraces will now highlight the value that caused the error.
  3619. By default, these values are enclosed in "{...}", such as in this
  3620. example:
  3621. guile> (car 'a)
  3622. Backtrace:
  3623. In current input:
  3624. 1: 0* [car {a}]
  3625. <unnamed port>:1:1: In procedure car in expression (car (quote a)):
  3626. <unnamed port>:1:1: Wrong type (expecting pair): a
  3627. ABORT: (wrong-type-arg)
  3628. The prefix and suffix used for highlighting can be set via the two new
  3629. printer options 'highlight-prefix' and 'highlight-suffix'. For
  3630. example, putting this into ~/.guile will output the bad value in bold
  3631. on an ANSI terminal:
  3632. (print-set! highlight-prefix "\x1b[1m")
  3633. (print-set! highlight-suffix "\x1b[22m")
  3634. ** 'gettext' support for internationalization has been added.
  3635. See the manual for details.
  3636. ** New syntax '@' and '@@':
  3637. You can now directly refer to variables exported from a module by
  3638. writing
  3639. (@ MODULE-NAME VARIABLE-NAME)
  3640. For example (@ (ice-9 pretty-print) pretty-print) will directly access
  3641. the pretty-print variable exported from the (ice-9 pretty-print)
  3642. module. You don't need to 'use' that module first. You can also use
  3643. '@' as a target of 'set!', as in (set! (@ mod var) val).
  3644. The related syntax (@@ MODULE-NAME VARIABLE-NAME) works just like '@',
  3645. but it can also access variables that have not been exported. It is
  3646. intended only for kluges and temporary fixes and for debugging, not
  3647. for ordinary code.
  3648. ** Keyword syntax has been made more disciplined.
  3649. Previously, the name of a keyword was read as a 'token' but printed as
  3650. a symbol. Now, it is read as a general Scheme datum which must be a
  3651. symbol.
  3652. Previously:
  3653. guile> #:12
  3654. #:#{12}#
  3655. guile> #:#{12}#
  3656. #:#{\#{12}\#}#
  3657. guile> #:(a b c)
  3658. #:#{}#
  3659. ERROR: In expression (a b c):
  3660. Unbound variable: a
  3661. guile> #: foo
  3662. #:#{}#
  3663. ERROR: Unbound variable: foo
  3664. Now:
  3665. guile> #:12
  3666. ERROR: Wrong type (expecting symbol): 12
  3667. guile> #:#{12}#
  3668. #:#{12}#
  3669. guile> #:(a b c)
  3670. ERROR: Wrong type (expecting symbol): (a b c)
  3671. guile> #: foo
  3672. #:foo
  3673. ** The printing of symbols that might look like keywords can be
  3674. controlled.
  3675. The new printer option 'quote-keywordish-symbols' controls how symbols
  3676. are printed that have a colon as their first or last character. The
  3677. default now is to only quote a symbol with #{...}# when the read
  3678. option 'keywords' is not '#f'. Thus:
  3679. guile> (define foo (string->symbol ":foo"))
  3680. guile> (read-set! keywords #f)
  3681. guile> foo
  3682. :foo
  3683. guile> (read-set! keywords 'prefix)
  3684. guile> foo
  3685. #{:foo}#
  3686. guile> (print-set! quote-keywordish-symbols #f)
  3687. guile> foo
  3688. :foo
  3689. ** 'while' now provides 'break' and 'continue'
  3690. break and continue were previously bound in a while loop, but not
  3691. documented, and continue didn't quite work properly. The undocumented
  3692. parameter to break which gave a return value for the while has been
  3693. dropped.
  3694. ** 'call-with-current-continuation' is now also available under the name
  3695. 'call/cc'.
  3696. ** The module system now checks for duplicate bindings.
  3697. The module system now can check for name conflicts among imported
  3698. bindings.
  3699. The behavior can be controlled by specifying one or more 'duplicates'
  3700. handlers. For example, to make Guile return an error for every name
  3701. collision, write:
  3702. (define-module (foo)
  3703. :use-module (bar)
  3704. :use-module (baz)
  3705. :duplicates check)
  3706. The new default behavior of the module system when a name collision
  3707. has been detected is to
  3708. 1. Give priority to bindings marked as a replacement.
  3709. 2. Issue a warning (different warning if overriding core binding).
  3710. 3. Give priority to the last encountered binding (this corresponds to
  3711. the old behavior).
  3712. If you want the old behavior back without replacements or warnings you
  3713. can add the line:
  3714. (default-duplicate-binding-handler 'last)
  3715. to your .guile init file.
  3716. ** New define-module option: :replace
  3717. :replace works as :export, but, in addition, marks the binding as a
  3718. replacement.
  3719. A typical example is `format' in (ice-9 format) which is a replacement
  3720. for the core binding `format'.
  3721. ** Adding prefixes to imported bindings in the module system
  3722. There is now a new :use-module option :prefix. It can be used to add
  3723. a prefix to all imported bindings.
  3724. (define-module (foo)
  3725. :use-module ((bar) :prefix bar:))
  3726. will import all bindings exported from bar, but rename them by adding
  3727. the prefix `bar:'.
  3728. ** Conflicting generic functions can be automatically merged.
  3729. When two imported bindings conflict and they are both generic
  3730. functions, the two functions can now be merged automatically. This is
  3731. activated with the 'duplicates' handler 'merge-generics'.
  3732. ** New function: effective-version
  3733. Returns the "effective" version number. This is just the normal full
  3734. version string without the final micro-version number. See "Changes
  3735. to the distribution" above.
  3736. ** New threading functions: parallel, letpar, par-map, and friends
  3737. These are convenient ways to run calculations in parallel in new
  3738. threads. See "Parallel forms" in the manual for details.
  3739. ** New function 'try-mutex'.
  3740. This function will attempt to lock a mutex but will return immediately
  3741. instead of blocking and indicate failure.
  3742. ** Waiting on a condition variable can have a timeout.
  3743. The function 'wait-condition-variable' now takes a third, optional
  3744. argument that specifies the point in time where the waiting should be
  3745. aborted.
  3746. ** New function 'broadcast-condition-variable'.
  3747. ** New functions 'all-threads' and 'current-thread'.
  3748. ** Signals and system asyncs work better with threads.
  3749. The function 'sigaction' now takes a fourth, optional, argument that
  3750. specifies the thread that the handler should run in. When the
  3751. argument is omitted, the handler will run in the thread that called
  3752. 'sigaction'.
  3753. Likewise, 'system-async-mark' takes a second, optional, argument that
  3754. specifies the thread that the async should run in. When it is
  3755. omitted, the async will run in the thread that called
  3756. 'system-async-mark'.
  3757. C code can use the new functions scm_sigaction_for_thread and
  3758. scm_system_async_mark_for_thread to pass the new thread argument.
  3759. When a thread blocks on a mutex, a condition variable or is waiting
  3760. for IO to be possible, it will still execute system asyncs. This can
  3761. be used to interrupt such a thread by making it execute a 'throw', for
  3762. example.
  3763. ** The function 'system-async' is deprecated.
  3764. You can now pass any zero-argument procedure to 'system-async-mark'.
  3765. The function 'system-async' will just return its argument unchanged
  3766. now.
  3767. ** New functions 'call-with-blocked-asyncs' and
  3768. 'call-with-unblocked-asyncs'
  3769. The expression (call-with-blocked-asyncs PROC) will call PROC and will
  3770. block execution of system asyncs for the current thread by one level
  3771. while PROC runs. Likewise, call-with-unblocked-asyncs will call a
  3772. procedure and will unblock the execution of system asyncs by one
  3773. level for the current thread.
  3774. Only system asyncs are affected by these functions.
  3775. ** The functions 'mask-signals' and 'unmask-signals' are deprecated.
  3776. Use 'call-with-blocked-asyncs' or 'call-with-unblocked-asyncs'
  3777. instead. Those functions are easier to use correctly and can be
  3778. nested.
  3779. ** New function 'unsetenv'.
  3780. ** New macro 'define-syntax-public'.
  3781. It works like 'define-syntax' and also exports the defined macro (but
  3782. only on top-level).
  3783. ** There is support for Infinity and NaNs.
  3784. Following PLT Scheme, Guile can now work with infinite numbers, and
  3785. 'not-a-numbers'.
  3786. There is new syntax for numbers: "+inf.0" (infinity), "-inf.0"
  3787. (negative infinity), "+nan.0" (not-a-number), and "-nan.0" (same as
  3788. "+nan.0"). These numbers are inexact and have no exact counterpart.
  3789. Dividing by an inexact zero returns +inf.0 or -inf.0, depending on the
  3790. sign of the dividend. The infinities are integers, and they answer #t
  3791. for both 'even?' and 'odd?'. The +nan.0 value is not an integer and is
  3792. not '=' to itself, but '+nan.0' is 'eqv?' to itself.
  3793. For example
  3794. (/ 1 0.0)
  3795. => +inf.0
  3796. (/ 0 0.0)
  3797. => +nan.0
  3798. (/ 0)
  3799. ERROR: Numerical overflow
  3800. Two new predicates 'inf?' and 'nan?' can be used to test for the
  3801. special values.
  3802. ** Inexact zero can have a sign.
  3803. Guile can now distinguish between plus and minus inexact zero, if your
  3804. platform supports this, too. The two zeros are equal according to
  3805. '=', but not according to 'eqv?'. For example
  3806. (- 0.0)
  3807. => -0.0
  3808. (= 0.0 (- 0.0))
  3809. => #t
  3810. (eqv? 0.0 (- 0.0))
  3811. => #f
  3812. ** Guile now has exact rationals.
  3813. Guile can now represent fractions such as 1/3 exactly. Computing with
  3814. them is also done exactly, of course:
  3815. (* 1/3 3/2)
  3816. => 1/2
  3817. ** 'floor', 'ceiling', 'round' and 'truncate' now return exact numbers
  3818. for exact arguments.
  3819. For example: (floor 2) now returns an exact 2 where in the past it
  3820. returned an inexact 2.0. Likewise, (floor 5/4) returns an exact 1.
  3821. ** inexact->exact no longer returns only integers.
  3822. Without exact rationals, the closest exact number was always an
  3823. integer, but now inexact->exact returns the fraction that is exactly
  3824. equal to a floating point number. For example:
  3825. (inexact->exact 1.234)
  3826. => 694680242521899/562949953421312
  3827. When you want the old behavior, use 'round' explicitly:
  3828. (inexact->exact (round 1.234))
  3829. => 1
  3830. ** New function 'rationalize'.
  3831. This function finds a simple fraction that is close to a given real
  3832. number. For example (and compare with inexact->exact above):
  3833. (rationalize (inexact->exact 1.234) 1/2000)
  3834. => 58/47
  3835. Note that, as required by R5RS, rationalize returns only then an exact
  3836. result when both its arguments are exact.
  3837. ** 'odd?' and 'even?' work also for inexact integers.
  3838. Previously, (odd? 1.0) would signal an error since only exact integers
  3839. were recognized as integers. Now (odd? 1.0) returns #t, (odd? 2.0)
  3840. returns #f and (odd? 1.5) signals an error.
  3841. ** Guile now has uninterned symbols.
  3842. The new function 'make-symbol' will return an uninterned symbol. This
  3843. is a symbol that is unique and is guaranteed to remain unique.
  3844. However, uninterned symbols can not yet be read back in.
  3845. Use the new function 'symbol-interned?' to check whether a symbol is
  3846. interned or not.
  3847. ** pretty-print has more options.
  3848. The function pretty-print from the (ice-9 pretty-print) module can now
  3849. also be invoked with keyword arguments that control things like
  3850. maximum output width. See the manual for details.
  3851. ** Variables have no longer a special behavior for `equal?'.
  3852. Previously, comparing two variables with `equal?' would recursivly
  3853. compare their values. This is no longer done. Variables are now only
  3854. `equal?' if they are `eq?'.
  3855. ** `(begin)' is now valid.
  3856. You can now use an empty `begin' form. It will yield #<unspecified>
  3857. when evaluated and simply be ignored in a definition context.
  3858. ** Deprecated: procedure->macro
  3859. Change your code to use 'define-macro' or r5rs macros. Also, be aware
  3860. that macro expansion will not be done during evaluation, but prior to
  3861. evaluation.
  3862. ** Soft ports now allow a `char-ready?' procedure
  3863. The vector argument to `make-soft-port' can now have a length of
  3864. either 5 or 6. (Previously the length had to be 5.) The optional 6th
  3865. element is interpreted as an `input-waiting' thunk -- i.e. a thunk
  3866. that returns the number of characters that can be read immediately
  3867. without the soft port blocking.
  3868. ** Deprecated: undefine
  3869. There is no replacement for undefine.
  3870. ** The functions make-keyword-from-dash-symbol and keyword-dash-symbol
  3871. have been discouraged.
  3872. They are relics from a time where a keyword like #:foo was used
  3873. directly as a Tcl option "-foo" and thus keywords were internally
  3874. stored as a symbol with a starting dash. We now store a symbol
  3875. without the dash.
  3876. Use symbol->keyword and keyword->symbol instead.
  3877. ** The `cheap' debug option is now obsolete
  3878. Evaluator trap calls are now unconditionally "cheap" - in other words,
  3879. they pass a debug object to the trap handler rather than a full
  3880. continuation. The trap handler code can capture a full continuation
  3881. by using `call-with-current-continuation' in the usual way, if it so
  3882. desires.
  3883. The `cheap' option is retained for now so as not to break existing
  3884. code which gets or sets it, but setting it now has no effect. It will
  3885. be removed in the next major Guile release.
  3886. ** Evaluator trap calls now support `tweaking'
  3887. `Tweaking' means that the trap handler code can modify the Scheme
  3888. expression that is about to be evaluated (in the case of an
  3889. enter-frame trap) or the value that is being returned (in the case of
  3890. an exit-frame trap). The trap handler code indicates that it wants to
  3891. do this by returning a pair whose car is the symbol 'instead and whose
  3892. cdr is the modified expression or return value.
  3893. * Changes to the C interface
  3894. ** The functions scm_hash_fn_remove_x and scm_hashx_remove_x no longer
  3895. take a 'delete' function argument.
  3896. This argument makes no sense since the delete function is used to
  3897. remove a pair from an alist, and this must not be configurable.
  3898. This is an incompatible change.
  3899. ** The GH interface is now subject to the deprecation mechanism
  3900. The GH interface has been deprecated for quite some time but now it is
  3901. actually removed from Guile when it is configured with
  3902. --disable-deprecated.
  3903. See the manual "Transitioning away from GH" for more information.
  3904. ** A new family of functions for converting between C values and
  3905. Scheme values has been added.
  3906. These functions follow a common naming scheme and are designed to be
  3907. easier to use, thread-safe and more future-proof than the older
  3908. alternatives.
  3909. - int scm_is_* (...)
  3910. These are predicates that return a C boolean: 1 or 0. Instead of
  3911. SCM_NFALSEP, you can now use scm_is_true, for example.
  3912. - <type> scm_to_<type> (SCM val, ...)
  3913. These are functions that convert a Scheme value into an appropriate
  3914. C value. For example, you can use scm_to_int to safely convert from
  3915. a SCM to an int.
  3916. - SCM scm_from_<type> (<type> val, ...)
  3917. These functions convert from a C type to a SCM value; for example,
  3918. scm_from_int for ints.
  3919. There is a huge number of these functions, for numbers, strings,
  3920. symbols, vectors, etc. They are documented in the reference manual in
  3921. the API section together with the types that they apply to.
  3922. ** New functions for dealing with complex numbers in C have been added.
  3923. The new functions are scm_c_make_rectangular, scm_c_make_polar,
  3924. scm_c_real_part, scm_c_imag_part, scm_c_magnitude and scm_c_angle.
  3925. They work like scm_make_rectangular etc but take or return doubles
  3926. directly.
  3927. ** The function scm_make_complex has been discouraged.
  3928. Use scm_c_make_rectangular instead.
  3929. ** The INUM macros have been deprecated.
  3930. A lot of code uses these macros to do general integer conversions,
  3931. although the macros only work correctly with fixnums. Use the
  3932. following alternatives.
  3933. SCM_INUMP -> scm_is_integer or similar
  3934. SCM_NINUMP -> !scm_is_integer or similar
  3935. SCM_MAKINUM -> scm_from_int or similar
  3936. SCM_INUM -> scm_to_int or similar
  3937. SCM_VALIDATE_INUM_* -> Do not use these; scm_to_int, etc. will
  3938. do the validating for you.
  3939. ** The scm_num2<type> and scm_<type>2num functions and scm_make_real
  3940. have been discouraged.
  3941. Use the newer scm_to_<type> and scm_from_<type> functions instead for
  3942. new code. The functions have been discouraged since they don't fit
  3943. the naming scheme.
  3944. ** The 'boolean' macros SCM_FALSEP etc have been discouraged.
  3945. They have strange names, especially SCM_NFALSEP, and SCM_BOOLP
  3946. evaluates its argument twice. Use scm_is_true, etc. instead for new
  3947. code.
  3948. ** The macro SCM_EQ_P has been discouraged.
  3949. Use scm_is_eq for new code, which fits better into the naming
  3950. conventions.
  3951. ** The macros SCM_CONSP, SCM_NCONSP, SCM_NULLP, and SCM_NNULLP have
  3952. been discouraged.
  3953. Use the function scm_is_pair or scm_is_null instead.
  3954. ** The functions scm_round and scm_truncate have been deprecated and
  3955. are now available as scm_c_round and scm_c_truncate, respectively.
  3956. These functions occupy the names that scm_round_number and
  3957. scm_truncate_number should have.
  3958. ** The functions scm_c_string2str, scm_c_substring2str, and
  3959. scm_c_symbol2str have been deprecated.
  3960. Use scm_to_locale_stringbuf or similar instead, maybe together with
  3961. scm_substring.
  3962. ** New functions scm_c_make_string, scm_c_string_length,
  3963. scm_c_string_ref, scm_c_string_set_x, scm_c_substring,
  3964. scm_c_substring_shared, scm_c_substring_copy.
  3965. These are like scm_make_string, scm_length, etc. but are slightly
  3966. easier to use from C.
  3967. ** The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
  3968. SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
  3969. They export too many assumptions about the implementation of strings
  3970. and symbols that are no longer true in the presence of
  3971. mutation-sharing substrings and when Guile switches to some form of
  3972. Unicode.
  3973. When working with strings, it is often best to use the normal string
  3974. functions provided by Guile, such as scm_c_string_ref,
  3975. scm_c_string_set_x, scm_string_append, etc. Be sure to look in the
  3976. manual since many more such functions are now provided than
  3977. previously.
  3978. When you want to convert a SCM string to a C string, use the
  3979. scm_to_locale_string function or similar instead. For symbols, use
  3980. scm_symbol_to_string and then work with that string. Because of the
  3981. new string representation, scm_symbol_to_string does not need to copy
  3982. and is thus quite efficient.
  3983. ** Some string, symbol and keyword functions have been discouraged.
  3984. They don't fit into the uniform naming scheme and are not explicit
  3985. about the character encoding.
  3986. Replace according to the following table:
  3987. scm_allocate_string -> scm_c_make_string
  3988. scm_take_str -> scm_take_locale_stringn
  3989. scm_take0str -> scm_take_locale_string
  3990. scm_mem2string -> scm_from_locale_stringn
  3991. scm_str2string -> scm_from_locale_string
  3992. scm_makfrom0str -> scm_from_locale_string
  3993. scm_mem2symbol -> scm_from_locale_symboln
  3994. scm_mem2uninterned_symbol -> scm_from_locale_stringn + scm_make_symbol
  3995. scm_str2symbol -> scm_from_locale_symbol
  3996. SCM_SYMBOL_HASH -> scm_hashq
  3997. SCM_SYMBOL_INTERNED_P -> scm_symbol_interned_p
  3998. scm_c_make_keyword -> scm_from_locale_keyword
  3999. ** The functions scm_keyword_to_symbol and sym_symbol_to_keyword are
  4000. now also available to C code.
  4001. ** SCM_KEYWORDP and SCM_KEYWORDSYM have been deprecated.
  4002. Use scm_is_keyword and scm_keyword_to_symbol instead, but note that
  4003. the latter returns the true name of the keyword, not the 'dash name',
  4004. as SCM_KEYWORDSYM used to do.
  4005. ** A new way to access arrays in a thread-safe and efficient way has
  4006. been added.
  4007. See the manual, node "Accessing Arrays From C".
  4008. ** The old uniform vector and bitvector implementations have been
  4009. unceremoniously removed.
  4010. This implementation exposed the details of the tagging system of
  4011. Guile. Use the new C API explained in the manual in node "Uniform
  4012. Numeric Vectors" and "Bit Vectors", respectively.
  4013. The following macros are gone: SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
  4014. SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
  4015. SCM_SET_UVECTOR_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
  4016. SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
  4017. SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
  4018. SCM_SET_BITVECTOR_LENGTH, SCM_BITVEC_REF, SCM_BITVEC_SET,
  4019. SCM_BITVEC_CLR.
  4020. ** The macros dealing with vectors have been deprecated.
  4021. Use the new functions scm_is_vector, scm_vector_elements,
  4022. scm_vector_writable_elements, etc, or scm_is_simple_vector,
  4023. SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET, etc instead. See the
  4024. manual for more details.
  4025. Deprecated are SCM_VECTORP, SCM_VELTS, SCM_VECTOR_MAX_LENGTH,
  4026. SCM_VECTOR_LENGTH, SCM_VECTOR_REF, SCM_VECTOR_SET, SCM_WRITABLE_VELTS.
  4027. The following macros have been removed: SCM_VECTOR_BASE,
  4028. SCM_SET_VECTOR_BASE, SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
  4029. SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS.
  4030. ** Some C functions and macros related to arrays have been deprecated.
  4031. Migrate according to the following table:
  4032. scm_make_uve -> scm_make_typed_array, scm_make_u8vector etc.
  4033. scm_make_ra -> scm_make_array
  4034. scm_shap2ra -> scm_make_array
  4035. scm_cvref -> scm_c_generalized_vector_ref
  4036. scm_ra_set_contp -> do not use
  4037. scm_aind -> scm_array_handle_pos
  4038. scm_raprin1 -> scm_display or scm_write
  4039. SCM_ARRAYP -> scm_is_array
  4040. SCM_ARRAY_NDIM -> scm_c_array_rank
  4041. SCM_ARRAY_DIMS -> scm_array_handle_dims
  4042. SCM_ARRAY_CONTP -> do not use
  4043. SCM_ARRAY_MEM -> do not use
  4044. SCM_ARRAY_V -> scm_array_handle_elements or similar
  4045. SCM_ARRAY_BASE -> do not use
  4046. ** SCM_CELL_WORD_LOC has been deprecated.
  4047. Use the new macro SCM_CELL_OBJECT_LOC instead, which returns a pointer
  4048. to a SCM, as opposed to a pointer to a scm_t_bits.
  4049. This was done to allow the correct use of pointers into the Scheme
  4050. heap. Previously, the heap words were of type scm_t_bits and local
  4051. variables and function arguments were of type SCM, making it
  4052. non-standards-conformant to have a pointer that can point to both.
  4053. ** New macros SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, etc.
  4054. These macros should be used instead of SCM_CELL_WORD_2/3 to access the
  4055. second and third words of double smobs. Likewise for
  4056. SCM_SET_SMOB_DATA_2 and SCM_SET_SMOB_DATA_3.
  4057. Also, there is SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS that should be
  4058. used to get and set the 16 exra bits in the zeroth word of a smob.
  4059. And finally, there is SCM_SMOB_OBJECT and SCM_SMOB_SET_OBJECT for
  4060. accesing the first immediate word of a smob as a SCM value, and there
  4061. is SCM_SMOB_OBJECT_LOC for getting a pointer to the first immediate
  4062. smob word. Like wise for SCM_SMOB_OBJECT_2, etc.
  4063. ** New way to deal with non-local exits and re-entries.
  4064. There is a new set of functions that essentially do what
  4065. scm_internal_dynamic_wind does, but in a way that is more convenient
  4066. for C code in some situations. Here is a quick example of how to
  4067. prevent a potential memory leak:
  4068. void
  4069. foo ()
  4070. {
  4071. char *mem;
  4072. scm_dynwind_begin (0);
  4073. mem = scm_malloc (100);
  4074. scm_dynwind_unwind_handler (free, mem, SCM_F_WIND_EXPLICITLY);
  4075. /* MEM would leak if BAR throws an error.
  4076. SCM_DYNWIND_UNWIND_HANDLER frees it nevertheless.
  4077. */
  4078. bar ();
  4079. scm_dynwind_end ();
  4080. /* Because of SCM_F_WIND_EXPLICITLY, MEM will be freed by
  4081. SCM_DYNWIND_END as well.
  4082. */
  4083. }
  4084. For full documentation, see the node "Dynamic Wind" in the manual.
  4085. ** New function scm_dynwind_free
  4086. This function calls 'free' on a given pointer when a dynwind context
  4087. is left. Thus the call to scm_dynwind_unwind_handler above could be
  4088. replaced with simply scm_dynwind_free (mem).
  4089. ** New functions scm_c_call_with_blocked_asyncs and
  4090. scm_c_call_with_unblocked_asyncs
  4091. Like scm_call_with_blocked_asyncs etc. but for C functions.
  4092. ** New functions scm_dynwind_block_asyncs and scm_dynwind_unblock_asyncs
  4093. In addition to scm_c_call_with_blocked_asyncs you can now also use
  4094. scm_dynwind_block_asyncs in a 'dynwind context' (see above). Likewise for
  4095. scm_c_call_with_unblocked_asyncs and scm_dynwind_unblock_asyncs.
  4096. ** The macros SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
  4097. SCM_REALLOW_INTS have been deprecated.
  4098. They do no longer fulfill their original role of blocking signal
  4099. delivery. Depending on what you want to achieve, replace a pair of
  4100. SCM_DEFER_INTS and SCM_ALLOW_INTS with a dynwind context that locks a
  4101. mutex, blocks asyncs, or both. See node "Critical Sections" in the
  4102. manual.
  4103. ** The value 'scm_mask_ints' is no longer writable.
  4104. Previously, you could set scm_mask_ints directly. This is no longer
  4105. possible. Use scm_c_call_with_blocked_asyncs and
  4106. scm_c_call_with_unblocked_asyncs instead.
  4107. ** New way to temporarily set the current input, output or error ports
  4108. C code can now use scm_dynwind_current_<foo>_port in a 'dynwind
  4109. context' (see above). <foo> is one of "input", "output" or "error".
  4110. ** New way to temporarily set fluids
  4111. C code can now use scm_dynwind_fluid in a 'dynwind context' (see
  4112. above) to temporarily set the value of a fluid.
  4113. ** New types scm_t_intmax and scm_t_uintmax.
  4114. On platforms that have them, these types are identical to intmax_t and
  4115. uintmax_t, respectively. On other platforms, they are identical to
  4116. the largest integer types that Guile knows about.
  4117. ** The functions scm_unmemocopy and scm_unmemoize have been removed.
  4118. You should not have used them.
  4119. ** Many public #defines with generic names have been made private.
  4120. #defines with generic names like HAVE_FOO or SIZEOF_FOO have been made
  4121. private or renamed with a more suitable public name.
  4122. ** The macro SCM_TYP16S has been deprecated.
  4123. This macro is not intended for public use.
  4124. ** The macro SCM_SLOPPY_INEXACTP has been deprecated.
  4125. Use scm_is_true (scm_inexact_p (...)) instead.
  4126. ** The macro SCM_SLOPPY_REALP has been deprecated.
  4127. Use scm_is_real instead.
  4128. ** The macro SCM_SLOPPY_COMPLEXP has been deprecated.
  4129. Use scm_is_complex instead.
  4130. ** Some preprocessor defines have been deprecated.
  4131. These defines indicated whether a certain feature was present in Guile
  4132. or not. Going forward, assume that the features are always present.
  4133. The macros are: USE_THREADS, GUILE_ISELECT, READER_EXTENSIONS,
  4134. DEBUG_EXTENSIONS, DYNAMIC_LINKING.
  4135. The following macros have been removed completely: MEMOIZE_LOCALS,
  4136. SCM_RECKLESS, SCM_CAUTIOUS.
  4137. ** The preprocessor define STACK_DIRECTION has been deprecated.
  4138. There should be no need to know about the stack direction for ordinary
  4139. programs.
  4140. ** New function: scm_effective_version
  4141. Returns the "effective" version number. This is just the normal full
  4142. version string without the final micro-version number. See "Changes
  4143. to the distribution" above.
  4144. ** The function scm_call_with_new_thread has a new prototype.
  4145. Instead of taking a list with the thunk and handler, these two
  4146. arguments are now passed directly:
  4147. SCM scm_call_with_new_thread (SCM thunk, SCM handler);
  4148. This is an incompatible change.
  4149. ** New snarfer macro SCM_DEFINE_PUBLIC.
  4150. This is like SCM_DEFINE, but also calls scm_c_export for the defined
  4151. function in the init section.
  4152. ** The snarfer macro SCM_SNARF_INIT is now officially supported.
  4153. ** Garbage collector rewrite.
  4154. The garbage collector is cleaned up a lot, and now uses lazy
  4155. sweeping. This is reflected in the output of (gc-stats); since cells
  4156. are being freed when they are allocated, the cells-allocated field
  4157. stays roughly constant.
  4158. For malloc related triggers, the behavior is changed. It uses the same
  4159. heuristic as the cell-triggered collections. It may be tuned with the
  4160. environment variables GUILE_MIN_YIELD_MALLOC. This is the percentage
  4161. for minimum yield of malloc related triggers. The default is 40.
  4162. GUILE_INIT_MALLOC_LIMIT sets the initial trigger for doing a GC. The
  4163. default is 200 kb.
  4164. Debugging operations for the freelist have been deprecated, along with
  4165. the C variables that control garbage collection. The environment
  4166. variables GUILE_MAX_SEGMENT_SIZE, GUILE_INIT_SEGMENT_SIZE_2,
  4167. GUILE_INIT_SEGMENT_SIZE_1, and GUILE_MIN_YIELD_2 should be used.
  4168. For understanding the memory usage of a GUILE program, the routine
  4169. gc-live-object-stats returns an alist containing the number of live
  4170. objects for every type.
  4171. ** The function scm_definedp has been renamed to scm_defined_p
  4172. The name scm_definedp is deprecated.
  4173. ** The struct scm_cell type has been renamed to scm_t_cell
  4174. This is in accordance to Guile's naming scheme for types. Note that
  4175. the name scm_cell is now used for a function that allocates and
  4176. initializes a new cell (see below).
  4177. ** New functions for memory management
  4178. A new set of functions for memory management has been added since the
  4179. old way (scm_must_malloc, scm_must_free, etc) was error prone and
  4180. indeed, Guile itself contained some long standing bugs that could
  4181. cause aborts in long running programs.
  4182. The new functions are more symmetrical and do not need cooperation
  4183. from smob free routines, among other improvements.
  4184. The new functions are scm_malloc, scm_realloc, scm_calloc, scm_strdup,
  4185. scm_strndup, scm_gc_malloc, scm_gc_calloc, scm_gc_realloc,
  4186. scm_gc_free, scm_gc_register_collectable_memory, and
  4187. scm_gc_unregister_collectable_memory. Refer to the manual for more
  4188. details and for upgrading instructions.
  4189. The old functions for memory management have been deprecated. They
  4190. are: scm_must_malloc, scm_must_realloc, scm_must_free,
  4191. scm_must_strdup, scm_must_strndup, scm_done_malloc, scm_done_free.
  4192. ** Declarations of exported features are marked with SCM_API.
  4193. Every declaration of a feature that belongs to the exported Guile API
  4194. has been marked by adding the macro "SCM_API" to the start of the
  4195. declaration. This macro can expand into different things, the most
  4196. common of which is just "extern" for Unix platforms. On Win32, it can
  4197. be used to control which symbols are exported from a DLL.
  4198. If you `#define SCM_IMPORT' before including <libguile.h>, SCM_API
  4199. will expand into "__declspec (dllimport) extern", which is needed for
  4200. linking to the Guile DLL in Windows.
  4201. There are also SCM_RL_IMPORT, SCM_SRFI1314_IMPORT, and
  4202. SCM_SRFI4_IMPORT, for the corresponding libraries.
  4203. ** SCM_NEWCELL and SCM_NEWCELL2 have been deprecated.
  4204. Use the new functions scm_cell and scm_double_cell instead. The old
  4205. macros had problems because with them allocation and initialization
  4206. was separated and the GC could sometimes observe half initialized
  4207. cells. Only careful coding by the user of SCM_NEWCELL and
  4208. SCM_NEWCELL2 could make this safe and efficient.
  4209. ** CHECK_ENTRY, CHECK_APPLY and CHECK_EXIT have been deprecated.
  4210. Use the variables scm_check_entry_p, scm_check_apply_p and scm_check_exit_p
  4211. instead.
  4212. ** SRCBRKP has been deprecated.
  4213. Use scm_c_source_property_breakpoint_p instead.
  4214. ** Deprecated: scm_makmacro
  4215. Change your code to use either scm_makmmacro or to define macros in
  4216. Scheme, using 'define-macro'.
  4217. ** New function scm_c_port_for_each.
  4218. This function is like scm_port_for_each but takes a pointer to a C
  4219. function as the callback instead of a SCM value.
  4220. ** The names scm_internal_select, scm_thread_sleep, and
  4221. scm_thread_usleep have been discouraged.
  4222. Use scm_std_select, scm_std_sleep, scm_std_usleep instead.
  4223. ** The GC can no longer be blocked.
  4224. The global flags scm_gc_heap_lock and scm_block_gc have been removed.
  4225. The GC can now run (partially) concurrently with other code and thus
  4226. blocking it is not well defined.
  4227. ** Many definitions have been removed that were previously deprecated.
  4228. scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify, s_t_ify,
  4229. scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify, scm_m_0_ify, s_1_ify,
  4230. scm_m_1_ify, scm_debug_newcell, scm_debug_newcell2,
  4231. scm_tc16_allocated, SCM_SET_SYMBOL_HASH, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
  4232. SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY, SCM_GC_SET_ALLOCATED,
  4233. scm_debug_newcell, scm_debug_newcell2, SCM_HUP_SIGNAL, SCM_INT_SIGNAL,
  4234. SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL,
  4235. SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG,
  4236. SCM_NUM_SIGS, scm_top_level_lookup_closure_var,
  4237. *top-level-lookup-closure*, scm_system_transformer, scm_eval_3,
  4238. scm_eval2, root_module_lookup_closure, SCM_SLOPPY_STRINGP,
  4239. SCM_RWSTRINGP, scm_read_only_string_p, scm_make_shared_substring,
  4240. scm_tc7_substring, sym_huh, SCM_VARVCELL, SCM_UDVARIABLEP,
  4241. SCM_DEFVARIABLEP, scm_mkbig, scm_big2inum, scm_adjbig, scm_normbig,
  4242. scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl, SCM_FIXNUM_BIT,
  4243. SCM_SETCHARS, SCM_SLOPPY_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET,
  4244. SCM_LENGTH_MAX, SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH,
  4245. SCM_ROCHARS, SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR,
  4246. scm_sym2vcell, scm_intern, scm_intern0, scm_sysintern, scm_sysintern0,
  4247. scm_sysintern0_no_module_lookup, scm_init_symbols_deprecated,
  4248. scm_vector_set_length_x, scm_contregs, scm_debug_info,
  4249. scm_debug_frame, SCM_DSIDEVAL, SCM_CONST_LONG, SCM_VCELL,
  4250. SCM_GLOBAL_VCELL, SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT,
  4251. SCM_HUGE_LENGTH, SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
  4252. SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
  4253. SCM_VALIDATE_RWSTRING, DIGITS, scm_small_istr2int, scm_istr2int,
  4254. scm_istr2flo, scm_istring2number, scm_istr2int, scm_istr2flo,
  4255. scm_istring2number, scm_vtable_index_vcell, scm_si_vcell, SCM_ECONSP,
  4256. SCM_NECONSP, SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL,
  4257. SCM_GLOC_VAL_LOC, scm_make_gloc, scm_gloc_p, scm_tc16_variable,
  4258. SCM_CHARS, SCM_LENGTH, SCM_SET_STRING_CHARS, SCM_SET_STRING_LENGTH.
  4259. * Changes to bundled modules
  4260. ** (ice-9 debug)
  4261. Using the (ice-9 debug) module no longer automatically switches Guile
  4262. to use the debugging evaluator. If you want to switch to the
  4263. debugging evaluator (which is needed for backtrace information if you
  4264. hit an error), please add an explicit "(debug-enable 'debug)" to your
  4265. code just after the code to use (ice-9 debug).
  4266. Changes since Guile 1.4:
  4267. * Changes to the distribution
  4268. ** A top-level TODO file is included.
  4269. ** Guile now uses a versioning scheme similar to that of the Linux kernel.
  4270. Guile now always uses three numbers to represent the version,
  4271. i.e. "1.6.5". The first number, 1, is the major version number, the
  4272. second number, 6, is the minor version number, and the third number,
  4273. 5, is the micro version number. Changes in major version number
  4274. indicate major changes in Guile.
  4275. Minor version numbers that are even denote stable releases, and odd
  4276. minor version numbers denote development versions (which may be
  4277. unstable). The micro version number indicates a minor sub-revision of
  4278. a given MAJOR.MINOR release.
  4279. In keeping with the new scheme, (minor-version) and scm_minor_version
  4280. no longer return everything but the major version number. They now
  4281. just return the minor version number. Two new functions
  4282. (micro-version) and scm_micro_version have been added to report the
  4283. micro version number.
  4284. In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
  4285. ** New preprocessor definitions are available for checking versions.
  4286. version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
  4287. SCM_MICRO_VERSION to the appropriate integer values.
  4288. ** Guile now actively warns about deprecated features.
  4289. The new configure option `--enable-deprecated=LEVEL' and the
  4290. environment variable GUILE_WARN_DEPRECATED control this mechanism.
  4291. See INSTALL and README for more information.
  4292. ** Guile is much more likely to work on 64-bit architectures.
  4293. Guile now compiles and passes "make check" with only two UNRESOLVED GC
  4294. cases on Alpha and ia64 based machines now. Thanks to John Goerzen
  4295. for the use of a test machine, and thanks to Stefan Jahn for ia64
  4296. patches.
  4297. ** New functions: setitimer and getitimer.
  4298. These implement a fairly direct interface to the libc functions of the
  4299. same name.
  4300. ** The #. reader extension is now disabled by default.
  4301. For safety reasons, #. evaluation is disabled by default. To
  4302. re-enable it, set the fluid read-eval? to #t. For example:
  4303. (fluid-set! read-eval? #t)
  4304. but make sure you realize the potential security risks involved. With
  4305. read-eval? enabled, reading a data file from an untrusted source can
  4306. be dangerous.
  4307. ** New SRFI modules have been added:
  4308. SRFI-0 `cond-expand' is now supported in Guile, without requiring
  4309. using a module.
  4310. (srfi srfi-1) is a library containing many useful pair- and list-processing
  4311. procedures.
  4312. (srfi srfi-2) exports and-let*.
  4313. (srfi srfi-4) implements homogeneous numeric vector datatypes.
  4314. (srfi srfi-6) is a dummy module for now, since guile already provides
  4315. all of the srfi-6 procedures by default: open-input-string,
  4316. open-output-string, get-output-string.
  4317. (srfi srfi-8) exports receive.
  4318. (srfi srfi-9) exports define-record-type.
  4319. (srfi srfi-10) exports define-reader-ctor and implements the reader
  4320. extension #,().
  4321. (srfi srfi-11) exports let-values and let*-values.
  4322. (srfi srfi-13) implements the SRFI String Library.
  4323. (srfi srfi-14) implements the SRFI Character-Set Library.
  4324. (srfi srfi-17) implements setter and getter-with-setter and redefines
  4325. some accessor procedures as procedures with getters. (such as car,
  4326. cdr, vector-ref etc.)
  4327. (srfi srfi-19) implements the SRFI Time/Date Library.
  4328. ** New scripts / "executable modules"
  4329. Subdirectory "scripts" contains Scheme modules that are packaged to
  4330. also be executable as scripts. At this time, these scripts are available:
  4331. display-commentary
  4332. doc-snarf
  4333. generate-autoload
  4334. punify
  4335. read-scheme-source
  4336. use2dot
  4337. See README there for more info.
  4338. These scripts can be invoked from the shell with the new program
  4339. "guile-tools", which keeps track of installation directory for you.
  4340. For example:
  4341. $ guile-tools display-commentary srfi/*.scm
  4342. guile-tools is copied to the standard $bindir on "make install".
  4343. ** New module (ice-9 stack-catch):
  4344. stack-catch is like catch, but saves the current state of the stack in
  4345. the fluid the-last-stack. This fluid can be useful when using the
  4346. debugger and when re-throwing an error.
  4347. ** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
  4348. This has been done to prevent problems on lesser operating systems
  4349. that can't tolerate `*'s in file names. The exported macro continues
  4350. to be named `and-let*', of course.
  4351. On systems that support it, there is also a compatibility module named
  4352. (ice-9 and-let*). It will go away in the next release.
  4353. ** New modules (oop goops) etc.:
  4354. (oop goops)
  4355. (oop goops describe)
  4356. (oop goops save)
  4357. (oop goops active-slot)
  4358. (oop goops composite-slot)
  4359. The Guile Object Oriented Programming System (GOOPS) has been
  4360. integrated into Guile. For further information, consult the GOOPS
  4361. manual and tutorial in the `doc' directory.
  4362. ** New module (ice-9 rdelim).
  4363. This exports the following procedures which were previously defined
  4364. in the default environment:
  4365. read-line read-line! read-delimited read-delimited! %read-delimited!
  4366. %read-line write-line
  4367. For backwards compatibility the definitions are still imported into the
  4368. default environment in this version of Guile. However you should add:
  4369. (use-modules (ice-9 rdelim))
  4370. to any program which uses the definitions, since this may change in
  4371. future.
  4372. Alternatively, if guile-scsh is installed, the (scsh rdelim) module
  4373. can be used for similar functionality.
  4374. ** New module (ice-9 rw)
  4375. This is a subset of the (scsh rw) module from guile-scsh. Currently
  4376. it defines two procedures:
  4377. *** New function: read-string!/partial str [port_or_fdes [start [end]]]
  4378. Read characters from a port or file descriptor into a string STR.
  4379. A port must have an underlying file descriptor -- a so-called
  4380. fport. This procedure is scsh-compatible and can efficiently read
  4381. large strings.
  4382. *** New function: write-string/partial str [port_or_fdes [start [end]]]
  4383. Write characters from a string STR to a port or file descriptor.
  4384. A port must have an underlying file descriptor -- a so-called
  4385. fport. This procedure is mostly compatible and can efficiently
  4386. write large strings.
  4387. ** New module (ice-9 match)
  4388. This module includes Andrew K. Wright's pattern matcher. See
  4389. ice-9/match.scm for brief description or
  4390. http://www.star-lab.com/wright/code.html
  4391. for complete documentation.
  4392. ** New module (ice-9 buffered-input)
  4393. This module provides procedures to construct an input port from an
  4394. underlying source of input that reads and returns its input in chunks.
  4395. The underlying input source is a Scheme procedure, specified by the
  4396. caller, which the port invokes whenever it needs more input.
  4397. This is useful when building an input port whose back end is Readline
  4398. or a UI element such as the GtkEntry widget.
  4399. ** Documentation
  4400. The reference and tutorial documentation that was previously
  4401. distributed separately, as `guile-doc', is now included in the core
  4402. Guile distribution. The documentation consists of the following
  4403. manuals.
  4404. - The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
  4405. to using Guile.
  4406. - The Guile Reference Manual (guile.texi) contains (or is intended to
  4407. contain) reference documentation on all aspects of Guile.
  4408. - The GOOPS Manual (goops.texi) contains both tutorial-style and
  4409. reference documentation for using GOOPS, Guile's Object Oriented
  4410. Programming System.
  4411. - The Revised^5 Report on the Algorithmic Language Scheme
  4412. (r5rs.texi).
  4413. See the README file in the `doc' directory for more details.
  4414. ** There are a couple of examples in the examples/ directory now.
  4415. * Changes to the stand-alone interpreter
  4416. ** New command line option `--use-srfi'
  4417. Using this option, SRFI modules can be loaded on startup and be
  4418. available right from the beginning. This makes programming portable
  4419. Scheme programs easier.
  4420. The option `--use-srfi' expects a comma-separated list of numbers,
  4421. each representing a SRFI number to be loaded into the interpreter
  4422. before starting evaluating a script file or the REPL. Additionally,
  4423. the feature identifier for the loaded SRFIs is recognized by
  4424. `cond-expand' when using this option.
  4425. Example:
  4426. $ guile --use-srfi=8,13
  4427. guile> (receive (x z) (values 1 2) (+ 1 2))
  4428. 3
  4429. guile> (string-pad "bla" 20)
  4430. " bla"
  4431. ** Guile now always starts up in the `(guile-user)' module.
  4432. Previously, scripts executed via the `-s' option would run in the
  4433. `(guile)' module and the repl would run in the `(guile-user)' module.
  4434. Now every user action takes place in the `(guile-user)' module by
  4435. default.
  4436. * Changes to Scheme functions and syntax
  4437. ** Character classifiers work for non-ASCII characters.
  4438. The predicates `char-alphabetic?', `char-numeric?',
  4439. `char-whitespace?', `char-lower?', `char-upper?' and `char-is-both?'
  4440. no longer check whether their arguments are ASCII characters.
  4441. Previously, a character would only be considered alphabetic when it
  4442. was also ASCII, for example.
  4443. ** Previously deprecated Scheme functions have been removed:
  4444. tag - no replacement.
  4445. fseek - replaced by seek.
  4446. list* - replaced by cons*.
  4447. ** It's now possible to create modules with controlled environments
  4448. Example:
  4449. (use-modules (ice-9 safe))
  4450. (define m (make-safe-module))
  4451. ;;; m will now be a module containing only a safe subset of R5RS
  4452. (eval '(+ 1 2) m) --> 3
  4453. (eval 'load m) --> ERROR: Unbound variable: load
  4454. ** Evaluation of "()", the empty list, is now an error.
  4455. Previously, the expression "()" evaluated to the empty list. This has
  4456. been changed to signal a "missing expression" error. The correct way
  4457. to write the empty list as a literal constant is to use quote: "'()".
  4458. ** New concept of `Guile Extensions'.
  4459. A Guile Extension is just a ordinary shared library that can be linked
  4460. at run-time. We found it advantageous to give this simple concept a
  4461. dedicated name to distinguish the issues related to shared libraries
  4462. from the issues related to the module system.
  4463. *** New function: load-extension
  4464. Executing (load-extension lib init) is mostly equivalent to
  4465. (dynamic-call init (dynamic-link lib))
  4466. except when scm_register_extension has been called previously.
  4467. Whenever appropriate, you should use `load-extension' instead of
  4468. dynamic-link and dynamic-call.
  4469. *** New C function: scm_c_register_extension
  4470. This function registers a initialization function for use by
  4471. `load-extension'. Use it when you don't want specific extensions to
  4472. be loaded as shared libraries (for example on platforms that don't
  4473. support dynamic linking).
  4474. ** Auto-loading of compiled-code modules is deprecated.
  4475. Guile used to be able to automatically find and link a shared
  4476. library to satisfy requests for a module. For example, the module
  4477. `(foo bar)' could be implemented by placing a shared library named
  4478. "foo/libbar.so" (or with a different extension) in a directory on the
  4479. load path of Guile.
  4480. This has been found to be too tricky, and is no longer supported. The
  4481. shared libraries are now called "extensions". You should now write a
  4482. small Scheme file that calls `load-extension' to load the shared
  4483. library and initialize it explicitly.
  4484. The shared libraries themselves should be installed in the usual
  4485. places for shared libraries, with names like "libguile-foo-bar".
  4486. For example, place this into a file "foo/bar.scm"
  4487. (define-module (foo bar))
  4488. (load-extension "libguile-foo-bar" "foobar_init")
  4489. ** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
  4490. `eval' is now R5RS, that is it takes two arguments.
  4491. The second argument is an environment specifier, i.e. either
  4492. (scheme-report-environment 5)
  4493. (null-environment 5)
  4494. (interaction-environment)
  4495. or
  4496. any module.
  4497. ** The module system has been made more disciplined.
  4498. The function `eval' will save and restore the current module around
  4499. the evaluation of the specified expression. While this expression is
  4500. evaluated, `(current-module)' will now return the right module, which
  4501. is the module specified as the second argument to `eval'.
  4502. A consequence of this change is that `eval' is not particularly
  4503. useful when you want allow the evaluated code to change what module is
  4504. designated as the current module and have this change persist from one
  4505. call to `eval' to the next. The read-eval-print-loop is an example
  4506. where `eval' is now inadequate. To compensate, there is a new
  4507. function `primitive-eval' that does not take a module specifier and
  4508. that does not save/restore the current module. You should use this
  4509. function together with `set-current-module', `current-module', etc
  4510. when you want to have more control over the state that is carried from
  4511. one eval to the next.
  4512. Additionally, it has been made sure that forms that are evaluated at
  4513. the top level are always evaluated with respect to the current module.
  4514. Previously, subforms of top-level forms such as `begin', `case',
  4515. etc. did not respect changes to the current module although these
  4516. subforms are at the top-level as well.
  4517. To prevent strange behavior, the forms `define-module',
  4518. `use-modules', `use-syntax', and `export' have been restricted to only
  4519. work on the top level. The forms `define-public' and
  4520. `defmacro-public' only export the new binding on the top level. They
  4521. behave just like `define' and `defmacro', respectively, when they are
  4522. used in a lexical environment.
  4523. Also, `export' will no longer silently re-export bindings imported
  4524. from a used module. It will emit a `deprecation' warning and will
  4525. cease to perform any re-export in the next version. If you actually
  4526. want to re-export bindings, use the new `re-export' in place of
  4527. `export'. The new `re-export' will not make copies of variables when
  4528. rexporting them, as `export' did wrongly.
  4529. ** Module system now allows selection and renaming of imported bindings
  4530. Previously, when using `use-modules' or the `#:use-module' clause in
  4531. the `define-module' form, all the bindings (association of symbols to
  4532. values) for imported modules were added to the "current module" on an
  4533. as-is basis. This has been changed to allow finer control through two
  4534. new facilities: selection and renaming.
  4535. You can now select which of the imported module's bindings are to be
  4536. visible in the current module by using the `:select' clause. This
  4537. clause also can be used to rename individual bindings. For example:
  4538. ;; import all bindings no questions asked
  4539. (use-modules (ice-9 common-list))
  4540. ;; import four bindings, renaming two of them;
  4541. ;; the current module sees: every some zonk-y zonk-n
  4542. (use-modules ((ice-9 common-list)
  4543. :select (every some
  4544. (remove-if . zonk-y)
  4545. (remove-if-not . zonk-n))))
  4546. You can also programmatically rename all selected bindings using the
  4547. `:renamer' clause, which specifies a proc that takes a symbol and
  4548. returns another symbol. Because it is common practice to use a prefix,
  4549. we now provide the convenience procedure `symbol-prefix-proc'. For
  4550. example:
  4551. ;; import four bindings, renaming two of them specifically,
  4552. ;; and all four w/ prefix "CL:";
  4553. ;; the current module sees: CL:every CL:some CL:zonk-y CL:zonk-n
  4554. (use-modules ((ice-9 common-list)
  4555. :select (every some
  4556. (remove-if . zonk-y)
  4557. (remove-if-not . zonk-n))
  4558. :renamer (symbol-prefix-proc 'CL:)))
  4559. ;; import four bindings, renaming two of them specifically,
  4560. ;; and all four by upcasing.
  4561. ;; the current module sees: EVERY SOME ZONK-Y ZONK-N
  4562. (define (upcase-symbol sym)
  4563. (string->symbol (string-upcase (symbol->string sym))))
  4564. (use-modules ((ice-9 common-list)
  4565. :select (every some
  4566. (remove-if . zonk-y)
  4567. (remove-if-not . zonk-n))
  4568. :renamer upcase-symbol))
  4569. Note that programmatic renaming is done *after* individual renaming.
  4570. Also, the above examples show `use-modules', but the same facilities are
  4571. available for the `#:use-module' clause of `define-module'.
  4572. See manual for more info.
  4573. ** The semantics of guardians have changed.
  4574. The changes are for the most part compatible. An important criterion
  4575. was to keep the typical usage of guardians as simple as before, but to
  4576. make the semantics safer and (as a result) more useful.
  4577. *** All objects returned from guardians are now properly alive.
  4578. It is now guaranteed that any object referenced by an object returned
  4579. from a guardian is alive. It's now impossible for a guardian to
  4580. return a "contained" object before its "containing" object.
  4581. One incompatible (but probably not very important) change resulting
  4582. from this is that it is no longer possible to guard objects that
  4583. indirectly reference themselves (i.e. are parts of cycles). If you do
  4584. so accidentally, you'll get a warning.
  4585. *** There are now two types of guardians: greedy and sharing.
  4586. If you call (make-guardian #t) or just (make-guardian), you'll get a
  4587. greedy guardian, and for (make-guardian #f) a sharing guardian.
  4588. Greedy guardians are the default because they are more "defensive".
  4589. You can only greedily guard an object once. If you guard an object
  4590. more than once, once in a greedy guardian and the rest of times in
  4591. sharing guardians, then it is guaranteed that the object won't be
  4592. returned from sharing guardians as long as it is greedily guarded
  4593. and/or alive.
  4594. Guardians returned by calls to `make-guardian' can now take one more
  4595. optional parameter, which says whether to throw an error in case an
  4596. attempt is made to greedily guard an object that is already greedily
  4597. guarded. The default is true, i.e. throw an error. If the parameter
  4598. is false, the guardian invocation returns #t if guarding was
  4599. successful and #f if it wasn't.
  4600. Also, since greedy guarding is, in effect, a side-effecting operation
  4601. on objects, a new function is introduced: `destroy-guardian!'.
  4602. Invoking this function on a guardian renders it unoperative and, if
  4603. the guardian is greedy, clears the "greedily guarded" property of the
  4604. objects that were guarded by it, thus undoing the side effect.
  4605. Note that all this hair is hardly very important, since guardian
  4606. objects are usually permanent.
  4607. ** Continuations created by call-with-current-continuation now accept
  4608. any number of arguments, as required by R5RS.
  4609. ** New function `issue-deprecation-warning'
  4610. This function is used to display the deprecation messages that are
  4611. controlled by GUILE_WARN_DEPRECATION as explained in the README.
  4612. (define (id x)
  4613. (issue-deprecation-warning "`id' is deprecated. Use `identity' instead.")
  4614. (identity x))
  4615. guile> (id 1)
  4616. ;; `id' is deprecated. Use `identity' instead.
  4617. 1
  4618. guile> (id 1)
  4619. 1
  4620. ** New syntax `begin-deprecated'
  4621. When deprecated features are included (as determined by the configure
  4622. option --enable-deprecated), `begin-deprecated' is identical to
  4623. `begin'. When deprecated features are excluded, it always evaluates
  4624. to `#f', ignoring the body forms.
  4625. ** New function `make-object-property'
  4626. This function returns a new `procedure with setter' P that can be used
  4627. to attach a property to objects. When calling P as
  4628. (set! (P obj) val)
  4629. where `obj' is any kind of object, it attaches `val' to `obj' in such
  4630. a way that it can be retrieved by calling P as
  4631. (P obj)
  4632. This function will replace procedure properties, symbol properties and
  4633. source properties eventually.
  4634. ** Module (ice-9 optargs) now uses keywords instead of `#&'.
  4635. Instead of #&optional, #&key, etc you should now use #:optional,
  4636. #:key, etc. Since #:optional is a keyword, you can write it as just
  4637. :optional when (read-set! keywords 'prefix) is active.
  4638. The old reader syntax `#&' is still supported, but deprecated. It
  4639. will be removed in the next release.
  4640. ** New define-module option: pure
  4641. Tells the module system not to include any bindings from the root
  4642. module.
  4643. Example:
  4644. (define-module (totally-empty-module)
  4645. :pure)
  4646. ** New define-module option: export NAME1 ...
  4647. Export names NAME1 ...
  4648. This option is required if you want to be able to export bindings from
  4649. a module which doesn't import one of `define-public' or `export'.
  4650. Example:
  4651. (define-module (foo)
  4652. :pure
  4653. :use-module (ice-9 r5rs)
  4654. :export (bar))
  4655. ;;; Note that we're pure R5RS below this point!
  4656. (define (bar)
  4657. ...)
  4658. ** New function: object->string OBJ
  4659. Return a Scheme string obtained by printing a given object.
  4660. ** New function: port? X
  4661. Returns a boolean indicating whether X is a port. Equivalent to
  4662. `(or (input-port? X) (output-port? X))'.
  4663. ** New function: file-port?
  4664. Determines whether a given object is a port that is related to a file.
  4665. ** New function: port-for-each proc
  4666. Apply PROC to each port in the Guile port table in turn. The return
  4667. value is unspecified. More specifically, PROC is applied exactly once
  4668. to every port that exists in the system at the time PORT-FOR-EACH is
  4669. invoked. Changes to the port table while PORT-FOR-EACH is running
  4670. have no effect as far as PORT-FOR-EACH is concerned.
  4671. ** New function: dup2 oldfd newfd
  4672. A simple wrapper for the `dup2' system call. Copies the file
  4673. descriptor OLDFD to descriptor number NEWFD, replacing the
  4674. previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
  4675. Unlike for dup->fdes or primitive-move->fdes, no attempt is made
  4676. to move away ports which are using NEWFD. The return value is
  4677. unspecified.
  4678. ** New function: close-fdes fd
  4679. A simple wrapper for the `close' system call. Close file
  4680. descriptor FD, which must be an integer. Unlike close (*note
  4681. close: Ports and File Descriptors.), the file descriptor will be
  4682. closed even if a port is using it. The return value is
  4683. unspecified.
  4684. ** New function: crypt password salt
  4685. Encrypts `password' using the standard unix password encryption
  4686. algorithm.
  4687. ** New function: chroot path
  4688. Change the root directory of the running process to `path'.
  4689. ** New functions: getlogin, cuserid
  4690. Return the login name or the user name of the current effective user
  4691. id, respectively.
  4692. ** New functions: getpriority which who, setpriority which who prio
  4693. Get or set the priority of the running process.
  4694. ** New function: getpass prompt
  4695. Read a password from the terminal, first displaying `prompt' and
  4696. disabling echoing.
  4697. ** New function: flock file operation
  4698. Set/remove an advisory shared or exclusive lock on `file'.
  4699. ** New functions: sethostname name, gethostname
  4700. Set or get the hostname of the machine the current process is running
  4701. on.
  4702. ** New function: mkstemp! tmpl
  4703. mkstemp creates a new unique file in the file system and returns a
  4704. new buffered port open for reading and writing to the file. TMPL
  4705. is a string specifying where the file should be created: it must
  4706. end with `XXXXXX' and will be changed in place to return the name
  4707. of the temporary file.
  4708. ** New function: open-input-string string
  4709. Return an input string port which delivers the characters from
  4710. `string'. This procedure, together with `open-output-string' and
  4711. `get-output-string' implements SRFI-6.
  4712. ** New function: open-output-string
  4713. Return an output string port which collects all data written to it.
  4714. The data can then be retrieved by `get-output-string'.
  4715. ** New function: get-output-string
  4716. Return the contents of an output string port.
  4717. ** New function: identity
  4718. Return the argument.
  4719. ** socket, connect, accept etc., now have support for IPv6. IPv6 addresses
  4720. are represented in Scheme as integers with normal host byte ordering.
  4721. ** New function: inet-pton family address
  4722. Convert a printable string network address into an integer. Note that
  4723. unlike the C version of this function, the result is an integer with
  4724. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  4725. e.g.,
  4726. (inet-pton AF_INET "127.0.0.1") => 2130706433
  4727. (inet-pton AF_INET6 "::1") => 1
  4728. ** New function: inet-ntop family address
  4729. Convert an integer network address into a printable string. Note that
  4730. unlike the C version of this function, the input is an integer with
  4731. normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
  4732. e.g.,
  4733. (inet-ntop AF_INET 2130706433) => "127.0.0.1"
  4734. (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
  4735. ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
  4736. ** Deprecated: id
  4737. Use `identity' instead.
  4738. ** Deprecated: -1+
  4739. Use `1-' instead.
  4740. ** Deprecated: return-it
  4741. Do without it.
  4742. ** Deprecated: string-character-length
  4743. Use `string-length' instead.
  4744. ** Deprecated: flags
  4745. Use `logior' instead.
  4746. ** Deprecated: close-all-ports-except.
  4747. This was intended for closing ports in a child process after a fork,
  4748. but it has the undesirable side effect of flushing buffers.
  4749. port-for-each is more flexible.
  4750. ** The (ice-9 popen) module now attempts to set up file descriptors in
  4751. the child process from the current Scheme ports, instead of using the
  4752. current values of file descriptors 0, 1, and 2 in the parent process.
  4753. ** Removed function: builtin-weak-bindings
  4754. There is no such concept as a weak binding any more.
  4755. ** Removed constants: bignum-radix, scm-line-incrementors
  4756. ** define-method: New syntax mandatory.
  4757. The new method syntax is now mandatory:
  4758. (define-method (NAME ARG-SPEC ...) BODY ...)
  4759. (define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
  4760. ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
  4761. REST-ARG ::= ARG-NAME
  4762. If you have old code using the old syntax, import
  4763. (oop goops old-define-method) before (oop goops) as in:
  4764. (use-modules (oop goops old-define-method) (oop goops))
  4765. ** Deprecated function: builtin-variable
  4766. Removed function: builtin-bindings
  4767. There is no longer a distinction between builtin or other variables.
  4768. Use module system operations for all variables.
  4769. ** Lazy-catch handlers are no longer allowed to return.
  4770. That is, a call to `throw', `error', etc is now guaranteed to not
  4771. return.
  4772. ** Bugfixes for (ice-9 getopt-long)
  4773. This module is now tested using test-suite/tests/getopt-long.test.
  4774. The following bugs have been fixed:
  4775. *** Parsing for options that are specified to have `optional' args now checks
  4776. if the next element is an option instead of unconditionally taking it as the
  4777. option arg.
  4778. *** An error is now thrown for `--opt=val' when the option description
  4779. does not specify `(value #t)' or `(value optional)'. This condition used to
  4780. be accepted w/o error, contrary to the documentation.
  4781. *** The error message for unrecognized options is now more informative.
  4782. It used to be "not a record", an artifact of the implementation.
  4783. *** The error message for `--opt' terminating the arg list (no value), when
  4784. `(value #t)' is specified, is now more informative. It used to be "not enough
  4785. args".
  4786. *** "Clumped" single-char args now preserve trailing string, use it as arg.
  4787. The expansion used to be like so:
  4788. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "--xyz")
  4789. Note that the "5d" is dropped. Now it is like so:
  4790. ("-abc5d" "--xyz") => ("-a" "-b" "-c" "5d" "--xyz")
  4791. This enables single-char options to have adjoining arguments as long as their
  4792. constituent characters are not potential single-char options.
  4793. ** (ice-9 session) procedure `arity' now works with (ice-9 optargs) `lambda*'
  4794. The `lambda*' and derivative forms in (ice-9 optargs) now set a procedure
  4795. property `arglist', which can be retrieved by `arity'. The result is that
  4796. `arity' can give more detailed information than before:
  4797. Before:
  4798. guile> (use-modules (ice-9 optargs))
  4799. guile> (define* (foo #:optional a b c) a)
  4800. guile> (arity foo)
  4801. 0 or more arguments in `lambda*:G0'.
  4802. After:
  4803. guile> (arity foo)
  4804. 3 optional arguments: `a', `b' and `c'.
  4805. guile> (define* (bar a b #:key c d #:allow-other-keys) a)
  4806. guile> (arity bar)
  4807. 2 required arguments: `a' and `b', 2 keyword arguments: `c'
  4808. and `d', other keywords allowed.
  4809. guile> (define* (baz a b #:optional c #:rest r) a)
  4810. guile> (arity baz)
  4811. 2 required arguments: `a' and `b', 1 optional argument: `c',
  4812. the rest in `r'.
  4813. * Changes to the C interface
  4814. ** Types have been renamed from scm_*_t to scm_t_*.
  4815. This has been done for POSIX sake. It reserves identifiers ending
  4816. with "_t". What a concept.
  4817. The old names are still available with status `deprecated'.
  4818. ** scm_t_bits (former scm_bits_t) is now a unsigned type.
  4819. ** Deprecated features have been removed.
  4820. *** Macros removed
  4821. SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
  4822. SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
  4823. *** C Functions removed
  4824. scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
  4825. scm_fseek - replaced by scm_seek.
  4826. gc-thunk - replaced by after-gc-hook.
  4827. gh_int2scmb - replaced by gh_bool2scm.
  4828. scm_tc_dblr - replaced by scm_tc16_real.
  4829. scm_tc_dblc - replaced by scm_tc16_complex.
  4830. scm_list_star - replaced by scm_cons_star.
  4831. ** Deprecated: scm_makfromstr
  4832. Use scm_mem2string instead.
  4833. ** Deprecated: scm_make_shared_substring
  4834. Explicit shared substrings will disappear from Guile.
  4835. Instead, "normal" strings will be implemented using sharing
  4836. internally, combined with a copy-on-write strategy.
  4837. ** Deprecated: scm_read_only_string_p
  4838. The concept of read-only strings will disappear in next release of
  4839. Guile.
  4840. ** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
  4841. Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
  4842. ** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
  4843. Call a procedure with the indicated number of arguments. See "Fly
  4844. Evaluation" in the manual.
  4845. ** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
  4846. Call a procedure with the indicated number of arguments and a list of
  4847. further arguments. See "Fly Evaluation" in the manual.
  4848. ** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5
  4849. Create a list of the given number of elements. See "List
  4850. Constructors" in the manual.
  4851. ** Renamed function: scm_listify has been replaced by scm_list_n.
  4852. ** Deprecated macros: SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4,
  4853. SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9.
  4854. Use functions scm_list_N instead.
  4855. ** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
  4856. Used by an application to read arbitrary number of bytes from a port.
  4857. Same semantics as libc read, except that scm_c_read only returns less
  4858. than SIZE bytes if at end-of-file.
  4859. Warning: Doesn't update port line and column counts!
  4860. ** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
  4861. Used by an application to write arbitrary number of bytes to an SCM
  4862. port. Similar semantics as libc write. However, unlike libc
  4863. write, scm_c_write writes the requested number of bytes and has no
  4864. return value.
  4865. Warning: Doesn't update port line and column counts!
  4866. ** New function: scm_init_guile ()
  4867. In contrast to scm_boot_guile, scm_init_guile will return normally
  4868. after initializing Guile. It is not available on all systems, tho.
  4869. ** New functions: scm_str2symbol, scm_mem2symbol
  4870. The function scm_str2symbol takes a const char* pointing to a zero-terminated
  4871. field of characters and creates a scheme symbol object from that C string.
  4872. The function scm_mem2symbol takes a const char* and a number of characters and
  4873. creates a symbol from the characters in that memory area.
  4874. ** New functions: scm_primitive_make_property
  4875. scm_primitive_property_ref
  4876. scm_primitive_property_set_x
  4877. scm_primitive_property_del_x
  4878. These functions implement a new way to deal with object properties.
  4879. See libguile/properties.c for their documentation.
  4880. ** New function: scm_done_free (long size)
  4881. This function is the inverse of scm_done_malloc. Use it to report the
  4882. amount of smob memory you free. The previous method, which involved
  4883. calling scm_done_malloc with negative argument, was somewhat
  4884. unintuitive (and is still available, of course).
  4885. ** New function: scm_c_memq (SCM obj, SCM list)
  4886. This function provides a fast C level alternative for scm_memq for the case
  4887. that the list parameter is known to be a proper list. The function is a
  4888. replacement for scm_sloppy_memq, but is stricter in its requirements on its
  4889. list input parameter, since for anything else but a proper list the function's
  4890. behaviour is undefined - it may even crash or loop endlessly. Further, for
  4891. the case that the object is not found in the list, scm_c_memq returns #f which
  4892. is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
  4893. ** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
  4894. scm_remember_upto_here
  4895. These functions replace the function scm_remember.
  4896. ** Deprecated function: scm_remember
  4897. Use one of the new functions scm_remember_upto_here_1,
  4898. scm_remember_upto_here_2 or scm_remember_upto_here instead.
  4899. ** New function: scm_allocate_string
  4900. This function replaces the function scm_makstr.
  4901. ** Deprecated function: scm_makstr
  4902. Use the new function scm_allocate_string instead.
  4903. ** New global variable scm_gc_running_p introduced.
  4904. Use this variable to find out if garbage collection is being executed. Up to
  4905. now applications have used scm_gc_heap_lock to test if garbage collection was
  4906. running, which also works because of the fact that up to know only the garbage
  4907. collector has set this variable. But, this is an implementation detail that
  4908. may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
  4909. of this variable is (and has been) not fully safe anyway.
  4910. ** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
  4911. Use these instead of SCM_LENGTH_MAX.
  4912. ** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
  4913. SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
  4914. SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
  4915. Use these instead of SCM_LENGTH.
  4916. ** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
  4917. SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
  4918. SCM_SET_BITVECTOR_LENGTH
  4919. Use these instead of SCM_SETLENGTH
  4920. ** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
  4921. SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
  4922. SCM_ARRAY_MEM
  4923. Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
  4924. SCM_VELTS.
  4925. ** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
  4926. SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
  4927. SCM_SET_VECTOR_BASE
  4928. Use these instead of SCM_SETCHARS.
  4929. ** New macro: SCM_BITVECTOR_P
  4930. ** New macro: SCM_STRING_COERCE_0TERMINATION_X
  4931. Use instead of SCM_COERCE_SUBSTR.
  4932. ** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
  4933. For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
  4934. ** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
  4935. SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
  4936. SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
  4937. SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
  4938. SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
  4939. SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
  4940. SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
  4941. SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
  4942. SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
  4943. SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
  4944. SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
  4945. SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
  4946. SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
  4947. SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
  4948. SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_SETAND_CAR, SCM_SETOR_CAR
  4949. Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
  4950. Use scm_memory_error instead of SCM_NALLOC.
  4951. Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
  4952. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
  4953. Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
  4954. Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
  4955. Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
  4956. Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
  4957. Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
  4958. Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
  4959. Use SCM_STRINGP instead of SCM_RWSTRINGP.
  4960. Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
  4961. Use SCM_STRING_CHARS instead of SCM_ROCHARS.
  4962. Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
  4963. Use a type specific setter macro instead of SCM_SETLENGTH.
  4964. Use a type specific setter macro instead of SCM_SETCHARS.
  4965. Use a type specific length macro instead of SCM_LENGTH_MAX.
  4966. Use SCM_GCMARKP instead of SCM_GC8MARKP.
  4967. Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
  4968. Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
  4969. Use SCM_TYP16 instead of SCM_GCTYP16.
  4970. Use SCM_CDR instead of SCM_GCCDR.
  4971. Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
  4972. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
  4973. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
  4974. Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
  4975. Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
  4976. Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
  4977. Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
  4978. ** Removed function: scm_struct_init
  4979. ** Removed variable: scm_symhash_dim
  4980. ** Renamed function: scm_make_cont has been replaced by
  4981. scm_make_continuation, which has a different interface.
  4982. ** Deprecated function: scm_call_catching_errors
  4983. Use scm_catch or scm_lazy_catch from throw.[ch] instead.
  4984. ** Deprecated function: scm_strhash
  4985. Use scm_string_hash instead.
  4986. ** Deprecated function: scm_vector_set_length_x
  4987. Instead, create a fresh vector of the desired size and copy the contents.
  4988. ** scm_gensym has changed prototype
  4989. scm_gensym now only takes one argument.
  4990. ** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
  4991. scm_tc7_lvector
  4992. There is now only a single symbol type scm_tc7_symbol.
  4993. The tag scm_tc7_lvector was not used anyway.
  4994. ** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
  4995. Use scm_make_smob_type and scm_set_smob_XXX instead.
  4996. ** New function scm_set_smob_apply.
  4997. This can be used to set an apply function to a smob type.
  4998. ** Deprecated function: scm_strprint_obj
  4999. Use scm_object_to_string instead.
  5000. ** Deprecated function: scm_wta
  5001. Use scm_wrong_type_arg, or another appropriate error signalling function
  5002. instead.
  5003. ** Explicit support for obarrays has been deprecated.
  5004. Use `scm_str2symbol' and the generic hashtable functions instead.
  5005. ** The concept of `vcells' has been deprecated.
  5006. The data type `variable' is now used exclusively. `Vcells' have been
  5007. a low-level concept so you are likely not affected by this change.
  5008. *** Deprecated functions: scm_sym2vcell, scm_sysintern,
  5009. scm_sysintern0, scm_symbol_value0, scm_intern, scm_intern0.
  5010. Use scm_c_define or scm_c_lookup instead, as appropriate.
  5011. *** New functions: scm_c_module_lookup, scm_c_lookup,
  5012. scm_c_module_define, scm_c_define, scm_module_lookup, scm_lookup,
  5013. scm_module_define, scm_define.
  5014. These functions work with variables instead of with vcells.
  5015. ** New functions for creating and defining `subr's and `gsubr's.
  5016. The new functions more clearly distinguish between creating a subr (or
  5017. gsubr) object and adding it to the current module.
  5018. These new functions are available: scm_c_make_subr, scm_c_define_subr,
  5019. scm_c_make_subr_with_generic, scm_c_define_subr_with_generic,
  5020. scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
  5021. scm_c_define_gsubr_with_generic.
  5022. ** Deprecated functions: scm_make_subr, scm_make_subr_opt,
  5023. scm_make_subr_with_generic, scm_make_gsubr,
  5024. scm_make_gsubr_with_generic.
  5025. Use the new ones from above instead.
  5026. ** C interface to the module system has changed.
  5027. While we suggest that you avoid as many explicit module system
  5028. operations from C as possible for the time being, the C interface has
  5029. been made more similar to the high-level Scheme module system.
  5030. *** New functions: scm_c_define_module, scm_c_use_module,
  5031. scm_c_export, scm_c_resolve_module.
  5032. They mostly work like their Scheme namesakes. scm_c_define_module
  5033. takes a function that is called a context where the new module is
  5034. current.
  5035. *** Deprecated functions: scm_the_root_module, scm_make_module,
  5036. scm_ensure_user_module, scm_load_scheme_module.
  5037. Use the new functions instead.
  5038. ** Renamed function: scm_internal_with_fluids becomes
  5039. scm_c_with_fluids.
  5040. scm_internal_with_fluids is available as a deprecated function.
  5041. ** New function: scm_c_with_fluid.
  5042. Just like scm_c_with_fluids, but takes one fluid and one value instead
  5043. of lists of same.
  5044. ** Deprecated typedefs: long_long, ulong_long.
  5045. They are of questionable utility and they pollute the global
  5046. namespace.
  5047. ** Deprecated typedef: scm_sizet
  5048. It is of questionable utility now that Guile requires ANSI C, and is
  5049. oddly named.
  5050. ** Deprecated typedefs: scm_port_rw_active, scm_port,
  5051. scm_ptob_descriptor, scm_debug_info, scm_debug_frame, scm_fport,
  5052. scm_option, scm_rstate, scm_rng, scm_array, scm_array_dim.
  5053. Made more compliant with the naming policy by adding a _t at the end.
  5054. ** Deprecated functions: scm_mkbig, scm_big2num, scm_adjbig,
  5055. scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl
  5056. With the exception of the mysterious scm_2ulong2big, they are still
  5057. available under new names (scm_i_mkbig etc). These functions are not
  5058. intended to be used in user code. You should avoid dealing with
  5059. bignums directly, and should deal with numbers in general (which can
  5060. be bignums).
  5061. ** Change in behavior: scm_num2long, scm_num2ulong
  5062. The scm_num2[u]long functions don't any longer accept an inexact
  5063. argument. This change in behavior is motivated by concordance with
  5064. R5RS: It is more common that a primitive doesn't want to accept an
  5065. inexact for an exact.
  5066. ** New functions: scm_short2num, scm_ushort2num, scm_int2num,
  5067. scm_uint2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
  5068. scm_num2ushort, scm_num2int, scm_num2uint, scm_num2ptrdiff,
  5069. scm_num2size.
  5070. These are conversion functions between the various ANSI C integral
  5071. types and Scheme numbers. NOTE: The scm_num2xxx functions don't
  5072. accept an inexact argument.
  5073. ** New functions: scm_float2num, scm_double2num,
  5074. scm_num2float, scm_num2double.
  5075. These are conversion functions between the two ANSI C float types and
  5076. Scheme numbers.
  5077. ** New number validation macros:
  5078. SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,INT,UINT}[_DEF]
  5079. See above.
  5080. ** New functions: scm_gc_protect_object, scm_gc_unprotect_object
  5081. These are just nicer-named old scm_protect_object and
  5082. scm_unprotect_object.
  5083. ** Deprecated functions: scm_protect_object, scm_unprotect_object
  5084. ** New functions: scm_gc_[un]register_root, scm_gc_[un]register_roots
  5085. These functions can be used to register pointers to locations that
  5086. hold SCM values.
  5087. ** Deprecated function: scm_create_hook.
  5088. Its sins are: misleading name, non-modularity and lack of general
  5089. usefulness.
  5090. Changes since Guile 1.3.4:
  5091. * Changes to the distribution
  5092. ** Trees from nightly snapshots and CVS now require you to run autogen.sh.
  5093. We've changed the way we handle generated files in the Guile source
  5094. repository. As a result, the procedure for building trees obtained
  5095. from the nightly FTP snapshots or via CVS has changed:
  5096. - You must have appropriate versions of autoconf, automake, and
  5097. libtool installed on your system. See README for info on how to
  5098. obtain these programs.
  5099. - Before configuring the tree, you must first run the script
  5100. `autogen.sh' at the top of the source tree.
  5101. The Guile repository used to contain not only source files, written by
  5102. humans, but also some generated files, like configure scripts and
  5103. Makefile.in files. Even though the contents of these files could be
  5104. derived mechanically from other files present, we thought it would
  5105. make the tree easier to build if we checked them into CVS.
  5106. However, this approach means that minor differences between
  5107. developer's installed tools and habits affected the whole team.
  5108. So we have removed the generated files from the repository, and
  5109. added the autogen.sh script, which will reconstruct them
  5110. appropriately.
  5111. ** configure now has experimental options to remove support for certain
  5112. features:
  5113. --disable-arrays omit array and uniform array support
  5114. --disable-posix omit posix interfaces
  5115. --disable-networking omit networking interfaces
  5116. --disable-regex omit regular expression interfaces
  5117. These are likely to become separate modules some day.
  5118. ** New configure option --enable-debug-freelist
  5119. This enables a debugging version of SCM_NEWCELL(), and also registers
  5120. an extra primitive, the setter `gc-set-debug-check-freelist!'.
  5121. Configure with the --enable-debug-freelist option to enable
  5122. the gc-set-debug-check-freelist! primitive, and then use:
  5123. (gc-set-debug-check-freelist! #t) # turn on checking of the freelist
  5124. (gc-set-debug-check-freelist! #f) # turn off checking
  5125. Checking of the freelist forces a traversal of the freelist and
  5126. a garbage collection before each allocation of a cell. This can
  5127. slow down the interpreter dramatically, so the setter should be used to
  5128. turn on this extra processing only when necessary.
  5129. ** New configure option --enable-debug-malloc
  5130. Include code for debugging of calls to scm_must_malloc/realloc/free.
  5131. Checks that
  5132. 1. objects freed by scm_must_free has been mallocated by scm_must_malloc
  5133. 2. objects reallocated by scm_must_realloc has been allocated by
  5134. scm_must_malloc
  5135. 3. reallocated objects are reallocated with the same what string
  5136. But, most importantly, it records the number of allocated objects of
  5137. each kind. This is useful when searching for memory leaks.
  5138. A Guile compiled with this option provides the primitive
  5139. `malloc-stats' which returns an alist with pairs of kind and the
  5140. number of objects of that kind.
  5141. ** All includes are now referenced relative to the root directory
  5142. Since some users have had problems with mixups between Guile and
  5143. system headers, we have decided to always refer to Guile headers via
  5144. their parent directories. This essentially creates a "private name
  5145. space" for Guile headers. This means that the compiler only is given
  5146. -I options for the root build and root source directory.
  5147. ** Header files kw.h and genio.h have been removed.
  5148. ** The module (ice-9 getopt-gnu-style) has been removed.
  5149. ** New module (ice-9 documentation)
  5150. Implements the interface to documentation strings associated with
  5151. objects.
  5152. ** New module (ice-9 time)
  5153. Provides a macro `time', which displays execution time of a given form.
  5154. ** New module (ice-9 history)
  5155. Loading this module enables value history in the repl.
  5156. * Changes to the stand-alone interpreter
  5157. ** New command line option --debug
  5158. Start Guile with debugging evaluator and backtraces enabled.
  5159. This is useful when debugging your .guile init file or scripts.
  5160. ** New help facility
  5161. Usage: (help NAME) gives documentation about objects named NAME (a symbol)
  5162. (help REGEXP) ditto for objects with names matching REGEXP (a string)
  5163. (help 'NAME) gives documentation for NAME, even if it is not an object
  5164. (help ,EXPR) gives documentation for object returned by EXPR
  5165. (help (my module)) gives module commentary for `(my module)'
  5166. (help) gives this text
  5167. `help' searches among bindings exported from loaded modules, while
  5168. `apropos' searches among bindings visible from the "current" module.
  5169. Examples: (help help)
  5170. (help cons)
  5171. (help "output-string")
  5172. ** `help' and `apropos' now prints full module names
  5173. ** Dynamic linking now uses libltdl from the libtool package.
  5174. The old system dependent code for doing dynamic linking has been
  5175. replaced with calls to the libltdl functions which do all the hairy
  5176. details for us.
  5177. The major improvement is that you can now directly pass libtool
  5178. library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
  5179. will be able to do the best shared library job you can get, via
  5180. libltdl.
  5181. The way dynamic libraries are found has changed and is not really
  5182. portable across platforms, probably. It is therefore recommended to
  5183. use absolute filenames when possible.
  5184. If you pass a filename without an extension to `dynamic-link', it will
  5185. try a few appropriate ones. Thus, the most platform ignorant way is
  5186. to specify a name like "libfoo", without any directories and
  5187. extensions.
  5188. ** Guile COOP threads are now compatible with LinuxThreads
  5189. Previously, COOP threading wasn't possible in applications linked with
  5190. Linux POSIX threads due to their use of the stack pointer to find the
  5191. thread context. This has now been fixed with a workaround which uses
  5192. the pthreads to allocate the stack.
  5193. ** New primitives: `pkgdata-dir', `site-dir', `library-dir'
  5194. ** Positions of erring expression in scripts
  5195. With version 1.3.4, the location of the erring expression in Guile
  5196. scipts is no longer automatically reported. (This should have been
  5197. documented before the 1.3.4 release.)
  5198. You can get this information by enabling recording of positions of
  5199. source expressions and running the debugging evaluator. Put this at
  5200. the top of your script (or in your "site" file):
  5201. (read-enable 'positions)
  5202. (debug-enable 'debug)
  5203. ** Backtraces in scripts
  5204. It is now possible to get backtraces in scripts.
  5205. Put
  5206. (debug-enable 'debug 'backtrace)
  5207. at the top of the script.
  5208. (The first options enables the debugging evaluator.
  5209. The second enables backtraces.)
  5210. ** Part of module system symbol lookup now implemented in C
  5211. The eval closure of most modules is now implemented in C. Since this
  5212. was one of the bottlenecks for loading speed, Guile now loads code
  5213. substantially faster than before.
  5214. ** Attempting to get the value of an unbound variable now produces
  5215. an exception with a key of 'unbound-variable instead of 'misc-error.
  5216. ** The initial default output port is now unbuffered if it's using a
  5217. tty device. Previously in this situation it was line-buffered.
  5218. ** New hook: after-gc-hook
  5219. after-gc-hook takes over the role of gc-thunk. This hook is run at
  5220. the first SCM_TICK after a GC. (Thus, the code is run at the same
  5221. point during evaluation as signal handlers.)
  5222. Note that this hook should be used only for diagnostic and debugging
  5223. purposes. It is not certain that it will continue to be well-defined
  5224. when this hook is run in the future.
  5225. C programmers: Note the new C level hooks scm_before_gc_c_hook,
  5226. scm_before_sweep_c_hook, scm_after_gc_c_hook.
  5227. ** Improvements to garbage collector
  5228. Guile 1.4 has a new policy for triggering heap allocation and
  5229. determining the sizes of heap segments. It fixes a number of problems
  5230. in the old GC.
  5231. 1. The new policy can handle two separate pools of cells
  5232. (2-word/4-word) better. (The old policy would run wild, allocating
  5233. more and more memory for certain programs.)
  5234. 2. The old code would sometimes allocate far too much heap so that the
  5235. Guile process became gigantic. The new code avoids this.
  5236. 3. The old code would sometimes allocate too little so that few cells
  5237. were freed at GC so that, in turn, too much time was spent in GC.
  5238. 4. The old code would often trigger heap allocation several times in a
  5239. row. (The new scheme predicts how large the segments needs to be
  5240. in order not to need further allocation.)
  5241. All in all, the new GC policy will make larger applications more
  5242. efficient.
  5243. The new GC scheme also is prepared for POSIX threading. Threads can
  5244. allocate private pools of cells ("clusters") with just a single
  5245. function call. Allocation of single cells from such a cluster can
  5246. then proceed without any need of inter-thread synchronization.
  5247. ** New environment variables controlling GC parameters
  5248. GUILE_MAX_SEGMENT_SIZE Maximal segment size
  5249. (default = 2097000)
  5250. Allocation of 2-word cell heaps:
  5251. GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
  5252. (default = 360000)
  5253. GUILE_MIN_YIELD_1 Minimum number of freed cells at each
  5254. GC in percent of total heap size
  5255. (default = 40)
  5256. Allocation of 4-word cell heaps
  5257. (used for real numbers and misc other objects):
  5258. GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
  5259. (See entry "Way for application to customize GC parameters" under
  5260. section "Changes to the scm_ interface" below.)
  5261. ** Guile now implements reals using 4-word cells
  5262. This speeds up computation with reals. (They were earlier allocated
  5263. with `malloc'.) There is still some room for optimizations, however.
  5264. ** Some further steps toward POSIX thread support have been taken
  5265. *** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
  5266. don't have much effect any longer, and many of them will be removed in
  5267. next release.
  5268. *** Signals
  5269. are only handled at the top of the evaluator loop, immediately after
  5270. I/O, and in scm_equalp.
  5271. *** The GC can allocate thread private pools of pairs.
  5272. * Changes to Scheme functions and syntax
  5273. ** close-input-port and close-output-port are now R5RS
  5274. These procedures have been turned into primitives and have R5RS behaviour.
  5275. ** New procedure: simple-format PORT MESSAGE ARG1 ...
  5276. (ice-9 boot) makes `format' an alias for `simple-format' until possibly
  5277. extended by the more sophisticated version in (ice-9 format)
  5278. (simple-format port message . args)
  5279. Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
  5280. MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
  5281. the escapes are replaced with corresponding members of ARGS:
  5282. ~A formats using `display' and ~S formats using `write'.
  5283. If DESTINATION is #t, then use the `current-output-port',
  5284. if DESTINATION is #f, then return a string containing the formatted text.
  5285. Does not add a trailing newline."
  5286. ** string-ref: the second argument is no longer optional.
  5287. ** string, list->string: no longer accept strings in their arguments,
  5288. only characters, for compatibility with R5RS.
  5289. ** New procedure: port-closed? PORT
  5290. Returns #t if PORT is closed or #f if it is open.
  5291. ** Deprecated: list*
  5292. The list* functionality is now provided by cons* (SRFI-1 compliant)
  5293. ** New procedure: cons* ARG1 ARG2 ... ARGn
  5294. Like `list', but the last arg provides the tail of the constructed list,
  5295. returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
  5296. Requires at least one argument. If given one argument, that argument
  5297. is returned as result.
  5298. This function is called `list*' in some other Schemes and in Common LISP.
  5299. ** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
  5300. ** New procedure: object-documentation OBJECT
  5301. Returns the documentation string associated with OBJECT. The
  5302. procedure uses a caching mechanism so that subsequent lookups are
  5303. faster.
  5304. Exported by (ice-9 documentation).
  5305. ** module-name now returns full names of modules
  5306. Previously, only the last part of the name was returned (`session' for
  5307. `(ice-9 session)'). Ex: `(ice-9 session)'.
  5308. * Changes to the gh_ interface
  5309. ** Deprecated: gh_int2scmb
  5310. Use gh_bool2scm instead.
  5311. * Changes to the scm_ interface
  5312. ** Guile primitives now carry docstrings!
  5313. Thanks to Greg Badros!
  5314. ** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  5315. Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
  5316. macros and must contain a docstring that is extracted into foo.doc using a new
  5317. guile-doc-snarf script (that uses guile-doc-snarf.awk).
  5318. However, a major overhaul of these macros is scheduled for the next release of
  5319. guile.
  5320. ** Guile primitives use a new technique for validation of arguments
  5321. SCM_VALIDATE_* macros are defined to ease the redundancy and improve
  5322. the readability of argument checking.
  5323. ** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
  5324. ** New macros: SCM_PACK, SCM_UNPACK
  5325. Compose/decompose an SCM value.
  5326. The SCM type is now treated as an abstract data type and may be defined as a
  5327. long, a void* or as a struct, depending on the architecture and compile time
  5328. options. This makes it easier to find several types of bugs, for example when
  5329. SCM values are treated as integers without conversion. Values of the SCM type
  5330. should be treated as "atomic" values. These macros are used when
  5331. composing/decomposing an SCM value, either because you want to access
  5332. individual bits, or because you want to treat it as an integer value.
  5333. E.g., in order to set bit 7 in an SCM value x, use the expression
  5334. SCM_PACK (SCM_UNPACK (x) | 0x80)
  5335. ** The name property of hooks is deprecated.
  5336. Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
  5337. You can emulate this feature by using object properties.
  5338. ** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
  5339. SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
  5340. SCM_NVECTORP
  5341. These macros will be removed in a future release of Guile.
  5342. ** The following types, functions and macros from numbers.h are deprecated:
  5343. scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
  5344. SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
  5345. ** Port internals: the rw_random variable in the scm_port structure
  5346. must be set to non-zero in any random access port. In recent Guile
  5347. releases it was only set for bidirectional random-access ports.
  5348. ** Port internals: the seek ptob procedure is now responsible for
  5349. resetting the buffers if required. The change was made so that in the
  5350. special case of reading the current position (i.e., seek p 0 SEEK_CUR)
  5351. the fport and strport ptobs can avoid resetting the buffers,
  5352. in particular to avoid discarding unread chars. An existing port
  5353. type can be fixed by adding something like the following to the
  5354. beginning of the ptob seek procedure:
  5355. if (pt->rw_active == SCM_PORT_READ)
  5356. scm_end_input (object);
  5357. else if (pt->rw_active == SCM_PORT_WRITE)
  5358. ptob->flush (object);
  5359. although to actually avoid resetting the buffers and discard unread
  5360. chars requires further hacking that depends on the characteristics
  5361. of the ptob.
  5362. ** Deprecated functions: scm_fseek, scm_tag
  5363. These functions are no longer used and will be removed in a future version.
  5364. ** The scm_sysmissing procedure is no longer used in libguile.
  5365. Unless it turns out to be unexpectedly useful to somebody, it will be
  5366. removed in a future version.
  5367. ** The format of error message strings has changed
  5368. The two C procedures: scm_display_error and scm_error, as well as the
  5369. primitive `scm-error', now use scm_simple_format to do their work.
  5370. This means that the message strings of all code must be updated to use
  5371. ~A where %s was used before, and ~S where %S was used before.
  5372. During the period when there still are a lot of old Guiles out there,
  5373. you might want to support both old and new versions of Guile.
  5374. There are basically two methods to achieve this. Both methods use
  5375. autoconf. Put
  5376. AC_CHECK_FUNCS(scm_simple_format)
  5377. in your configure.in.
  5378. Method 1: Use the string concatenation features of ANSI C's
  5379. preprocessor.
  5380. In C:
  5381. #ifdef HAVE_SCM_SIMPLE_FORMAT
  5382. #define FMT_S "~S"
  5383. #else
  5384. #define FMT_S "%S"
  5385. #endif
  5386. Then represent each of your error messages using a preprocessor macro:
  5387. #define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
  5388. In Scheme:
  5389. (define fmt-s (if (defined? 'simple-format) "~S" "%S"))
  5390. (define make-message string-append)
  5391. (define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
  5392. Method 2: Use the oldfmt function found in doc/oldfmt.c.
  5393. In C:
  5394. scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
  5395. ...);
  5396. In Scheme:
  5397. (scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
  5398. ...)
  5399. ** Deprecated: coop_mutex_init, coop_condition_variable_init
  5400. Don't use the functions coop_mutex_init and
  5401. coop_condition_variable_init. They will change.
  5402. Use scm_mutex_init and scm_cond_init instead.
  5403. ** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
  5404. `scm_cond_timedwait' atomically unlocks MUTEX and waits on
  5405. COND, as `scm_cond_wait' does, but it also bounds the duration
  5406. of the wait. If COND has not been signaled before time ABSTIME,
  5407. the mutex MUTEX is re-acquired and `scm_cond_timedwait'
  5408. returns the error code `ETIMEDOUT'.
  5409. The ABSTIME parameter specifies an absolute time, with the same
  5410. origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
  5411. to 00:00:00 GMT, January 1, 1970.
  5412. ** New function: scm_cond_broadcast (scm_cond_t *COND)
  5413. `scm_cond_broadcast' restarts all the threads that are waiting
  5414. on the condition variable COND. Nothing happens if no threads are
  5415. waiting on COND.
  5416. ** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
  5417. `scm_key_create' allocates a new TSD key. The key is stored in
  5418. the location pointed to by KEY. There is no limit on the number
  5419. of keys allocated at a given time. The value initially associated
  5420. with the returned key is `NULL' in all currently executing threads.
  5421. The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
  5422. function associated with the key. When a thread terminates,
  5423. DESTR_FUNCTION is called on the value associated with the key in
  5424. that thread. The DESTR_FUNCTION is not called if a key is deleted
  5425. with `scm_key_delete' or a value is changed with
  5426. `scm_setspecific'. The order in which destructor functions are
  5427. called at thread termination time is unspecified.
  5428. Destructors are not yet implemented.
  5429. ** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
  5430. `scm_setspecific' changes the value associated with KEY in the
  5431. calling thread, storing the given POINTER instead.
  5432. ** New function: scm_getspecific (scm_key_t KEY)
  5433. `scm_getspecific' returns the value currently associated with
  5434. KEY in the calling thread.
  5435. ** New function: scm_key_delete (scm_key_t KEY)
  5436. `scm_key_delete' deallocates a TSD key. It does not check
  5437. whether non-`NULL' values are associated with that key in the
  5438. currently executing threads, nor call the destructor function
  5439. associated with the key.
  5440. ** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
  5441. Initialize a C level hook HOOK with associated HOOK_DATA and type
  5442. TYPE. (See scm_c_hook_run ().)
  5443. ** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
  5444. Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
  5445. is true, add it last, otherwise first. The same FUNC can be added
  5446. multiple times if FUNC_DATA differ and vice versa.
  5447. ** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
  5448. Remove hook function FUNC with associated FUNC_DATA from HOOK. A
  5449. function is only removed if both FUNC and FUNC_DATA matches.
  5450. ** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
  5451. Run hook HOOK passing DATA to the hook functions.
  5452. If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
  5453. returned is undefined.
  5454. If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
  5455. returns a non-NULL value. This value is returned as the result of
  5456. scm_c_hook_run. If all functions return NULL, NULL is returned.
  5457. If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
  5458. returns a NULL value, and NULL is returned. If all functions returns
  5459. a non-NULL value, the last value is returned.
  5460. ** New C level GC hooks
  5461. Five new C level hooks has been added to the garbage collector.
  5462. scm_before_gc_c_hook
  5463. scm_after_gc_c_hook
  5464. are run before locking and after unlocking the heap. The system is
  5465. thus in a mode where evaluation can take place. (Except that
  5466. scm_before_gc_c_hook must not allocate new cells.)
  5467. scm_before_mark_c_hook
  5468. scm_before_sweep_c_hook
  5469. scm_after_sweep_c_hook
  5470. are run when the heap is locked. These are intended for extension of
  5471. the GC in a modular fashion. Examples are the weaks and guardians
  5472. modules.
  5473. ** Way for application to customize GC parameters
  5474. The application can set up other default values for the GC heap
  5475. allocation parameters
  5476. GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
  5477. GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
  5478. GUILE_MAX_SEGMENT_SIZE,
  5479. by setting
  5480. scm_default_init_heap_size_1, scm_default_min_yield_1,
  5481. scm_default_init_heap_size_2, scm_default_min_yield_2,
  5482. scm_default_max_segment_size
  5483. respectively before callong scm_boot_guile.
  5484. (See entry "New environment variables ..." in section
  5485. "Changes to the stand-alone interpreter" above.)
  5486. ** scm_protect_object/scm_unprotect_object now nest
  5487. This means that you can call scm_protect_object multiple times on an
  5488. object and count on the object being protected until
  5489. scm_unprotect_object has been call the same number of times.
  5490. The functions also have better time complexity.
  5491. Still, it is usually possible to structure the application in a way
  5492. that you don't need to use these functions. For example, if you use a
  5493. protected standard Guile list to keep track of live objects rather
  5494. than some custom data type, objects will die a natural death when they
  5495. are no longer needed.
  5496. ** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
  5497. Guile does not provide the float representation for inexact real numbers any
  5498. more. Now, only doubles are used to represent inexact real numbers. Further,
  5499. the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
  5500. and scm_tc16_complex, respectively.
  5501. ** Removed deprecated type scm_smobfuns
  5502. ** Removed deprecated function scm_newsmob
  5503. ** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
  5504. There is an ongoing discussion among the developers whether to
  5505. deprecate `scm_make_smob_type_mfpe' or not. Please use the current
  5506. standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
  5507. until this issue has been settled.
  5508. ** Removed deprecated type tag scm_tc16_kw
  5509. ** Added type tag scm_tc16_keyword
  5510. (This was introduced already in release 1.3.4 but was not documented
  5511. until now.)
  5512. ** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
  5513. * Changes to system call interfaces:
  5514. ** The "select" procedure now tests port buffers for the ability to
  5515. provide input or accept output. Previously only the underlying file
  5516. descriptors were checked.
  5517. ** New variable PIPE_BUF: the maximum number of bytes that can be
  5518. atomically written to a pipe.
  5519. ** If a facility is not available on the system when Guile is
  5520. compiled, the corresponding primitive procedure will not be defined.
  5521. Previously it would have been defined but would throw a system-error
  5522. exception if called. Exception handlers which catch this case may
  5523. need minor modification: an error will be thrown with key
  5524. 'unbound-variable instead of 'system-error. Alternatively it's
  5525. now possible to use `defined?' to check whether the facility is
  5526. available.
  5527. ** Procedures which depend on the timezone should now give the correct
  5528. result on systems which cache the TZ environment variable, even if TZ
  5529. is changed without calling tzset.
  5530. * Changes to the networking interfaces:
  5531. ** New functions: htons, ntohs, htonl, ntohl: for converting short and
  5532. long integers between network and host format. For now, it's not
  5533. particularly convenient to do this kind of thing, but consider:
  5534. (define write-network-long
  5535. (lambda (value port)
  5536. (let ((v (make-uniform-vector 1 1 0)))
  5537. (uniform-vector-set! v 0 (htonl value))
  5538. (uniform-vector-write v port))))
  5539. (define read-network-long
  5540. (lambda (port)
  5541. (let ((v (make-uniform-vector 1 1 0)))
  5542. (uniform-vector-read! v port)
  5543. (ntohl (uniform-vector-ref v 0)))))
  5544. ** If inet-aton fails, it now throws an error with key 'misc-error
  5545. instead of 'system-error, since errno is not relevant.
  5546. ** Certain gethostbyname/gethostbyaddr failures now throw errors with
  5547. specific keys instead of 'system-error. The latter is inappropriate
  5548. since errno will not have been set. The keys are:
  5549. 'host-not-found, 'try-again, 'no-recovery and 'no-data.
  5550. ** sethostent, setnetent, setprotoent, setservent: now take an
  5551. optional argument STAYOPEN, which specifies whether the database
  5552. remains open after a database entry is accessed randomly (e.g., using
  5553. gethostbyname for the hosts database.) The default is #f. Previously
  5554. #t was always used.
  5555. Changes since Guile 1.3.2:
  5556. * Changes to the stand-alone interpreter
  5557. ** Debugger
  5558. An initial version of the Guile debugger written by Chris Hanson has
  5559. been added. The debugger is still under development but is included
  5560. in the distribution anyway since it is already quite useful.
  5561. Type
  5562. (debug)
  5563. after an error to enter the debugger. Type `help' inside the debugger
  5564. for a description of available commands.
  5565. If you prefer to have stack frames numbered and printed in
  5566. anti-chronological order and prefer up in the stack to be down on the
  5567. screen as is the case in gdb, you can put
  5568. (debug-enable 'backwards)
  5569. in your .guile startup file. (However, this means that Guile can't
  5570. use indentation to indicate stack level.)
  5571. The debugger is autoloaded into Guile at the first use.
  5572. ** Further enhancements to backtraces
  5573. There is a new debug option `width' which controls the maximum width
  5574. on the screen of printed stack frames. Fancy printing parameters
  5575. ("level" and "length" as in Common LISP) are adaptively adjusted for
  5576. each stack frame to give maximum information while still fitting
  5577. within the bounds. If the stack frame can't be made to fit by
  5578. adjusting parameters, it is simply cut off at the end. This is marked
  5579. with a `$'.
  5580. ** Some modules are now only loaded when the repl is started
  5581. The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
  5582. regex) are now loaded into (guile-user) only if the repl has been
  5583. started. The effect is that the startup time for scripts has been
  5584. reduced to 30% of what it was previously.
  5585. Correctly written scripts load the modules they require at the top of
  5586. the file and should not be affected by this change.
  5587. ** Hooks are now represented as smobs
  5588. * Changes to Scheme functions and syntax
  5589. ** Readline support has changed again.
  5590. The old (readline-activator) module is gone. Use (ice-9 readline)
  5591. instead, which now contains all readline functionality. So the code
  5592. to activate readline is now
  5593. (use-modules (ice-9 readline))
  5594. (activate-readline)
  5595. This should work at any time, including from the guile prompt.
  5596. To avoid confusion about the terms of Guile's license, please only
  5597. enable readline for your personal use; please don't make it the
  5598. default for others. Here is why we make this rather odd-sounding
  5599. request:
  5600. Guile is normally licensed under a weakened form of the GNU General
  5601. Public License, which allows you to link code with Guile without
  5602. placing that code under the GPL. This exception is important to some
  5603. people.
  5604. However, since readline is distributed under the GNU General Public
  5605. License, when you link Guile with readline, either statically or
  5606. dynamically, you effectively change Guile's license to the strict GPL.
  5607. Whenever you link any strictly GPL'd code into Guile, uses of Guile
  5608. which are normally permitted become forbidden. This is a rather
  5609. non-obvious consequence of the licensing terms.
  5610. So, to make sure things remain clear, please let people choose for
  5611. themselves whether to link GPL'd libraries like readline with Guile.
  5612. ** regexp-substitute/global has changed slightly, but incompatibly.
  5613. If you include a function in the item list, the string of the match
  5614. object it receives is the same string passed to
  5615. regexp-substitute/global, not some suffix of that string.
  5616. Correspondingly, the match's positions are relative to the entire
  5617. string, not the suffix.
  5618. If the regexp can match the empty string, the way matches are chosen
  5619. from the string has changed. regexp-substitute/global recognizes the
  5620. same set of matches that list-matches does; see below.
  5621. ** New function: list-matches REGEXP STRING [FLAGS]
  5622. Return a list of match objects, one for every non-overlapping, maximal
  5623. match of REGEXP in STRING. The matches appear in left-to-right order.
  5624. list-matches only reports matches of the empty string if there are no
  5625. other matches which begin on, end at, or include the empty match's
  5626. position.
  5627. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  5628. ** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
  5629. For each match of REGEXP in STRING, apply PROC to the match object,
  5630. and the last value PROC returned, or INIT for the first call. Return
  5631. the last value returned by PROC. We apply PROC to the matches as they
  5632. appear from left to right.
  5633. This function recognizes matches according to the same criteria as
  5634. list-matches.
  5635. Thus, you could define list-matches like this:
  5636. (define (list-matches regexp string . flags)
  5637. (reverse! (apply fold-matches regexp string '() cons flags)))
  5638. If present, FLAGS is passed as the FLAGS argument to regexp-exec.
  5639. ** Hooks
  5640. *** New function: hook? OBJ
  5641. Return #t if OBJ is a hook, otherwise #f.
  5642. *** New function: make-hook-with-name NAME [ARITY]
  5643. Return a hook with name NAME and arity ARITY. The default value for
  5644. ARITY is 0. The only effect of NAME is that it will appear when the
  5645. hook object is printed to ease debugging.
  5646. *** New function: hook-empty? HOOK
  5647. Return #t if HOOK doesn't contain any procedures, otherwise #f.
  5648. *** New function: hook->list HOOK
  5649. Return a list of the procedures that are called when run-hook is
  5650. applied to HOOK.
  5651. ** `map' signals an error if its argument lists are not all the same length.
  5652. This is the behavior required by R5RS, so this change is really a bug
  5653. fix. But it seems to affect a lot of people's code, so we're
  5654. mentioning it here anyway.
  5655. ** Print-state handling has been made more transparent
  5656. Under certain circumstances, ports are represented as a port with an
  5657. associated print state. Earlier, this pair was represented as a pair
  5658. (see "Some magic has been added to the printer" below). It is now
  5659. indistinguishable (almost; see `get-print-state') from a port on the
  5660. user level.
  5661. *** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
  5662. Return a new port with the associated print state PRINT-STATE.
  5663. *** New function: get-print-state OUTPUT-PORT
  5664. Return the print state associated with this port if it exists,
  5665. otherwise return #f.
  5666. *** New function: directory-stream? OBJECT
  5667. Returns true iff OBJECT is a directory stream --- the sort of object
  5668. returned by `opendir'.
  5669. ** New function: using-readline?
  5670. Return #t if readline is in use in the current repl.
  5671. ** structs will be removed in 1.4
  5672. Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
  5673. and use GOOPS objects as the fundamental record type.
  5674. * Changes to the scm_ interface
  5675. ** structs will be removed in 1.4
  5676. The entire current struct interface (struct.c, struct.h) will be
  5677. replaced in Guile 1.4. We will merge GOOPS into libguile and use
  5678. GOOPS objects as the fundamental record type.
  5679. ** The internal representation of subr's has changed
  5680. Instead of giving a hint to the subr name, the CAR field of the subr
  5681. now contains an index to a subr entry in scm_subr_table.
  5682. *** New variable: scm_subr_table
  5683. An array of subr entries. A subr entry contains the name, properties
  5684. and documentation associated with the subr. The properties and
  5685. documentation slots are not yet used.
  5686. ** A new scheme for "forwarding" calls to a builtin to a generic function
  5687. It is now possible to extend the functionality of some Guile
  5688. primitives by letting them defer a call to a GOOPS generic function on
  5689. argument mismatch. This means that there is no loss of efficiency in
  5690. normal evaluation.
  5691. Example:
  5692. (use-modules (oop goops)) ; Must be GOOPS version 0.2.
  5693. (define-method + ((x <string>) (y <string>))
  5694. (string-append x y))
  5695. + will still be as efficient as usual in numerical calculations, but
  5696. can also be used for concatenating strings.
  5697. Who will be the first one to extend Guile's numerical tower to
  5698. rationals? :) [OK, there a few other things to fix before this can
  5699. be made in a clean way.]
  5700. *** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
  5701. New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
  5702. New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
  5703. These do the same job as SCM_PROC and SCM_PROC1, but they also define
  5704. a variable GENERIC which can be used by the dispatch macros below.
  5705. [This is experimental code which may change soon.]
  5706. *** New macros for forwarding control to a generic on arg type error
  5707. New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
  5708. New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
  5709. These correspond to the scm_wta function call, and have the same
  5710. behaviour until the user has called the GOOPS primitive
  5711. `enable-primitive-generic!'. After that, these macros will apply the
  5712. generic function GENERIC to the argument(s) instead of calling
  5713. scm_wta.
  5714. [This is experimental code which may change soon.]
  5715. *** New macros for argument testing with generic dispatch
  5716. New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
  5717. New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
  5718. These correspond to the SCM_ASSERT macro, but will defer control to
  5719. GENERIC on error after `enable-primitive-generic!' has been called.
  5720. [This is experimental code which may change soon.]
  5721. ** New function: SCM scm_eval_body (SCM body, SCM env)
  5722. Evaluates the body of a special form.
  5723. ** The internal representation of struct's has changed
  5724. Previously, four slots were allocated for the procedure(s) of entities
  5725. and operators. The motivation for this representation had to do with
  5726. the structure of the evaluator, the wish to support tail-recursive
  5727. generic functions, and efficiency. Since the generic function
  5728. dispatch mechanism has changed, there is no longer a need for such an
  5729. expensive representation, and the representation has been simplified.
  5730. This should not make any difference for most users.
  5731. ** GOOPS support has been cleaned up.
  5732. Some code has been moved from eval.c to objects.c and code in both of
  5733. these compilation units has been cleaned up and better structured.
  5734. *** New functions for applying generic functions
  5735. New function: SCM scm_apply_generic (GENERIC, ARGS)
  5736. New function: SCM scm_call_generic_0 (GENERIC)
  5737. New function: SCM scm_call_generic_1 (GENERIC, ARG1)
  5738. New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
  5739. New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
  5740. ** Deprecated function: scm_make_named_hook
  5741. It is now replaced by:
  5742. ** New function: SCM scm_create_hook (const char *name, int arity)
  5743. Creates a hook in the same way as make-hook above but also
  5744. binds a variable named NAME to it.
  5745. This is the typical way of creating a hook from C code.
  5746. Currently, the variable is created in the "current" module.
  5747. This might change when we get the new module system.
  5748. [The behaviour is identical to scm_make_named_hook.]
  5749. Changes since Guile 1.3:
  5750. * Changes to mailing lists
  5751. ** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
  5752. See the README file to find current addresses for all the Guile
  5753. mailing lists.
  5754. * Changes to the distribution
  5755. ** Readline support is no longer included with Guile by default.
  5756. Based on the different license terms of Guile and Readline, we
  5757. concluded that Guile should not *by default* cause the linking of
  5758. Readline into an application program. Readline support is now offered
  5759. as a separate module, which is linked into an application only when
  5760. you explicitly specify it.
  5761. Although Guile is GNU software, its distribution terms add a special
  5762. exception to the usual GNU General Public License (GPL). Guile's
  5763. license includes a clause that allows you to link Guile with non-free
  5764. programs. We add this exception so as not to put Guile at a
  5765. disadvantage vis-a-vis other extensibility packages that support other
  5766. languages.
  5767. In contrast, the GNU Readline library is distributed under the GNU
  5768. General Public License pure and simple. This means that you may not
  5769. link Readline, even dynamically, into an application unless it is
  5770. distributed under a free software license that is compatible the GPL.
  5771. Because of this difference in distribution terms, an application that
  5772. can use Guile may not be able to use Readline. Now users will be
  5773. explicitly offered two independent decisions about the use of these
  5774. two packages.
  5775. You can activate the readline support by issuing
  5776. (use-modules (readline-activator))
  5777. (activate-readline)
  5778. from your ".guile" file, for example.
  5779. * Changes to the stand-alone interpreter
  5780. ** All builtins now print as primitives.
  5781. Previously builtin procedures not belonging to the fundamental subr
  5782. types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
  5783. Now, they print as #<primitive-procedure NAME>.
  5784. ** Backtraces slightly more intelligible.
  5785. gsubr-apply and macro transformer application frames no longer appear
  5786. in backtraces.
  5787. * Changes to Scheme functions and syntax
  5788. ** Guile now correctly handles internal defines by rewriting them into
  5789. their equivalent letrec. Previously, internal defines would
  5790. incrementally add to the innermost environment, without checking
  5791. whether the restrictions specified in RnRS were met. This lead to the
  5792. correct behaviour when these restriction actually were met, but didn't
  5793. catch all illegal uses. Such an illegal use could lead to crashes of
  5794. the Guile interpreter or other unwanted results. An example of
  5795. incorrect internal defines that made Guile behave erratically:
  5796. (let ()
  5797. (define a 1)
  5798. (define (b) a)
  5799. (define c (1+ (b)))
  5800. (define d 3)
  5801. (b))
  5802. => 2
  5803. The problem with this example is that the definition of `c' uses the
  5804. value of `b' directly. This confuses the meoization machine of Guile
  5805. so that the second call of `b' (this time in a larger environment that
  5806. also contains bindings for `c' and `d') refers to the binding of `c'
  5807. instead of `a'. You could also make Guile crash with a variation on
  5808. this theme:
  5809. (define (foo flag)
  5810. (define a 1)
  5811. (define (b flag) (if flag a 1))
  5812. (define c (1+ (b flag)))
  5813. (define d 3)
  5814. (b #t))
  5815. (foo #f)
  5816. (foo #t)
  5817. From now on, Guile will issue an `Unbound variable: b' error message
  5818. for both examples.
  5819. ** Hooks
  5820. A hook contains a list of functions which should be called on
  5821. particular occasions in an existing program. Hooks are used for
  5822. customization.
  5823. A window manager might have a hook before-window-map-hook. The window
  5824. manager uses the function run-hooks to call all functions stored in
  5825. before-window-map-hook each time a window is mapped. The user can
  5826. store functions in the hook using add-hook!.
  5827. In Guile, hooks are first class objects.
  5828. *** New function: make-hook [N_ARGS]
  5829. Return a hook for hook functions which can take N_ARGS arguments.
  5830. The default value for N_ARGS is 0.
  5831. (See also scm_make_named_hook below.)
  5832. *** New function: add-hook! HOOK PROC [APPEND_P]
  5833. Put PROC at the beginning of the list of functions stored in HOOK.
  5834. If APPEND_P is supplied, and non-false, put PROC at the end instead.
  5835. PROC must be able to take the number of arguments specified when the
  5836. hook was created.
  5837. If PROC already exists in HOOK, then remove it first.
  5838. *** New function: remove-hook! HOOK PROC
  5839. Remove PROC from the list of functions in HOOK.
  5840. *** New function: reset-hook! HOOK
  5841. Clear the list of hook functions stored in HOOK.
  5842. *** New function: run-hook HOOK ARG1 ...
  5843. Run all hook functions stored in HOOK with arguments ARG1 ... .
  5844. The number of arguments supplied must correspond to the number given
  5845. when the hook was created.
  5846. ** The function `dynamic-link' now takes optional keyword arguments.
  5847. The only keyword argument that is currently defined is `:global
  5848. BOOL'. With it, you can control whether the shared library will be
  5849. linked in global mode or not. In global mode, the symbols from the
  5850. linked library can be used to resolve references from other
  5851. dynamically linked libraries. In non-global mode, the linked
  5852. library is essentially invisible and can only be accessed via
  5853. `dynamic-func', etc. The default is now to link in global mode.
  5854. Previously, the default has been non-global mode.
  5855. The `#:global' keyword is only effective on platforms that support
  5856. the dlopen family of functions.
  5857. ** New function `provided?'
  5858. - Function: provided? FEATURE
  5859. Return true iff FEATURE is supported by this installation of
  5860. Guile. FEATURE must be a symbol naming a feature; the global
  5861. variable `*features*' is a list of available features.
  5862. ** Changes to the module (ice-9 expect):
  5863. *** The expect-strings macro now matches `$' in a regular expression
  5864. only at a line-break or end-of-file by default. Previously it would
  5865. match the end of the string accumulated so far. The old behaviour
  5866. can be obtained by setting the variable `expect-strings-exec-flags'
  5867. to 0.
  5868. *** The expect-strings macro now uses a variable `expect-strings-exec-flags'
  5869. for the regexp-exec flags. If `regexp/noteol' is included, then `$'
  5870. in a regular expression will still match before a line-break or
  5871. end-of-file. The default is `regexp/noteol'.
  5872. *** The expect-strings macro now uses a variable
  5873. `expect-strings-compile-flags' for the flags to be supplied to
  5874. `make-regexp'. The default is `regexp/newline', which was previously
  5875. hard-coded.
  5876. *** The expect macro now supplies two arguments to a match procedure:
  5877. the current accumulated string and a flag to indicate whether
  5878. end-of-file has been reached. Previously only the string was supplied.
  5879. If end-of-file is reached, the match procedure will be called an
  5880. additional time with the same accumulated string as the previous call
  5881. but with the flag set.
  5882. ** New module (ice-9 format), implementing the Common Lisp `format' function.
  5883. This code, and the documentation for it that appears here, was
  5884. borrowed from SLIB, with minor adaptations for Guile.
  5885. - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
  5886. An almost complete implementation of Common LISP format description
  5887. according to the CL reference book `Common LISP' from Guy L.
  5888. Steele, Digital Press. Backward compatible to most of the
  5889. available Scheme format implementations.
  5890. Returns `#t', `#f' or a string; has side effect of printing
  5891. according to FORMAT-STRING. If DESTINATION is `#t', the output is
  5892. to the current output port and `#t' is returned. If DESTINATION
  5893. is `#f', a formatted string is returned as the result of the call.
  5894. NEW: If DESTINATION is a string, DESTINATION is regarded as the
  5895. format string; FORMAT-STRING is then the first argument and the
  5896. output is returned as a string. If DESTINATION is a number, the
  5897. output is to the current error port if available by the
  5898. implementation. Otherwise DESTINATION must be an output port and
  5899. `#t' is returned.
  5900. FORMAT-STRING must be a string. In case of a formatting error
  5901. format returns `#f' and prints a message on the current output or
  5902. error port. Characters are output as if the string were output by
  5903. the `display' function with the exception of those prefixed by a
  5904. tilde (~). For a detailed description of the FORMAT-STRING syntax
  5905. please consult a Common LISP format reference manual. For a test
  5906. suite to verify this format implementation load `formatst.scm'.
  5907. Please send bug reports to `lutzeb@cs.tu-berlin.de'.
  5908. Note: `format' is not reentrant, i.e. only one `format'-call may
  5909. be executed at a time.
  5910. *** Format Specification (Format version 3.0)
  5911. Please consult a Common LISP format reference manual for a detailed
  5912. description of the format string syntax. For a demonstration of the
  5913. implemented directives see `formatst.scm'.
  5914. This implementation supports directive parameters and modifiers (`:'
  5915. and `@' characters). Multiple parameters must be separated by a comma
  5916. (`,'). Parameters can be numerical parameters (positive or negative),
  5917. character parameters (prefixed by a quote character (`''), variable
  5918. parameters (`v'), number of rest arguments parameter (`#'), empty and
  5919. default parameters. Directive characters are case independent. The
  5920. general form of a directive is:
  5921. DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
  5922. DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
  5923. *** Implemented CL Format Control Directives
  5924. Documentation syntax: Uppercase characters represent the
  5925. corresponding control directive characters. Lowercase characters
  5926. represent control directive parameter descriptions.
  5927. `~A'
  5928. Any (print as `display' does).
  5929. `~@A'
  5930. left pad.
  5931. `~MINCOL,COLINC,MINPAD,PADCHARA'
  5932. full padding.
  5933. `~S'
  5934. S-expression (print as `write' does).
  5935. `~@S'
  5936. left pad.
  5937. `~MINCOL,COLINC,MINPAD,PADCHARS'
  5938. full padding.
  5939. `~D'
  5940. Decimal.
  5941. `~@D'
  5942. print number sign always.
  5943. `~:D'
  5944. print comma separated.
  5945. `~MINCOL,PADCHAR,COMMACHARD'
  5946. padding.
  5947. `~X'
  5948. Hexadecimal.
  5949. `~@X'
  5950. print number sign always.
  5951. `~:X'
  5952. print comma separated.
  5953. `~MINCOL,PADCHAR,COMMACHARX'
  5954. padding.
  5955. `~O'
  5956. Octal.
  5957. `~@O'
  5958. print number sign always.
  5959. `~:O'
  5960. print comma separated.
  5961. `~MINCOL,PADCHAR,COMMACHARO'
  5962. padding.
  5963. `~B'
  5964. Binary.
  5965. `~@B'
  5966. print number sign always.
  5967. `~:B'
  5968. print comma separated.
  5969. `~MINCOL,PADCHAR,COMMACHARB'
  5970. padding.
  5971. `~NR'
  5972. Radix N.
  5973. `~N,MINCOL,PADCHAR,COMMACHARR'
  5974. padding.
  5975. `~@R'
  5976. print a number as a Roman numeral.
  5977. `~:@R'
  5978. print a number as an "old fashioned" Roman numeral.
  5979. `~:R'
  5980. print a number as an ordinal English number.
  5981. `~:@R'
  5982. print a number as a cardinal English number.
  5983. `~P'
  5984. Plural.
  5985. `~@P'
  5986. prints `y' and `ies'.
  5987. `~:P'
  5988. as `~P but jumps 1 argument backward.'
  5989. `~:@P'
  5990. as `~@P but jumps 1 argument backward.'
  5991. `~C'
  5992. Character.
  5993. `~@C'
  5994. prints a character as the reader can understand it (i.e. `#\'
  5995. prefixing).
  5996. `~:C'
  5997. prints a character as emacs does (eg. `^C' for ASCII 03).
  5998. `~F'
  5999. Fixed-format floating-point (prints a flonum like MMM.NNN).
  6000. `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
  6001. `~@F'
  6002. If the number is positive a plus sign is printed.
  6003. `~E'
  6004. Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
  6005. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
  6006. `~@E'
  6007. If the number is positive a plus sign is printed.
  6008. `~G'
  6009. General floating-point (prints a flonum either fixed or
  6010. exponential).
  6011. `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
  6012. `~@G'
  6013. If the number is positive a plus sign is printed.
  6014. `~$'
  6015. Dollars floating-point (prints a flonum in fixed with signs
  6016. separated).
  6017. `~DIGITS,SCALE,WIDTH,PADCHAR$'
  6018. `~@$'
  6019. If the number is positive a plus sign is printed.
  6020. `~:@$'
  6021. A sign is always printed and appears before the padding.
  6022. `~:$'
  6023. The sign appears before the padding.
  6024. `~%'
  6025. Newline.
  6026. `~N%'
  6027. print N newlines.
  6028. `~&'
  6029. print newline if not at the beginning of the output line.
  6030. `~N&'
  6031. prints `~&' and then N-1 newlines.
  6032. `~|'
  6033. Page Separator.
  6034. `~N|'
  6035. print N page separators.
  6036. `~~'
  6037. Tilde.
  6038. `~N~'
  6039. print N tildes.
  6040. `~'<newline>
  6041. Continuation Line.
  6042. `~:'<newline>
  6043. newline is ignored, white space left.
  6044. `~@'<newline>
  6045. newline is left, white space ignored.
  6046. `~T'
  6047. Tabulation.
  6048. `~@T'
  6049. relative tabulation.
  6050. `~COLNUM,COLINCT'
  6051. full tabulation.
  6052. `~?'
  6053. Indirection (expects indirect arguments as a list).
  6054. `~@?'
  6055. extracts indirect arguments from format arguments.
  6056. `~(STR~)'
  6057. Case conversion (converts by `string-downcase').
  6058. `~:(STR~)'
  6059. converts by `string-capitalize'.
  6060. `~@(STR~)'
  6061. converts by `string-capitalize-first'.
  6062. `~:@(STR~)'
  6063. converts by `string-upcase'.
  6064. `~*'
  6065. Argument Jumping (jumps 1 argument forward).
  6066. `~N*'
  6067. jumps N arguments forward.
  6068. `~:*'
  6069. jumps 1 argument backward.
  6070. `~N:*'
  6071. jumps N arguments backward.
  6072. `~@*'
  6073. jumps to the 0th argument.
  6074. `~N@*'
  6075. jumps to the Nth argument (beginning from 0)
  6076. `~[STR0~;STR1~;...~;STRN~]'
  6077. Conditional Expression (numerical clause conditional).
  6078. `~N['
  6079. take argument from N.
  6080. `~@['
  6081. true test conditional.
  6082. `~:['
  6083. if-else-then conditional.
  6084. `~;'
  6085. clause separator.
  6086. `~:;'
  6087. default clause follows.
  6088. `~{STR~}'
  6089. Iteration (args come from the next argument (a list)).
  6090. `~N{'
  6091. at most N iterations.
  6092. `~:{'
  6093. args from next arg (a list of lists).
  6094. `~@{'
  6095. args from the rest of arguments.
  6096. `~:@{'
  6097. args from the rest args (lists).
  6098. `~^'
  6099. Up and out.
  6100. `~N^'
  6101. aborts if N = 0
  6102. `~N,M^'
  6103. aborts if N = M
  6104. `~N,M,K^'
  6105. aborts if N <= M <= K
  6106. *** Not Implemented CL Format Control Directives
  6107. `~:A'
  6108. print `#f' as an empty list (see below).
  6109. `~:S'
  6110. print `#f' as an empty list (see below).
  6111. `~<~>'
  6112. Justification.
  6113. `~:^'
  6114. (sorry I don't understand its semantics completely)
  6115. *** Extended, Replaced and Additional Control Directives
  6116. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
  6117. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
  6118. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
  6119. `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
  6120. `~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
  6121. COMMAWIDTH is the number of characters between two comma
  6122. characters.
  6123. `~I'
  6124. print a R4RS complex number as `~F~@Fi' with passed parameters for
  6125. `~F'.
  6126. `~Y'
  6127. Pretty print formatting of an argument for scheme code lists.
  6128. `~K'
  6129. Same as `~?.'
  6130. `~!'
  6131. Flushes the output if format DESTINATION is a port.
  6132. `~_'
  6133. Print a `#\space' character
  6134. `~N_'
  6135. print N `#\space' characters.
  6136. `~/'
  6137. Print a `#\tab' character
  6138. `~N/'
  6139. print N `#\tab' characters.
  6140. `~NC'
  6141. Takes N as an integer representation for a character. No arguments
  6142. are consumed. N is converted to a character by `integer->char'. N
  6143. must be a positive decimal number.
  6144. `~:S'
  6145. Print out readproof. Prints out internal objects represented as
  6146. `#<...>' as strings `"#<...>"' so that the format output can always
  6147. be processed by `read'.
  6148. `~:A'
  6149. Print out readproof. Prints out internal objects represented as
  6150. `#<...>' as strings `"#<...>"' so that the format output can always
  6151. be processed by `read'.
  6152. `~Q'
  6153. Prints information and a copyright notice on the format
  6154. implementation.
  6155. `~:Q'
  6156. prints format version.
  6157. `~F, ~E, ~G, ~$'
  6158. may also print number strings, i.e. passing a number as a string
  6159. and format it accordingly.
  6160. *** Configuration Variables
  6161. The format module exports some configuration variables to suit the
  6162. systems and users needs. There should be no modification necessary for
  6163. the configuration that comes with Guile. Format detects automatically
  6164. if the running scheme system implements floating point numbers and
  6165. complex numbers.
  6166. format:symbol-case-conv
  6167. Symbols are converted by `symbol->string' so the case type of the
  6168. printed symbols is implementation dependent.
  6169. `format:symbol-case-conv' is a one arg closure which is either
  6170. `#f' (no conversion), `string-upcase', `string-downcase' or
  6171. `string-capitalize'. (default `#f')
  6172. format:iobj-case-conv
  6173. As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
  6174. implementation internal objects. (default `#f')
  6175. format:expch
  6176. The character prefixing the exponent value in `~E' printing.
  6177. (default `#\E')
  6178. *** Compatibility With Other Format Implementations
  6179. SLIB format 2.x:
  6180. See `format.doc'.
  6181. SLIB format 1.4:
  6182. Downward compatible except for padding support and `~A', `~S',
  6183. `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
  6184. `printf' padding support which is completely replaced by the CL
  6185. `format' padding style.
  6186. MIT C-Scheme 7.1:
  6187. Downward compatible except for `~', which is not documented
  6188. (ignores all characters inside the format string up to a newline
  6189. character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
  6190. numerical and variable parameters and `:/@' modifiers in the CL
  6191. sense).
  6192. Elk 1.5/2.0:
  6193. Downward compatible except for `~A' and `~S' which print in
  6194. uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
  6195. directive parameters or modifiers)).
  6196. Scheme->C 01nov91:
  6197. Downward compatible except for an optional destination parameter:
  6198. S2C accepts a format call without a destination which returns a
  6199. formatted string. This is equivalent to a #f destination in S2C.
  6200. (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
  6201. parameters or modifiers)).
  6202. ** Changes to string-handling functions.
  6203. These functions were added to support the (ice-9 format) module, above.
  6204. *** New function: string-upcase STRING
  6205. *** New function: string-downcase STRING
  6206. These are non-destructive versions of the existing string-upcase! and
  6207. string-downcase! functions.
  6208. *** New function: string-capitalize! STRING
  6209. *** New function: string-capitalize STRING
  6210. These functions convert the first letter of each word in the string to
  6211. upper case. Thus:
  6212. (string-capitalize "howdy there")
  6213. => "Howdy There"
  6214. As with the other functions, string-capitalize! modifies the string in
  6215. place, while string-capitalize returns a modified copy of its argument.
  6216. *** New function: string-ci->symbol STRING
  6217. Return a symbol whose name is STRING, but having the same case as if
  6218. the symbol had be read by `read'.
  6219. Guile can be configured to be sensitive or insensitive to case
  6220. differences in Scheme identifiers. If Guile is case-insensitive, all
  6221. symbols are converted to lower case on input. The `string-ci->symbol'
  6222. function returns a symbol whose name in STRING, transformed as Guile
  6223. would if STRING were input.
  6224. *** New function: substring-move! STRING1 START END STRING2 START
  6225. Copy the substring of STRING1 from START (inclusive) to END
  6226. (exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
  6227. string, and the source and destination areas may overlap; in all
  6228. cases, the function behaves as if all the characters were copied
  6229. simultanously.
  6230. *** Extended functions: substring-move-left! substring-move-right!
  6231. These functions now correctly copy arbitrarily overlapping substrings;
  6232. they are both synonyms for substring-move!.
  6233. ** New module (ice-9 getopt-long), with the function `getopt-long'.
  6234. getopt-long is a function for parsing command-line arguments in a
  6235. manner consistent with other GNU programs.
  6236. (getopt-long ARGS GRAMMAR)
  6237. Parse the arguments ARGS according to the argument list grammar GRAMMAR.
  6238. ARGS should be a list of strings. Its first element should be the
  6239. name of the program; subsequent elements should be the arguments
  6240. that were passed to the program on the command line. The
  6241. `program-arguments' procedure returns a list of this form.
  6242. GRAMMAR is a list of the form:
  6243. ((OPTION (PROPERTY VALUE) ...) ...)
  6244. Each OPTION should be a symbol. `getopt-long' will accept a
  6245. command-line option named `--OPTION'.
  6246. Each option can have the following (PROPERTY VALUE) pairs:
  6247. (single-char CHAR) --- Accept `-CHAR' as a single-character
  6248. equivalent to `--OPTION'. This is how to specify traditional
  6249. Unix-style flags.
  6250. (required? BOOL) --- If BOOL is true, the option is required.
  6251. getopt-long will raise an error if it is not found in ARGS.
  6252. (value BOOL) --- If BOOL is #t, the option accepts a value; if
  6253. it is #f, it does not; and if it is the symbol
  6254. `optional', the option may appear in ARGS with or
  6255. without a value.
  6256. (predicate FUNC) --- If the option accepts a value (i.e. you
  6257. specified `(value #t)' for this option), then getopt
  6258. will apply FUNC to the value, and throw an exception
  6259. if it returns #f. FUNC should be a procedure which
  6260. accepts a string and returns a boolean value; you may
  6261. need to use quasiquotes to get it into GRAMMAR.
  6262. The (PROPERTY VALUE) pairs may occur in any order, but each
  6263. property may occur only once. By default, options do not have
  6264. single-character equivalents, are not required, and do not take
  6265. values.
  6266. In ARGS, single-character options may be combined, in the usual
  6267. Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
  6268. accepts values, then it must be the last option in the
  6269. combination; the value is the next argument. So, for example, using
  6270. the following grammar:
  6271. ((apples (single-char #\a))
  6272. (blimps (single-char #\b) (value #t))
  6273. (catalexis (single-char #\c) (value #t)))
  6274. the following argument lists would be acceptable:
  6275. ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
  6276. for "blimps" and "catalexis")
  6277. ("-ab" "bang" "-c" "couth") (same)
  6278. ("-ac" "couth" "-b" "bang") (same)
  6279. ("-abc" "couth" "bang") (an error, since `-b' is not the
  6280. last option in its combination)
  6281. If an option's value is optional, then `getopt-long' decides
  6282. whether it has a value by looking at what follows it in ARGS. If
  6283. the next element is a string, and it does not appear to be an
  6284. option itself, then that string is the option's value.
  6285. The value of a long option can appear as the next element in ARGS,
  6286. or it can follow the option name, separated by an `=' character.
  6287. Thus, using the same grammar as above, the following argument lists
  6288. are equivalent:
  6289. ("--apples" "Braeburn" "--blimps" "Goodyear")
  6290. ("--apples=Braeburn" "--blimps" "Goodyear")
  6291. ("--blimps" "Goodyear" "--apples=Braeburn")
  6292. If the option "--" appears in ARGS, argument parsing stops there;
  6293. subsequent arguments are returned as ordinary arguments, even if
  6294. they resemble options. So, in the argument list:
  6295. ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
  6296. `getopt-long' will recognize the `apples' option as having the
  6297. value "Granny Smith", but it will not recognize the `blimp'
  6298. option; it will return the strings "--blimp" and "Goodyear" as
  6299. ordinary argument strings.
  6300. The `getopt-long' function returns the parsed argument list as an
  6301. assocation list, mapping option names --- the symbols from GRAMMAR
  6302. --- onto their values, or #t if the option does not accept a value.
  6303. Unused options do not appear in the alist.
  6304. All arguments that are not the value of any option are returned
  6305. as a list, associated with the empty list.
  6306. `getopt-long' throws an exception if:
  6307. - it finds an unrecognized option in ARGS
  6308. - a required option is omitted
  6309. - an option that requires an argument doesn't get one
  6310. - an option that doesn't accept an argument does get one (this can
  6311. only happen using the long option `--opt=value' syntax)
  6312. - an option predicate fails
  6313. So, for example:
  6314. (define grammar
  6315. `((lockfile-dir (required? #t)
  6316. (value #t)
  6317. (single-char #\k)
  6318. (predicate ,file-is-directory?))
  6319. (verbose (required? #f)
  6320. (single-char #\v)
  6321. (value #f))
  6322. (x-includes (single-char #\x))
  6323. (rnet-server (single-char #\y)
  6324. (predicate ,string?))))
  6325. (getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
  6326. "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
  6327. grammar)
  6328. => ((() "foo1" "-fred" "foo2" "foo3")
  6329. (rnet-server . "lamprod")
  6330. (x-includes . "/usr/include")
  6331. (lockfile-dir . "/tmp")
  6332. (verbose . #t))
  6333. ** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
  6334. It will be removed in a few releases.
  6335. ** New syntax: lambda*
  6336. ** New syntax: define*
  6337. ** New syntax: define*-public
  6338. ** New syntax: defmacro*
  6339. ** New syntax: defmacro*-public
  6340. Guile now supports optional arguments.
  6341. `lambda*', `define*', `define*-public', `defmacro*' and
  6342. `defmacro*-public' are identical to the non-* versions except that
  6343. they use an extended type of parameter list that has the following BNF
  6344. syntax (parentheses are literal, square brackets indicate grouping,
  6345. and `*', `+' and `?' have the usual meaning):
  6346. ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
  6347. [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
  6348. [[#&rest identifier]|[. identifier]]? ) | [identifier]
  6349. ext-var-decl ::= identifier | ( identifier expression )
  6350. The semantics are best illustrated with the following documentation
  6351. and examples for `lambda*':
  6352. lambda* args . body
  6353. lambda extended for optional and keyword arguments
  6354. lambda* creates a procedure that takes optional arguments. These
  6355. are specified by putting them inside brackets at the end of the
  6356. paramater list, but before any dotted rest argument. For example,
  6357. (lambda* (a b #&optional c d . e) '())
  6358. creates a procedure with fixed arguments a and b, optional arguments c
  6359. and d, and rest argument e. If the optional arguments are omitted
  6360. in a call, the variables for them are unbound in the procedure. This
  6361. can be checked with the bound? macro.
  6362. lambda* can also take keyword arguments. For example, a procedure
  6363. defined like this:
  6364. (lambda* (#&key xyzzy larch) '())
  6365. can be called with any of the argument lists (#:xyzzy 11)
  6366. (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
  6367. are given as keywords are bound to values.
  6368. Optional and keyword arguments can also be given default values
  6369. which they take on when they are not present in a call, by giving a
  6370. two-item list in place of an optional argument, for example in:
  6371. (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
  6372. foo is a fixed argument, bar is an optional argument with default
  6373. value 42, and baz is a keyword argument with default value 73.
  6374. Default value expressions are not evaluated unless they are needed
  6375. and until the procedure is called.
  6376. lambda* now supports two more special parameter list keywords.
  6377. lambda*-defined procedures now throw an error by default if a
  6378. keyword other than one of those specified is found in the actual
  6379. passed arguments. However, specifying #&allow-other-keys
  6380. immediately after the kyword argument declarations restores the
  6381. previous behavior of ignoring unknown keywords. lambda* also now
  6382. guarantees that if the same keyword is passed more than once, the
  6383. last one passed is the one that takes effect. For example,
  6384. ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
  6385. #:heads 37 #:tails 42 #:heads 99)
  6386. would result in (99 47) being displayed.
  6387. #&rest is also now provided as a synonym for the dotted syntax rest
  6388. argument. The argument lists (a . b) and (a #&rest b) are equivalent in
  6389. all respects to lambda*. This is provided for more similarity to DSSSL,
  6390. MIT-Scheme and Kawa among others, as well as for refugees from other
  6391. Lisp dialects.
  6392. Further documentation may be found in the optargs.scm file itself.
  6393. The optional argument module also exports the macros `let-optional',
  6394. `let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
  6395. are not documented here because they may be removed in the future, but
  6396. full documentation is still available in optargs.scm.
  6397. ** New syntax: and-let*
  6398. Guile now supports the `and-let*' form, described in the draft SRFI-2.
  6399. Syntax: (land* (<clause> ...) <body> ...)
  6400. Each <clause> should have one of the following forms:
  6401. (<variable> <expression>)
  6402. (<expression>)
  6403. <bound-variable>
  6404. Each <variable> or <bound-variable> should be an identifier. Each
  6405. <expression> should be a valid expression. The <body> should be a
  6406. possibly empty sequence of expressions, like the <body> of a
  6407. lambda form.
  6408. Semantics: A LAND* expression is evaluated by evaluating the
  6409. <expression> or <bound-variable> of each of the <clause>s from
  6410. left to right. The value of the first <expression> or
  6411. <bound-variable> that evaluates to a false value is returned; the
  6412. remaining <expression>s and <bound-variable>s are not evaluated.
  6413. The <body> forms are evaluated iff all the <expression>s and
  6414. <bound-variable>s evaluate to true values.
  6415. The <expression>s and the <body> are evaluated in an environment
  6416. binding each <variable> of the preceding (<variable> <expression>)
  6417. clauses to the value of the <expression>. Later bindings
  6418. shadow earlier bindings.
  6419. Guile's and-let* macro was contributed by Michael Livshin.
  6420. ** New sorting functions
  6421. *** New function: sorted? SEQUENCE LESS?
  6422. Returns `#t' when the sequence argument is in non-decreasing order
  6423. according to LESS? (that is, there is no adjacent pair `... x y
  6424. ...' for which `(less? y x)').
  6425. Returns `#f' when the sequence contains at least one out-of-order
  6426. pair. It is an error if the sequence is neither a list nor a
  6427. vector.
  6428. *** New function: merge LIST1 LIST2 LESS?
  6429. LIST1 and LIST2 are sorted lists.
  6430. Returns the sorted list of all elements in LIST1 and LIST2.
  6431. Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
  6432. in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
  6433. and that a < b1 in LIST1. Then a < b1 < b2 in the result.
  6434. (Here "<" should read "comes before".)
  6435. *** New procedure: merge! LIST1 LIST2 LESS?
  6436. Merges two lists, re-using the pairs of LIST1 and LIST2 to build
  6437. the result. If the code is compiled, and LESS? constructs no new
  6438. pairs, no pairs at all will be allocated. The first pair of the
  6439. result will be either the first pair of LIST1 or the first pair of
  6440. LIST2.
  6441. *** New function: sort SEQUENCE LESS?
  6442. Accepts either a list or a vector, and returns a new sequence
  6443. which is sorted. The new sequence is the same type as the input.
  6444. Always `(sorted? (sort sequence less?) less?)'. The original
  6445. sequence is not altered in any way. The new sequence shares its
  6446. elements with the old one; no elements are copied.
  6447. *** New procedure: sort! SEQUENCE LESS
  6448. Returns its sorted result in the original boxes. No new storage is
  6449. allocated at all. Proper usage: (set! slist (sort! slist <))
  6450. *** New function: stable-sort SEQUENCE LESS?
  6451. Similar to `sort' but stable. That is, if "equal" elements are
  6452. ordered a < b in the original sequence, they will have the same order
  6453. in the result.
  6454. *** New function: stable-sort! SEQUENCE LESS?
  6455. Similar to `sort!' but stable.
  6456. Uses temporary storage when sorting vectors.
  6457. *** New functions: sort-list, sort-list!
  6458. Added for compatibility with scsh.
  6459. ** New built-in random number support
  6460. *** New function: random N [STATE]
  6461. Accepts a positive integer or real N and returns a number of the
  6462. same type between zero (inclusive) and N (exclusive). The values
  6463. returned have a uniform distribution.
  6464. The optional argument STATE must be of the type produced by
  6465. `copy-random-state' or `seed->random-state'. It defaults to the value
  6466. of the variable `*random-state*'. This object is used to maintain the
  6467. state of the pseudo-random-number generator and is altered as a side
  6468. effect of the `random' operation.
  6469. *** New variable: *random-state*
  6470. Holds a data structure that encodes the internal state of the
  6471. random-number generator that `random' uses by default. The nature
  6472. of this data structure is implementation-dependent. It may be
  6473. printed out and successfully read back in, but may or may not
  6474. function correctly as a random-number state object in another
  6475. implementation.
  6476. *** New function: copy-random-state [STATE]
  6477. Returns a new object of type suitable for use as the value of the
  6478. variable `*random-state*' and as a second argument to `random'.
  6479. If argument STATE is given, a copy of it is returned. Otherwise a
  6480. copy of `*random-state*' is returned.
  6481. *** New function: seed->random-state SEED
  6482. Returns a new object of type suitable for use as the value of the
  6483. variable `*random-state*' and as a second argument to `random'.
  6484. SEED is a string or a number. A new state is generated and
  6485. initialized using SEED.
  6486. *** New function: random:uniform [STATE]
  6487. Returns an uniformly distributed inexact real random number in the
  6488. range between 0 and 1.
  6489. *** New procedure: random:solid-sphere! VECT [STATE]
  6490. Fills VECT with inexact real random numbers the sum of whose
  6491. squares is less than 1.0. Thinking of VECT as coordinates in
  6492. space of dimension N = `(vector-length VECT)', the coordinates are
  6493. uniformly distributed within the unit N-shere. The sum of the
  6494. squares of the numbers is returned. VECT can be either a vector
  6495. or a uniform vector of doubles.
  6496. *** New procedure: random:hollow-sphere! VECT [STATE]
  6497. Fills VECT with inexact real random numbers the sum of whose squares
  6498. is equal to 1.0. Thinking of VECT as coordinates in space of
  6499. dimension n = `(vector-length VECT)', the coordinates are uniformly
  6500. distributed over the surface of the unit n-shere. VECT can be either
  6501. a vector or a uniform vector of doubles.
  6502. *** New function: random:normal [STATE]
  6503. Returns an inexact real in a normal distribution with mean 0 and
  6504. standard deviation 1. For a normal distribution with mean M and
  6505. standard deviation D use `(+ M (* D (random:normal)))'.
  6506. *** New procedure: random:normal-vector! VECT [STATE]
  6507. Fills VECT with inexact real random numbers which are independent and
  6508. standard normally distributed (i.e., with mean 0 and variance 1).
  6509. VECT can be either a vector or a uniform vector of doubles.
  6510. *** New function: random:exp STATE
  6511. Returns an inexact real in an exponential distribution with mean 1.
  6512. For an exponential distribution with mean U use (* U (random:exp)).
  6513. ** The range of logand, logior, logxor, logtest, and logbit? have changed.
  6514. These functions now operate on numbers in the range of a C unsigned
  6515. long.
  6516. These functions used to operate on numbers in the range of a C signed
  6517. long; however, this seems inappropriate, because Guile integers don't
  6518. overflow.
  6519. ** New function: make-guardian
  6520. This is an implementation of guardians as described in
  6521. R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
  6522. Generation-Based Garbage Collector" ACM SIGPLAN Conference on
  6523. Programming Language Design and Implementation, June 1993
  6524. ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
  6525. ** New functions: delq1!, delv1!, delete1!
  6526. These procedures behave similar to delq! and friends but delete only
  6527. one object if at all.
  6528. ** New function: unread-string STRING PORT
  6529. Unread STRING to PORT, that is, push it back onto the port so that
  6530. next read operation will work on the pushed back characters.
  6531. ** unread-char can now be called multiple times
  6532. If unread-char is called multiple times, the unread characters will be
  6533. read again in last-in first-out order.
  6534. ** the procedures uniform-array-read! and uniform-array-write! now
  6535. work on any kind of port, not just ports which are open on a file.
  6536. ** Now 'l' in a port mode requests line buffering.
  6537. ** The procedure truncate-file now works on string ports as well
  6538. as file ports. If the size argument is omitted, the current
  6539. file position is used.
  6540. ** new procedure: seek PORT/FDES OFFSET WHENCE
  6541. The arguments are the same as for the old fseek procedure, but it
  6542. works on string ports as well as random-access file ports.
  6543. ** the fseek procedure now works on string ports, since it has been
  6544. redefined using seek.
  6545. ** the setvbuf procedure now uses a default size if mode is _IOFBF and
  6546. size is not supplied.
  6547. ** the newline procedure no longer flushes the port if it's not
  6548. line-buffered: previously it did if it was the current output port.
  6549. ** open-pipe and close-pipe are no longer primitive procedures, but
  6550. an emulation can be obtained using `(use-modules (ice-9 popen))'.
  6551. ** the freopen procedure has been removed.
  6552. ** new procedure: drain-input PORT
  6553. Drains PORT's read buffers (including any pushed-back characters)
  6554. and returns the contents as a single string.
  6555. ** New function: map-in-order PROC LIST1 LIST2 ...
  6556. Version of `map' which guarantees that the procedure is applied to the
  6557. lists in serial order.
  6558. ** Renamed `serial-array-copy!' and `serial-array-map!' to
  6559. `array-copy-in-order!' and `array-map-in-order!'. The old names are
  6560. now obsolete and will go away in release 1.5.
  6561. ** New syntax: collect BODY1 ...
  6562. Version of `begin' which returns a list of the results of the body
  6563. forms instead of the result of the last body form. In contrast to
  6564. `begin', `collect' allows an empty body.
  6565. ** New functions: read-history FILENAME, write-history FILENAME
  6566. Read/write command line history from/to file. Returns #t on success
  6567. and #f if an error occured.
  6568. ** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
  6569. These procedures return a list of definitions available in the specified
  6570. argument, a relative module reference. In the case of no argument,
  6571. `(current-module)' is now consulted for definitions to return, instead
  6572. of simply returning #f, the former behavior.
  6573. ** The #/ syntax for lists is no longer supported.
  6574. Earlier versions of Scheme accepted this syntax, but printed a
  6575. warning.
  6576. ** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
  6577. Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
  6578. modules.
  6579. * Changes to the gh_ interface
  6580. ** gh_scm2doubles
  6581. Now takes a second argument which is the result array. If this
  6582. pointer is NULL, a new array is malloced (the old behaviour).
  6583. ** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
  6584. gh_scm2shorts, gh_scm2longs, gh_scm2floats
  6585. New functions.
  6586. * Changes to the scm_ interface
  6587. ** Function: scm_make_named_hook (char* name, int n_args)
  6588. Creates a hook in the same way as make-hook above but also
  6589. binds a variable named NAME to it.
  6590. This is the typical way of creating a hook from C code.
  6591. Currently, the variable is created in the "current" module. This
  6592. might change when we get the new module system.
  6593. ** The smob interface
  6594. The interface for creating smobs has changed. For documentation, see
  6595. data-rep.info (made from guile-core/doc/data-rep.texi).
  6596. *** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
  6597. >>> This function will be removed in 1.3.4. <<<
  6598. It is replaced by:
  6599. *** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
  6600. This function adds a new smob type, named NAME, with instance size
  6601. SIZE to the system. The return value is a tag that is used in
  6602. creating instances of the type. If SIZE is 0, then no memory will
  6603. be allocated when instances of the smob are created, and nothing
  6604. will be freed by the default free function.
  6605. *** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
  6606. This function sets the smob marking procedure for the smob type
  6607. specified by the tag TC. TC is the tag returned by
  6608. `scm_make_smob_type'.
  6609. *** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
  6610. This function sets the smob freeing procedure for the smob type
  6611. specified by the tag TC. TC is the tag returned by
  6612. `scm_make_smob_type'.
  6613. *** Function: void scm_set_smob_print (tc, print)
  6614. - Function: void scm_set_smob_print (long tc,
  6615. scm_sizet (*print) (SCM,
  6616. SCM,
  6617. scm_print_state *))
  6618. This function sets the smob printing procedure for the smob type
  6619. specified by the tag TC. TC is the tag returned by
  6620. `scm_make_smob_type'.
  6621. *** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
  6622. This function sets the smob equality-testing predicate for the
  6623. smob type specified by the tag TC. TC is the tag returned by
  6624. `scm_make_smob_type'.
  6625. *** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
  6626. Make VALUE contain a smob instance of the type with type code TC and
  6627. smob data DATA. VALUE must be previously declared as C type `SCM'.
  6628. *** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
  6629. This macro expands to a block of code that creates a smob instance
  6630. of the type with type code TC and smob data DATA, and returns that
  6631. `SCM' value. It should be the last piece of code in a block.
  6632. ** The interfaces for using I/O ports and implementing port types
  6633. (ptobs) have changed significantly. The new interface is based on
  6634. shared access to buffers and a new set of ptob procedures.
  6635. *** scm_newptob has been removed
  6636. It is replaced by:
  6637. *** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
  6638. - Function: SCM scm_make_port_type (char *type_name,
  6639. int (*fill_buffer) (SCM port),
  6640. void (*write_flush) (SCM port));
  6641. Similarly to the new smob interface, there is a set of function
  6642. setters by which the user can customize the behaviour of his port
  6643. type. See ports.h (scm_set_port_XXX).
  6644. ** scm_strport_to_string: New function: creates a new string from
  6645. a string port's buffer.
  6646. ** Plug in interface for random number generators
  6647. The variable `scm_the_rng' in random.c contains a value and three
  6648. function pointers which together define the current random number
  6649. generator being used by the Scheme level interface and the random
  6650. number library functions.
  6651. The user is free to replace the default generator with the generator
  6652. of his own choice.
  6653. *** Variable: size_t scm_the_rng.rstate_size
  6654. The size of the random state type used by the current RNG
  6655. measured in chars.
  6656. *** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
  6657. Given the random STATE, return 32 random bits.
  6658. *** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
  6659. Seed random state STATE using string S of length N.
  6660. *** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
  6661. Given random state STATE, return a malloced copy.
  6662. ** Default RNG
  6663. The default RNG is the MWC (Multiply With Carry) random number
  6664. generator described by George Marsaglia at the Department of
  6665. Statistics and Supercomputer Computations Research Institute, The
  6666. Florida State University (http://stat.fsu.edu/~geo).
  6667. It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
  6668. passes all tests in the DIEHARD test suite
  6669. (http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
  6670. costs one multiply and one add on platforms which either supports long
  6671. longs (gcc does this on most systems) or have 64 bit longs. The cost
  6672. is four multiply on other systems but this can be optimized by writing
  6673. scm_i_uniform32 in assembler.
  6674. These functions are provided through the scm_the_rng interface for use
  6675. by libguile and the application.
  6676. *** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
  6677. Given the random STATE, return 32 random bits.
  6678. Don't use this function directly. Instead go through the plugin
  6679. interface (see "Plug in interface" above).
  6680. *** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
  6681. Initialize STATE using SEED of length N.
  6682. *** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
  6683. Return a malloc:ed copy of STATE. This function can easily be re-used
  6684. in the interfaces to other RNGs.
  6685. ** Random number library functions
  6686. These functions use the current RNG through the scm_the_rng interface.
  6687. It might be a good idea to use these functions from your C code so
  6688. that only one random generator is used by all code in your program.
  6689. The default random state is stored in:
  6690. *** Variable: SCM scm_var_random_state
  6691. Contains the vcell of the Scheme variable "*random-state*" which is
  6692. used as default state by all random number functions in the Scheme
  6693. level interface.
  6694. Example:
  6695. double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
  6696. *** Function: scm_rstate *scm_c_default_rstate (void)
  6697. This is a convenience function which returns the value of
  6698. scm_var_random_state. An error message is generated if this value
  6699. isn't a random state.
  6700. *** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
  6701. Make a new random state from the string SEED of length LENGTH.
  6702. It is generally not a good idea to use multiple random states in a
  6703. program. While subsequent random numbers generated from one random
  6704. state are guaranteed to be reasonably independent, there is no such
  6705. guarantee for numbers generated from different random states.
  6706. *** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
  6707. Return 32 random bits.
  6708. *** Function: double scm_c_uniform01 (scm_rstate *STATE)
  6709. Return a sample from the uniform(0,1) distribution.
  6710. *** Function: double scm_c_normal01 (scm_rstate *STATE)
  6711. Return a sample from the normal(0,1) distribution.
  6712. *** Function: double scm_c_exp1 (scm_rstate *STATE)
  6713. Return a sample from the exp(1) distribution.
  6714. *** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
  6715. Return a sample from the discrete uniform(0,M) distribution.
  6716. *** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
  6717. Return a sample from the discrete uniform(0,M) distribution.
  6718. M must be a bignum object. The returned value may be an INUM.
  6719. Changes in Guile 1.3 (released Monday, October 19, 1998):
  6720. * Changes to the distribution
  6721. ** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
  6722. To avoid conflicts, programs should name environment variables after
  6723. themselves, except when there's a common practice establishing some
  6724. other convention.
  6725. For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
  6726. giving the former precedence, and printing a warning message if the
  6727. latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
  6728. ** The header files related to multi-byte characters have been removed.
  6729. They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
  6730. which referred to these explicitly will probably need to be rewritten,
  6731. since the support for the variant string types has been removed; see
  6732. below.
  6733. ** The header files append.h and sequences.h have been removed. These
  6734. files implemented non-R4RS operations which would encourage
  6735. non-portable programming style and less easy-to-read code.
  6736. * Changes to the stand-alone interpreter
  6737. ** New procedures have been added to implement a "batch mode":
  6738. *** Function: batch-mode?
  6739. Returns a boolean indicating whether the interpreter is in batch
  6740. mode.
  6741. *** Function: set-batch-mode?! ARG
  6742. If ARG is true, switches the interpreter to batch mode. The `#f'
  6743. case has not been implemented.
  6744. ** Guile now provides full command-line editing, when run interactively.
  6745. To use this feature, you must have the readline library installed.
  6746. The Guile build process will notice it, and automatically include
  6747. support for it.
  6748. The readline library is available via anonymous FTP from any GNU
  6749. mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
  6750. ** the-last-stack is now a fluid.
  6751. * Changes to the procedure for linking libguile with your programs
  6752. ** You can now use the `guile-config' utility to build programs that use Guile.
  6753. Guile now includes a command-line utility called `guile-config', which
  6754. can provide information about how to compile and link programs that
  6755. use Guile.
  6756. *** `guile-config compile' prints any C compiler flags needed to use Guile.
  6757. You should include this command's output on the command line you use
  6758. to compile C or C++ code that #includes the Guile header files. It's
  6759. usually just a `-I' flag to help the compiler find the Guile headers.
  6760. *** `guile-config link' prints any linker flags necessary to link with Guile.
  6761. This command writes to its standard output a list of flags which you
  6762. must pass to the linker to link your code against the Guile library.
  6763. The flags include '-lguile' itself, any other libraries the Guile
  6764. library depends upon, and any `-L' flags needed to help the linker
  6765. find those libraries.
  6766. For example, here is a Makefile rule that builds a program named 'foo'
  6767. from the object files ${FOO_OBJECTS}, and links them against Guile:
  6768. foo: ${FOO_OBJECTS}
  6769. ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
  6770. Previous Guile releases recommended that you use autoconf to detect
  6771. which of a predefined set of libraries were present on your system.
  6772. It is more robust to use `guile-config', since it records exactly which
  6773. libraries the installed Guile library requires.
  6774. This was originally called `build-guile', but was renamed to
  6775. `guile-config' before Guile 1.3 was released, to be consistent with
  6776. the analogous script for the GTK+ GUI toolkit, which is called
  6777. `gtk-config'.
  6778. ** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
  6779. If you are using the GNU autoconf package to configure your program,
  6780. you can use the GUILE_FLAGS autoconf macro to call `guile-config'
  6781. (described above) and gather the necessary values for use in your
  6782. Makefiles.
  6783. The GUILE_FLAGS macro expands to configure script code which runs the
  6784. `guile-config' script, to find out where Guile's header files and
  6785. libraries are installed. It sets two variables, marked for
  6786. substitution, as by AC_SUBST.
  6787. GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
  6788. code that uses Guile header files. This is almost always just a
  6789. -I flag.
  6790. GUILE_LDFLAGS --- flags to pass to the linker to link a
  6791. program against Guile. This includes `-lguile' for the Guile
  6792. library itself, any libraries that Guile itself requires (like
  6793. -lqthreads), and so on. It may also include a -L flag to tell the
  6794. compiler where to find the libraries.
  6795. GUILE_FLAGS is defined in the file guile.m4, in the top-level
  6796. directory of the Guile distribution. You can copy it into your
  6797. package's aclocal.m4 file, and then use it in your configure.in file.
  6798. If you are using the `aclocal' program, distributed with GNU automake,
  6799. to maintain your aclocal.m4 file, the Guile installation process
  6800. installs guile.m4 where aclocal will find it. All you need to do is
  6801. use GUILE_FLAGS in your configure.in file, and then run `aclocal';
  6802. this will copy the definition of GUILE_FLAGS into your aclocal.m4
  6803. file.
  6804. * Changes to Scheme functions and syntax
  6805. ** Multi-byte strings have been removed, as have multi-byte and wide
  6806. ports. We felt that these were the wrong approach to
  6807. internationalization support.
  6808. ** New function: readline [PROMPT]
  6809. Read a line from the terminal, and allow the user to edit it,
  6810. prompting with PROMPT. READLINE provides a large set of Emacs-like
  6811. editing commands, lets the user recall previously typed lines, and
  6812. works on almost every kind of terminal, including dumb terminals.
  6813. READLINE assumes that the cursor is at the beginning of the line when
  6814. it is invoked. Thus, you can't print a prompt yourself, and then call
  6815. READLINE; you need to package up your prompt as a string, pass it to
  6816. the function, and let READLINE print the prompt itself. This is
  6817. because READLINE needs to know the prompt's screen width.
  6818. For Guile to provide this function, you must have the readline
  6819. library, version 2.1 or later, installed on your system. Readline is
  6820. available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
  6821. any GNU mirror site.
  6822. See also ADD-HISTORY function.
  6823. ** New function: add-history STRING
  6824. Add STRING as the most recent line in the history used by the READLINE
  6825. command. READLINE does not add lines to the history itself; you must
  6826. call ADD-HISTORY to make previous input available to the user.
  6827. ** The behavior of the read-line function has changed.
  6828. This function now uses standard C library functions to read the line,
  6829. for speed. This means that it doesn not respect the value of
  6830. scm-line-incrementors; it assumes that lines are delimited with
  6831. #\newline.
  6832. (Note that this is read-line, the function that reads a line of text
  6833. from a port, not readline, the function that reads a line from a
  6834. terminal, providing full editing capabilities.)
  6835. ** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
  6836. This module provides some simple argument parsing. It exports one
  6837. function:
  6838. Function: getopt-gnu-style ARG-LS
  6839. Parse a list of program arguments into an alist of option
  6840. descriptions.
  6841. Each item in the list of program arguments is examined to see if
  6842. it meets the syntax of a GNU long-named option. An argument like
  6843. `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
  6844. returned alist, where MUMBLE is a keyword object with the same
  6845. name as the argument. An argument like `--MUMBLE=FROB' produces
  6846. an element of the form (MUMBLE . FROB), where FROB is a string.
  6847. As a special case, the returned alist also contains a pair whose
  6848. car is the symbol `rest'. The cdr of this pair is a list
  6849. containing all the items in the argument list that are not options
  6850. of the form mentioned above.
  6851. The argument `--' is treated specially: all items in the argument
  6852. list appearing after such an argument are not examined, and are
  6853. returned in the special `rest' list.
  6854. This function does not parse normal single-character switches.
  6855. You will need to parse them out of the `rest' list yourself.
  6856. ** The read syntax for byte vectors and short vectors has changed.
  6857. Instead of #bytes(...), write #y(...).
  6858. Instead of #short(...), write #h(...).
  6859. This may seem nutty, but, like the other uniform vectors, byte vectors
  6860. and short vectors want to have the same print and read syntax (and,
  6861. more basic, want to have read syntax!). Changing the read syntax to
  6862. use multiple characters after the hash sign breaks with the
  6863. conventions used in R5RS and the conventions used for the other
  6864. uniform vectors. It also introduces complexity in the current reader,
  6865. both on the C and Scheme levels. (The Right solution is probably to
  6866. change the syntax and prototypes for uniform vectors entirely.)
  6867. ** The new module (ice-9 session) provides useful interactive functions.
  6868. *** New procedure: (apropos REGEXP OPTION ...)
  6869. Display a list of top-level variables whose names match REGEXP, and
  6870. the modules they are imported from. Each OPTION should be one of the
  6871. following symbols:
  6872. value --- Show the value of each matching variable.
  6873. shadow --- Show bindings shadowed by subsequently imported modules.
  6874. full --- Same as both `shadow' and `value'.
  6875. For example:
  6876. guile> (apropos "trace" 'full)
  6877. debug: trace #<procedure trace args>
  6878. debug: untrace #<procedure untrace args>
  6879. the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
  6880. the-scm-module: before-backtrace-hook ()
  6881. the-scm-module: backtrace #<primitive-procedure backtrace>
  6882. the-scm-module: after-backtrace-hook ()
  6883. the-scm-module: has-shown-backtrace-hint? #f
  6884. guile>
  6885. ** There are new functions and syntax for working with macros.
  6886. Guile implements macros as a special object type. Any variable whose
  6887. top-level binding is a macro object acts as a macro. The macro object
  6888. specifies how the expression should be transformed before evaluation.
  6889. *** Macro objects now print in a reasonable way, resembling procedures.
  6890. *** New function: (macro? OBJ)
  6891. True iff OBJ is a macro object.
  6892. *** New function: (primitive-macro? OBJ)
  6893. Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
  6894. macro transformers, implemented in eval.c rather than Scheme code.
  6895. Why do we have this function?
  6896. - For symmetry with procedure? and primitive-procedure?,
  6897. - to allow custom print procedures to tell whether a macro is
  6898. primitive, and display it differently, and
  6899. - to allow compilers and user-written evaluators to distinguish
  6900. builtin special forms from user-defined ones, which could be
  6901. compiled.
  6902. *** New function: (macro-type OBJ)
  6903. Return a value indicating what kind of macro OBJ is. Possible return
  6904. values are:
  6905. The symbol `syntax' --- a macro created by procedure->syntax.
  6906. The symbol `macro' --- a macro created by procedure->macro.
  6907. The symbol `macro!' --- a macro created by procedure->memoizing-macro.
  6908. The boolean #f --- if OBJ is not a macro object.
  6909. *** New function: (macro-name MACRO)
  6910. Return the name of the macro object MACRO's procedure, as returned by
  6911. procedure-name.
  6912. *** New function: (macro-transformer MACRO)
  6913. Return the transformer procedure for MACRO.
  6914. *** New syntax: (use-syntax MODULE ... TRANSFORMER)
  6915. Specify a new macro expander to use in the current module. Each
  6916. MODULE is a module name, with the same meaning as in the `use-modules'
  6917. form; each named module's exported bindings are added to the current
  6918. top-level environment. TRANSFORMER is an expression evaluated in the
  6919. resulting environment which must yield a procedure to use as the
  6920. module's eval transformer: every expression evaluated in this module
  6921. is passed to this function, and the result passed to the Guile
  6922. interpreter.
  6923. *** macro-eval! is removed. Use local-eval instead.
  6924. ** Some magic has been added to the printer to better handle user
  6925. written printing routines (like record printers, closure printers).
  6926. The problem is that these user written routines must have access to
  6927. the current `print-state' to be able to handle fancy things like
  6928. detection of circular references. These print-states have to be
  6929. passed to the builtin printing routines (display, write, etc) to
  6930. properly continue the print chain.
  6931. We didn't want to change all existing print code so that it
  6932. explicitly passes thru a print state in addition to a port. Instead,
  6933. we extented the possible values that the builtin printing routines
  6934. accept as a `port'. In addition to a normal port, they now also take
  6935. a pair of a normal port and a print-state. Printing will go to the
  6936. port and the print-state will be used to control the detection of
  6937. circular references, etc. If the builtin function does not care for a
  6938. print-state, it is simply ignored.
  6939. User written callbacks are now called with such a pair as their
  6940. `port', but because every function now accepts this pair as a PORT
  6941. argument, you don't have to worry about that. In fact, it is probably
  6942. safest to not check for these pairs.
  6943. However, it is sometimes necessary to continue a print chain on a
  6944. different port, for example to get a intermediate string
  6945. representation of the printed value, mangle that string somehow, and
  6946. then to finally print the mangled string. Use the new function
  6947. inherit-print-state OLD-PORT NEW-PORT
  6948. for this. It constructs a new `port' that prints to NEW-PORT but
  6949. inherits the print-state of OLD-PORT.
  6950. ** struct-vtable-offset renamed to vtable-offset-user
  6951. ** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
  6952. ** There is now a third optional argument to make-vtable-vtable
  6953. (and fourth to make-struct) when constructing new types (vtables).
  6954. This argument initializes field vtable-index-printer of the vtable.
  6955. ** The detection of circular references has been extended to structs.
  6956. That is, a structure that -- in the process of being printed -- prints
  6957. itself does not lead to infinite recursion.
  6958. ** There is now some basic support for fluids. Please read
  6959. "libguile/fluid.h" to find out more. It is accessible from Scheme with
  6960. the following functions and macros:
  6961. Function: make-fluid
  6962. Create a new fluid object. Fluids are not special variables or
  6963. some other extension to the semantics of Scheme, but rather
  6964. ordinary Scheme objects. You can store them into variables (that
  6965. are still lexically scoped, of course) or into any other place you
  6966. like. Every fluid has a initial value of `#f'.
  6967. Function: fluid? OBJ
  6968. Test whether OBJ is a fluid.
  6969. Function: fluid-ref FLUID
  6970. Function: fluid-set! FLUID VAL
  6971. Access/modify the fluid FLUID. Modifications are only visible
  6972. within the current dynamic root (that includes threads).
  6973. Function: with-fluids* FLUIDS VALUES THUNK
  6974. FLUIDS is a list of fluids and VALUES a corresponding list of
  6975. values for these fluids. Before THUNK gets called the values are
  6976. installed in the fluids and the old values of the fluids are
  6977. saved in the VALUES list. When the flow of control leaves THUNK
  6978. or reenters it, the values get swapped again. You might think of
  6979. this as a `safe-fluid-excursion'. Note that the VALUES list is
  6980. modified by `with-fluids*'.
  6981. Macro: with-fluids ((FLUID VALUE) ...) FORM ...
  6982. The same as `with-fluids*' but with a different syntax. It looks
  6983. just like `let', but both FLUID and VALUE are evaluated. Remember,
  6984. fluids are not special variables but ordinary objects. FLUID
  6985. should evaluate to a fluid.
  6986. ** Changes to system call interfaces:
  6987. *** close-port, close-input-port and close-output-port now return a
  6988. boolean instead of an `unspecified' object. #t means that the port
  6989. was successfully closed, while #f means it was already closed. It is
  6990. also now possible for these procedures to raise an exception if an
  6991. error occurs (some errors from write can be delayed until close.)
  6992. *** the first argument to chmod, fcntl, ftell and fseek can now be a
  6993. file descriptor.
  6994. *** the third argument to fcntl is now optional.
  6995. *** the first argument to chown can now be a file descriptor or a port.
  6996. *** the argument to stat can now be a port.
  6997. *** The following new procedures have been added (most use scsh
  6998. interfaces):
  6999. *** procedure: close PORT/FD
  7000. Similar to close-port (*note close-port: Closing Ports.), but also
  7001. works on file descriptors. A side effect of closing a file
  7002. descriptor is that any ports using that file descriptor are moved
  7003. to a different file descriptor and have their revealed counts set
  7004. to zero.
  7005. *** procedure: port->fdes PORT
  7006. Returns the integer file descriptor underlying PORT. As a side
  7007. effect the revealed count of PORT is incremented.
  7008. *** procedure: fdes->ports FDES
  7009. Returns a list of existing ports which have FDES as an underlying
  7010. file descriptor, without changing their revealed counts.
  7011. *** procedure: fdes->inport FDES
  7012. Returns an existing input port which has FDES as its underlying
  7013. file descriptor, if one exists, and increments its revealed count.
  7014. Otherwise, returns a new input port with a revealed count of 1.
  7015. *** procedure: fdes->outport FDES
  7016. Returns an existing output port which has FDES as its underlying
  7017. file descriptor, if one exists, and increments its revealed count.
  7018. Otherwise, returns a new output port with a revealed count of 1.
  7019. The next group of procedures perform a `dup2' system call, if NEWFD
  7020. (an integer) is supplied, otherwise a `dup'. The file descriptor to be
  7021. duplicated can be supplied as an integer or contained in a port. The
  7022. type of value returned varies depending on which procedure is used.
  7023. All procedures also have the side effect when performing `dup2' that
  7024. any ports using NEWFD are moved to a different file descriptor and have
  7025. their revealed counts set to zero.
  7026. *** procedure: dup->fdes PORT/FD [NEWFD]
  7027. Returns an integer file descriptor.
  7028. *** procedure: dup->inport PORT/FD [NEWFD]
  7029. Returns a new input port using the new file descriptor.
  7030. *** procedure: dup->outport PORT/FD [NEWFD]
  7031. Returns a new output port using the new file descriptor.
  7032. *** procedure: dup PORT/FD [NEWFD]
  7033. Returns a new port if PORT/FD is a port, with the same mode as the
  7034. supplied port, otherwise returns an integer file descriptor.
  7035. *** procedure: dup->port PORT/FD MODE [NEWFD]
  7036. Returns a new port using the new file descriptor. MODE supplies a
  7037. mode string for the port (*note open-file: File Ports.).
  7038. *** procedure: setenv NAME VALUE
  7039. Modifies the environment of the current process, which is also the
  7040. default environment inherited by child processes.
  7041. If VALUE is `#f', then NAME is removed from the environment.
  7042. Otherwise, the string NAME=VALUE is added to the environment,
  7043. replacing any existing string with name matching NAME.
  7044. The return value is unspecified.
  7045. *** procedure: truncate-file OBJ SIZE
  7046. Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
  7047. can be a string containing a file name or an integer file
  7048. descriptor or port open for output on the file. The underlying
  7049. system calls are `truncate' and `ftruncate'.
  7050. The return value is unspecified.
  7051. *** procedure: setvbuf PORT MODE [SIZE]
  7052. Set the buffering mode for PORT. MODE can be:
  7053. `_IONBF'
  7054. non-buffered
  7055. `_IOLBF'
  7056. line buffered
  7057. `_IOFBF'
  7058. block buffered, using a newly allocated buffer of SIZE bytes.
  7059. However if SIZE is zero or unspecified, the port will be made
  7060. non-buffered.
  7061. This procedure should not be used after I/O has been performed with
  7062. the port.
  7063. Ports are usually block buffered by default, with a default buffer
  7064. size. Procedures e.g., *Note open-file: File Ports, which accept a
  7065. mode string allow `0' to be added to request an unbuffered port.
  7066. *** procedure: fsync PORT/FD
  7067. Copies any unwritten data for the specified output file descriptor
  7068. to disk. If PORT/FD is a port, its buffer is flushed before the
  7069. underlying file descriptor is fsync'd. The return value is
  7070. unspecified.
  7071. *** procedure: open-fdes PATH FLAGS [MODES]
  7072. Similar to `open' but returns a file descriptor instead of a port.
  7073. *** procedure: execle PATH ENV [ARG] ...
  7074. Similar to `execl', but the environment of the new process is
  7075. specified by ENV, which must be a list of strings as returned by
  7076. the `environ' procedure.
  7077. This procedure is currently implemented using the `execve' system
  7078. call, but we call it `execle' because of its Scheme calling
  7079. interface.
  7080. *** procedure: strerror ERRNO
  7081. Returns the Unix error message corresponding to ERRNO, an integer.
  7082. *** procedure: primitive-exit [STATUS]
  7083. Terminate the current process without unwinding the Scheme stack.
  7084. This is would typically be useful after a fork. The exit status
  7085. is STATUS if supplied, otherwise zero.
  7086. *** procedure: times
  7087. Returns an object with information about real and processor time.
  7088. The following procedures accept such an object as an argument and
  7089. return a selected component:
  7090. `tms:clock'
  7091. The current real time, expressed as time units relative to an
  7092. arbitrary base.
  7093. `tms:utime'
  7094. The CPU time units used by the calling process.
  7095. `tms:stime'
  7096. The CPU time units used by the system on behalf of the
  7097. calling process.
  7098. `tms:cutime'
  7099. The CPU time units used by terminated child processes of the
  7100. calling process, whose status has been collected (e.g., using
  7101. `waitpid').
  7102. `tms:cstime'
  7103. Similarly, the CPU times units used by the system on behalf of
  7104. terminated child processes.
  7105. ** Removed: list-length
  7106. ** Removed: list-append, list-append!
  7107. ** Removed: list-reverse, list-reverse!
  7108. ** array-map renamed to array-map!
  7109. ** serial-array-map renamed to serial-array-map!
  7110. ** catch doesn't take #f as first argument any longer
  7111. Previously, it was possible to pass #f instead of a key to `catch'.
  7112. That would cause `catch' to pass a jump buffer object to the procedure
  7113. passed as second argument. The procedure could then use this jump
  7114. buffer objekt as an argument to throw.
  7115. This mechanism has been removed since its utility doesn't motivate the
  7116. extra complexity it introduces.
  7117. ** The `#/' notation for lists now provokes a warning message from Guile.
  7118. This syntax will be removed from Guile in the near future.
  7119. To disable the warning message, set the GUILE_HUSH environment
  7120. variable to any non-empty value.
  7121. ** The newline character now prints as `#\newline', following the
  7122. normal Scheme notation, not `#\nl'.
  7123. * Changes to the gh_ interface
  7124. ** The gh_enter function now takes care of loading the Guile startup files.
  7125. gh_enter works by calling scm_boot_guile; see the remarks below.
  7126. ** Function: void gh_write (SCM x)
  7127. Write the printed representation of the scheme object x to the current
  7128. output port. Corresponds to the scheme level `write'.
  7129. ** gh_list_length renamed to gh_length.
  7130. ** vector handling routines
  7131. Several major changes. In particular, gh_vector() now resembles
  7132. (vector ...) (with a caveat -- see manual), and gh_make_vector() now
  7133. exists and behaves like (make-vector ...). gh_vset() and gh_vref()
  7134. have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
  7135. vector-related gh_ functions have been implemented.
  7136. ** pair and list routines
  7137. Implemented several of the R4RS pair and list functions that were
  7138. missing.
  7139. ** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
  7140. New function. Converts double arrays back and forth between Scheme
  7141. and C.
  7142. * Changes to the scm_ interface
  7143. ** The function scm_boot_guile now takes care of loading the startup files.
  7144. Guile's primary initialization function, scm_boot_guile, now takes
  7145. care of loading `boot-9.scm', in the `ice-9' module, to initialize
  7146. Guile, define the module system, and put together some standard
  7147. bindings. It also loads `init.scm', which is intended to hold
  7148. site-specific initialization code.
  7149. Since Guile cannot operate properly until boot-9.scm is loaded, there
  7150. is no reason to separate loading boot-9.scm from Guile's other
  7151. initialization processes.
  7152. This job used to be done by scm_compile_shell_switches, which didn't
  7153. make much sense; in particular, it meant that people using Guile for
  7154. non-shell-like applications had to jump through hoops to get Guile
  7155. initialized properly.
  7156. ** The function scm_compile_shell_switches no longer loads the startup files.
  7157. Now, Guile always loads the startup files, whenever it is initialized;
  7158. see the notes above for scm_boot_guile and scm_load_startup_files.
  7159. ** Function: scm_load_startup_files
  7160. This new function takes care of loading Guile's initialization file
  7161. (`boot-9.scm'), and the site initialization file, `init.scm'. Since
  7162. this is always called by the Guile initialization process, it's
  7163. probably not too useful to call this yourself, but it's there anyway.
  7164. ** The semantics of smob marking have changed slightly.
  7165. The smob marking function (the `mark' member of the scm_smobfuns
  7166. structure) is no longer responsible for setting the mark bit on the
  7167. smob. The generic smob handling code in the garbage collector will
  7168. set this bit. The mark function need only ensure that any other
  7169. objects the smob refers to get marked.
  7170. Note that this change means that the smob's GC8MARK bit is typically
  7171. already set upon entry to the mark function. Thus, marking functions
  7172. which look like this:
  7173. {
  7174. if (SCM_GC8MARKP (ptr))
  7175. return SCM_BOOL_F;
  7176. SCM_SETGC8MARK (ptr);
  7177. ... mark objects to which the smob refers ...
  7178. }
  7179. are now incorrect, since they will return early, and fail to mark any
  7180. other objects the smob refers to. Some code in the Guile library used
  7181. to work this way.
  7182. ** The semantics of the I/O port functions in scm_ptobfuns have changed.
  7183. If you have implemented your own I/O port type, by writing the
  7184. functions required by the scm_ptobfuns and then calling scm_newptob,
  7185. you will need to change your functions slightly.
  7186. The functions in a scm_ptobfuns structure now expect the port itself
  7187. as their argument; they used to expect the `stream' member of the
  7188. port's scm_port_table structure. This allows functions in an
  7189. scm_ptobfuns structure to easily access the port's cell (and any flags
  7190. it its CAR), and the port's scm_port_table structure.
  7191. Guile now passes the I/O port itself as the `port' argument in the
  7192. following scm_ptobfuns functions:
  7193. int (*free) (SCM port);
  7194. int (*fputc) (int, SCM port);
  7195. int (*fputs) (char *, SCM port);
  7196. scm_sizet (*fwrite) SCM_P ((char *ptr,
  7197. scm_sizet size,
  7198. scm_sizet nitems,
  7199. SCM port));
  7200. int (*fflush) (SCM port);
  7201. int (*fgetc) (SCM port);
  7202. int (*fclose) (SCM port);
  7203. The interfaces to the `mark', `print', `equalp', and `fgets' methods
  7204. are unchanged.
  7205. If you have existing code which defines its own port types, it is easy
  7206. to convert your code to the new interface; simply apply SCM_STREAM to
  7207. the port argument to yield the value you code used to expect.
  7208. Note that since both the port and the stream have the same type in the
  7209. C code --- they are both SCM values --- the C compiler will not remind
  7210. you if you forget to update your scm_ptobfuns functions.
  7211. ** Function: int scm_internal_select (int fds,
  7212. SELECT_TYPE *rfds,
  7213. SELECT_TYPE *wfds,
  7214. SELECT_TYPE *efds,
  7215. struct timeval *timeout);
  7216. This is a replacement for the `select' function provided by the OS.
  7217. It enables I/O blocking and sleeping to happen for one cooperative
  7218. thread without blocking other threads. It also avoids busy-loops in
  7219. these situations. It is intended that all I/O blocking and sleeping
  7220. will finally go through this function. Currently, this function is
  7221. only available on systems providing `gettimeofday' and `select'.
  7222. ** Function: SCM scm_internal_stack_catch (SCM tag,
  7223. scm_catch_body_t body,
  7224. void *body_data,
  7225. scm_catch_handler_t handler,
  7226. void *handler_data)
  7227. A new sibling to the other two C level `catch' functions
  7228. scm_internal_catch and scm_internal_lazy_catch. Use it if you want
  7229. the stack to be saved automatically into the variable `the-last-stack'
  7230. (scm_the_last_stack_var) on error. This is necessary if you want to
  7231. use advanced error reporting, such as calling scm_display_error and
  7232. scm_display_backtrace. (They both take a stack object as argument.)
  7233. ** Function: SCM scm_spawn_thread (scm_catch_body_t body,
  7234. void *body_data,
  7235. scm_catch_handler_t handler,
  7236. void *handler_data)
  7237. Spawns a new thread. It does a job similar to
  7238. scm_call_with_new_thread but takes arguments more suitable when
  7239. spawning threads from application C code.
  7240. ** The hook scm_error_callback has been removed. It was originally
  7241. intended as a way for the user to install his own error handler. But
  7242. that method works badly since it intervenes between throw and catch,
  7243. thereby changing the semantics of expressions like (catch #t ...).
  7244. The correct way to do it is to use one of the C level catch functions
  7245. in throw.c: scm_internal_catch/lazy_catch/stack_catch.
  7246. ** Removed functions:
  7247. scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
  7248. scm_list_reverse, scm_list_reverse_x
  7249. ** New macros: SCM_LISTn where n is one of the integers 0-9.
  7250. These can be used for pretty list creation from C. The idea is taken
  7251. from Erick Gallesio's STk.
  7252. ** scm_array_map renamed to scm_array_map_x
  7253. ** mbstrings are now removed
  7254. This means that the type codes scm_tc7_mb_string and
  7255. scm_tc7_mb_substring has been removed.
  7256. ** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
  7257. Since we no longer support multi-byte strings, these I/O functions
  7258. have been simplified, and renamed. Here are their old names, and
  7259. their new names and arguments:
  7260. scm_gen_putc -> void scm_putc (int c, SCM port);
  7261. scm_gen_puts -> void scm_puts (char *s, SCM port);
  7262. scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
  7263. scm_gen_getc -> void scm_getc (SCM port);
  7264. ** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
  7265. ** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
  7266. SCM_TYP7S now masks away the bit which distinguishes substrings from
  7267. strings.
  7268. ** scm_catch_body_t: Backward incompatible change!
  7269. Body functions to scm_internal_catch and friends do not any longer
  7270. take a second argument. This is because it is no longer possible to
  7271. pass a #f arg to catch.
  7272. ** Calls to scm_protect_object and scm_unprotect now nest properly.
  7273. The function scm_protect_object protects its argument from being freed
  7274. by the garbage collector. scm_unprotect_object removes that
  7275. protection.
  7276. These functions now nest properly. That is, for every object O, there
  7277. is a counter which scm_protect_object(O) increments and
  7278. scm_unprotect_object(O) decrements, if the counter is greater than
  7279. zero. Every object's counter is zero when it is first created. If an
  7280. object's counter is greater than zero, the garbage collector will not
  7281. reclaim its storage.
  7282. This allows you to use scm_protect_object in your code without
  7283. worrying that some other function you call will call
  7284. scm_unprotect_object, and allow it to be freed. Assuming that the
  7285. functions you call are well-behaved, and unprotect only those objects
  7286. they protect, you can follow the same rule and have confidence that
  7287. objects will be freed only at appropriate times.
  7288. Changes in Guile 1.2 (released Tuesday, June 24 1997):
  7289. * Changes to the distribution
  7290. ** Nightly snapshots are now available from ftp.red-bean.com.
  7291. The old server, ftp.cyclic.com, has been relinquished to its rightful
  7292. owner.
  7293. Nightly snapshots of the Guile development sources are now available via
  7294. anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
  7295. Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
  7296. For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
  7297. ** To run Guile without installing it, the procedure has changed a bit.
  7298. If you used a separate build directory to compile Guile, you'll need
  7299. to include the build directory in SCHEME_LOAD_PATH, as well as the
  7300. source directory. See the `INSTALL' file for examples.
  7301. * Changes to the procedure for linking libguile with your programs
  7302. ** The standard Guile load path for Scheme code now includes
  7303. $(datadir)/guile (usually /usr/local/share/guile). This means that
  7304. you can install your own Scheme files there, and Guile will find them.
  7305. (Previous versions of Guile only checked a directory whose name
  7306. contained the Guile version number, so you had to re-install or move
  7307. your Scheme sources each time you installed a fresh version of Guile.)
  7308. The load path also includes $(datadir)/guile/site; we recommend
  7309. putting individual Scheme files there. If you want to install a
  7310. package with multiple source files, create a directory for them under
  7311. $(datadir)/guile.
  7312. ** Guile 1.2 will now use the Rx regular expression library, if it is
  7313. installed on your system. When you are linking libguile into your own
  7314. programs, this means you will have to link against -lguile, -lqt (if
  7315. you configured Guile with thread support), and -lrx.
  7316. If you are using autoconf to generate configuration scripts for your
  7317. application, the following lines should suffice to add the appropriate
  7318. libraries to your link command:
  7319. ### Find Rx, quickthreads and libguile.
  7320. AC_CHECK_LIB(rx, main)
  7321. AC_CHECK_LIB(qt, main)
  7322. AC_CHECK_LIB(guile, scm_shell)
  7323. The Guile 1.2 distribution does not contain sources for the Rx
  7324. library, as Guile 1.0 did. If you want to use Rx, you'll need to
  7325. retrieve it from a GNU FTP site and install it separately.
  7326. * Changes to Scheme functions and syntax
  7327. ** The dynamic linking features of Guile are now enabled by default.
  7328. You can disable them by giving the `--disable-dynamic-linking' option
  7329. to configure.
  7330. (dynamic-link FILENAME)
  7331. Find the object file denoted by FILENAME (a string) and link it
  7332. into the running Guile application. When everything works out,
  7333. return a Scheme object suitable for representing the linked object
  7334. file. Otherwise an error is thrown. How object files are
  7335. searched is system dependent.
  7336. (dynamic-object? VAL)
  7337. Determine whether VAL represents a dynamically linked object file.
  7338. (dynamic-unlink DYNOBJ)
  7339. Unlink the indicated object file from the application. DYNOBJ
  7340. should be one of the values returned by `dynamic-link'.
  7341. (dynamic-func FUNCTION DYNOBJ)
  7342. Search the C function indicated by FUNCTION (a string or symbol)
  7343. in DYNOBJ and return some Scheme object that can later be used
  7344. with `dynamic-call' to actually call this function. Right now,
  7345. these Scheme objects are formed by casting the address of the
  7346. function to `long' and converting this number to its Scheme
  7347. representation.
  7348. (dynamic-call FUNCTION DYNOBJ)
  7349. Call the C function indicated by FUNCTION and DYNOBJ. The
  7350. function is passed no arguments and its return value is ignored.
  7351. When FUNCTION is something returned by `dynamic-func', call that
  7352. function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
  7353. etc.), look it up in DYNOBJ; this is equivalent to
  7354. (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
  7355. Interrupts are deferred while the C function is executing (with
  7356. SCM_DEFER_INTS/SCM_ALLOW_INTS).
  7357. (dynamic-args-call FUNCTION DYNOBJ ARGS)
  7358. Call the C function indicated by FUNCTION and DYNOBJ, but pass it
  7359. some arguments and return its return value. The C function is
  7360. expected to take two arguments and return an `int', just like
  7361. `main':
  7362. int c_func (int argc, char **argv);
  7363. ARGS must be a list of strings and is converted into an array of
  7364. `char *'. The array is passed in ARGV and its size in ARGC. The
  7365. return value is converted to a Scheme number and returned from the
  7366. call to `dynamic-args-call'.
  7367. When dynamic linking is disabled or not supported on your system,
  7368. the above functions throw errors, but they are still available.
  7369. Here is a small example that works on GNU/Linux:
  7370. (define libc-obj (dynamic-link "libc.so"))
  7371. (dynamic-args-call 'rand libc-obj '())
  7372. See the file `libguile/DYNAMIC-LINKING' for additional comments.
  7373. ** The #/ syntax for module names is depreciated, and will be removed
  7374. in a future version of Guile. Instead of
  7375. #/foo/bar/baz
  7376. instead write
  7377. (foo bar baz)
  7378. The latter syntax is more consistent with existing Lisp practice.
  7379. ** Guile now does fancier printing of structures. Structures are the
  7380. underlying implementation for records, which in turn are used to
  7381. implement modules, so all of these object now print differently and in
  7382. a more informative way.
  7383. The Scheme printer will examine the builtin variable *struct-printer*
  7384. whenever it needs to print a structure object. When this variable is
  7385. not `#f' it is deemed to be a procedure and will be applied to the
  7386. structure object and the output port. When *struct-printer* is `#f'
  7387. or the procedure return `#f' the structure object will be printed in
  7388. the boring #<struct 80458270> form.
  7389. This hook is used by some routines in ice-9/boot-9.scm to implement
  7390. type specific printing routines. Please read the comments there about
  7391. "printing structs".
  7392. One of the more specific uses of structs are records. The printing
  7393. procedure that could be passed to MAKE-RECORD-TYPE is now actually
  7394. called. It should behave like a *struct-printer* procedure (described
  7395. above).
  7396. ** Guile now supports a new R4RS-compliant syntax for keywords. A
  7397. token of the form #:NAME, where NAME has the same syntax as a Scheme
  7398. symbol, is the external representation of the keyword named NAME.
  7399. Keyword objects print using this syntax as well, so values containing
  7400. keyword objects can be read back into Guile. When used in an
  7401. expression, keywords are self-quoting objects.
  7402. Guile suports this read syntax, and uses this print syntax, regardless
  7403. of the current setting of the `keyword' read option. The `keyword'
  7404. read option only controls whether Guile recognizes the `:NAME' syntax,
  7405. which is incompatible with R4RS. (R4RS says such token represent
  7406. symbols.)
  7407. ** Guile has regular expression support again. Guile 1.0 included
  7408. functions for matching regular expressions, based on the Rx library.
  7409. In Guile 1.1, the Guile/Rx interface was removed to simplify the
  7410. distribution, and thus Guile had no regular expression support. Guile
  7411. 1.2 again supports the most commonly used functions, and supports all
  7412. of SCSH's regular expression functions.
  7413. If your system does not include a POSIX regular expression library,
  7414. and you have not linked Guile with a third-party regexp library such as
  7415. Rx, these functions will not be available. You can tell whether your
  7416. Guile installation includes regular expression support by checking
  7417. whether the `*features*' list includes the `regex' symbol.
  7418. *** regexp functions
  7419. By default, Guile supports POSIX extended regular expressions. That
  7420. means that the characters `(', `)', `+' and `?' are special, and must
  7421. be escaped if you wish to match the literal characters.
  7422. This regular expression interface was modeled after that implemented
  7423. by SCSH, the Scheme Shell. It is intended to be upwardly compatible
  7424. with SCSH regular expressions.
  7425. **** Function: string-match PATTERN STR [START]
  7426. Compile the string PATTERN into a regular expression and compare
  7427. it with STR. The optional numeric argument START specifies the
  7428. position of STR at which to begin matching.
  7429. `string-match' returns a "match structure" which describes what,
  7430. if anything, was matched by the regular expression. *Note Match
  7431. Structures::. If STR does not match PATTERN at all,
  7432. `string-match' returns `#f'.
  7433. Each time `string-match' is called, it must compile its PATTERN
  7434. argument into a regular expression structure. This operation is
  7435. expensive, which makes `string-match' inefficient if the same regular
  7436. expression is used several times (for example, in a loop). For better
  7437. performance, you can compile a regular expression in advance and then
  7438. match strings against the compiled regexp.
  7439. **** Function: make-regexp STR [FLAGS]
  7440. Compile the regular expression described by STR, and return the
  7441. compiled regexp structure. If STR does not describe a legal
  7442. regular expression, `make-regexp' throws a
  7443. `regular-expression-syntax' error.
  7444. FLAGS may be the bitwise-or of one or more of the following:
  7445. **** Constant: regexp/extended
  7446. Use POSIX Extended Regular Expression syntax when interpreting
  7447. STR. If not set, POSIX Basic Regular Expression syntax is used.
  7448. If the FLAGS argument is omitted, we assume regexp/extended.
  7449. **** Constant: regexp/icase
  7450. Do not differentiate case. Subsequent searches using the
  7451. returned regular expression will be case insensitive.
  7452. **** Constant: regexp/newline
  7453. Match-any-character operators don't match a newline.
  7454. A non-matching list ([^...]) not containing a newline matches a
  7455. newline.
  7456. Match-beginning-of-line operator (^) matches the empty string
  7457. immediately after a newline, regardless of whether the FLAGS
  7458. passed to regexp-exec contain regexp/notbol.
  7459. Match-end-of-line operator ($) matches the empty string
  7460. immediately before a newline, regardless of whether the FLAGS
  7461. passed to regexp-exec contain regexp/noteol.
  7462. **** Function: regexp-exec REGEXP STR [START [FLAGS]]
  7463. Match the compiled regular expression REGEXP against `str'. If
  7464. the optional integer START argument is provided, begin matching
  7465. from that position in the string. Return a match structure
  7466. describing the results of the match, or `#f' if no match could be
  7467. found.
  7468. FLAGS may be the bitwise-or of one or more of the following:
  7469. **** Constant: regexp/notbol
  7470. The match-beginning-of-line operator always fails to match (but
  7471. see the compilation flag regexp/newline above) This flag may be
  7472. used when different portions of a string are passed to
  7473. regexp-exec and the beginning of the string should not be
  7474. interpreted as the beginning of the line.
  7475. **** Constant: regexp/noteol
  7476. The match-end-of-line operator always fails to match (but see the
  7477. compilation flag regexp/newline above)
  7478. **** Function: regexp? OBJ
  7479. Return `#t' if OBJ is a compiled regular expression, or `#f'
  7480. otherwise.
  7481. Regular expressions are commonly used to find patterns in one string
  7482. and replace them with the contents of another string.
  7483. **** Function: regexp-substitute PORT MATCH [ITEM...]
  7484. Write to the output port PORT selected contents of the match
  7485. structure MATCH. Each ITEM specifies what should be written, and
  7486. may be one of the following arguments:
  7487. * A string. String arguments are written out verbatim.
  7488. * An integer. The submatch with that number is written.
  7489. * The symbol `pre'. The portion of the matched string preceding
  7490. the regexp match is written.
  7491. * The symbol `post'. The portion of the matched string
  7492. following the regexp match is written.
  7493. PORT may be `#f', in which case nothing is written; instead,
  7494. `regexp-substitute' constructs a string from the specified ITEMs
  7495. and returns that.
  7496. **** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
  7497. Similar to `regexp-substitute', but can be used to perform global
  7498. substitutions on STR. Instead of taking a match structure as an
  7499. argument, `regexp-substitute/global' takes two string arguments: a
  7500. REGEXP string describing a regular expression, and a TARGET string
  7501. which should be matched against this regular expression.
  7502. Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
  7503. exceptions:
  7504. * A function may be supplied. When this function is called, it
  7505. will be passed one argument: a match structure for a given
  7506. regular expression match. It should return a string to be
  7507. written out to PORT.
  7508. * The `post' symbol causes `regexp-substitute/global' to recurse
  7509. on the unmatched portion of STR. This *must* be supplied in
  7510. order to perform global search-and-replace on STR; if it is
  7511. not present among the ITEMs, then `regexp-substitute/global'
  7512. will return after processing a single match.
  7513. *** Match Structures
  7514. A "match structure" is the object returned by `string-match' and
  7515. `regexp-exec'. It describes which portion of a string, if any, matched
  7516. the given regular expression. Match structures include: a reference to
  7517. the string that was checked for matches; the starting and ending
  7518. positions of the regexp match; and, if the regexp included any
  7519. parenthesized subexpressions, the starting and ending positions of each
  7520. submatch.
  7521. In each of the regexp match functions described below, the `match'
  7522. argument must be a match structure returned by a previous call to
  7523. `string-match' or `regexp-exec'. Most of these functions return some
  7524. information about the original target string that was matched against a
  7525. regular expression; we will call that string TARGET for easy reference.
  7526. **** Function: regexp-match? OBJ
  7527. Return `#t' if OBJ is a match structure returned by a previous
  7528. call to `regexp-exec', or `#f' otherwise.
  7529. **** Function: match:substring MATCH [N]
  7530. Return the portion of TARGET matched by subexpression number N.
  7531. Submatch 0 (the default) represents the entire regexp match. If
  7532. the regular expression as a whole matched, but the subexpression
  7533. number N did not match, return `#f'.
  7534. **** Function: match:start MATCH [N]
  7535. Return the starting position of submatch number N.
  7536. **** Function: match:end MATCH [N]
  7537. Return the ending position of submatch number N.
  7538. **** Function: match:prefix MATCH
  7539. Return the unmatched portion of TARGET preceding the regexp match.
  7540. **** Function: match:suffix MATCH
  7541. Return the unmatched portion of TARGET following the regexp match.
  7542. **** Function: match:count MATCH
  7543. Return the number of parenthesized subexpressions from MATCH.
  7544. Note that the entire regular expression match itself counts as a
  7545. subexpression, and failed submatches are included in the count.
  7546. **** Function: match:string MATCH
  7547. Return the original TARGET string.
  7548. *** Backslash Escapes
  7549. Sometimes you will want a regexp to match characters like `*' or `$'
  7550. exactly. For example, to check whether a particular string represents
  7551. a menu entry from an Info node, it would be useful to match it against
  7552. a regexp like `^* [^:]*::'. However, this won't work; because the
  7553. asterisk is a metacharacter, it won't match the `*' at the beginning of
  7554. the string. In this case, we want to make the first asterisk un-magic.
  7555. You can do this by preceding the metacharacter with a backslash
  7556. character `\'. (This is also called "quoting" the metacharacter, and
  7557. is known as a "backslash escape".) When Guile sees a backslash in a
  7558. regular expression, it considers the following glyph to be an ordinary
  7559. character, no matter what special meaning it would ordinarily have.
  7560. Therefore, we can make the above example work by changing the regexp to
  7561. `^\* [^:]*::'. The `\*' sequence tells the regular expression engine
  7562. to match only a single asterisk in the target string.
  7563. Since the backslash is itself a metacharacter, you may force a
  7564. regexp to match a backslash in the target string by preceding the
  7565. backslash with itself. For example, to find variable references in a
  7566. TeX program, you might want to find occurrences of the string `\let\'
  7567. followed by any number of alphabetic characters. The regular expression
  7568. `\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
  7569. each match a single backslash in the target string.
  7570. **** Function: regexp-quote STR
  7571. Quote each special character found in STR with a backslash, and
  7572. return the resulting string.
  7573. *Very important:* Using backslash escapes in Guile source code (as
  7574. in Emacs Lisp or C) can be tricky, because the backslash character has
  7575. special meaning for the Guile reader. For example, if Guile encounters
  7576. the character sequence `\n' in the middle of a string while processing
  7577. Scheme code, it replaces those characters with a newline character.
  7578. Similarly, the character sequence `\t' is replaced by a horizontal tab.
  7579. Several of these "escape sequences" are processed by the Guile reader
  7580. before your code is executed. Unrecognized escape sequences are
  7581. ignored: if the characters `\*' appear in a string, they will be
  7582. translated to the single character `*'.
  7583. This translation is obviously undesirable for regular expressions,
  7584. since we want to be able to include backslashes in a string in order to
  7585. escape regexp metacharacters. Therefore, to make sure that a backslash
  7586. is preserved in a string in your Guile program, you must use *two*
  7587. consecutive backslashes:
  7588. (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
  7589. The string in this example is preprocessed by the Guile reader before
  7590. any code is executed. The resulting argument to `make-regexp' is the
  7591. string `^\* [^:]*', which is what we really want.
  7592. This also means that in order to write a regular expression that
  7593. matches a single backslash character, the regular expression string in
  7594. the source code must include *four* backslashes. Each consecutive pair
  7595. of backslashes gets translated by the Guile reader to a single
  7596. backslash, and the resulting double-backslash is interpreted by the
  7597. regexp engine as matching a single backslash character. Hence:
  7598. (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
  7599. The reason for the unwieldiness of this syntax is historical. Both
  7600. regular expression pattern matchers and Unix string processing systems
  7601. have traditionally used backslashes with the special meanings described
  7602. above. The POSIX regular expression specification and ANSI C standard
  7603. both require these semantics. Attempting to abandon either convention
  7604. would cause other kinds of compatibility problems, possibly more severe
  7605. ones. Therefore, without extending the Scheme reader to support
  7606. strings with different quoting conventions (an ungainly and confusing
  7607. extension when implemented in other languages), we must adhere to this
  7608. cumbersome escape syntax.
  7609. * Changes to the gh_ interface
  7610. * Changes to the scm_ interface
  7611. * Changes to system call interfaces:
  7612. ** The value returned by `raise' is now unspecified. It throws an exception
  7613. if an error occurs.
  7614. *** A new procedure `sigaction' can be used to install signal handlers
  7615. (sigaction signum [action] [flags])
  7616. signum is the signal number, which can be specified using the value
  7617. of SIGINT etc.
  7618. If action is omitted, sigaction returns a pair: the CAR is the current
  7619. signal hander, which will be either an integer with the value SIG_DFL
  7620. (default action) or SIG_IGN (ignore), or the Scheme procedure which
  7621. handles the signal, or #f if a non-Scheme procedure handles the
  7622. signal. The CDR contains the current sigaction flags for the handler.
  7623. If action is provided, it is installed as the new handler for signum.
  7624. action can be a Scheme procedure taking one argument, or the value of
  7625. SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
  7626. whatever signal handler was installed before sigaction was first used.
  7627. Flags can optionally be specified for the new handler (SA_RESTART is
  7628. always used if the system provides it, so need not be specified.) The
  7629. return value is a pair with information about the old handler as
  7630. described above.
  7631. This interface does not provide access to the "signal blocking"
  7632. facility. Maybe this is not needed, since the thread support may
  7633. provide solutions to the problem of consistent access to data
  7634. structures.
  7635. *** A new procedure `flush-all-ports' is equivalent to running
  7636. `force-output' on every port open for output.
  7637. ** Guile now provides information on how it was built, via the new
  7638. global variable, %guile-build-info. This variable records the values
  7639. of the standard GNU makefile directory variables as an assocation
  7640. list, mapping variable names (symbols) onto directory paths (strings).
  7641. For example, to find out where the Guile link libraries were
  7642. installed, you can say:
  7643. guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
  7644. * Changes to the scm_ interface
  7645. ** The new function scm_handle_by_message_noexit is just like the
  7646. existing scm_handle_by_message function, except that it doesn't call
  7647. exit to terminate the process. Instead, it prints a message and just
  7648. returns #f. This might be a more appropriate catch-all handler for
  7649. new dynamic roots and threads.
  7650. Changes in Guile 1.1 (released Friday, May 16 1997):
  7651. * Changes to the distribution.
  7652. The Guile 1.0 distribution has been split up into several smaller
  7653. pieces:
  7654. guile-core --- the Guile interpreter itself.
  7655. guile-tcltk --- the interface between the Guile interpreter and
  7656. Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
  7657. is a toolkit for building graphical user interfaces.
  7658. guile-rgx-ctax --- the interface between Guile and the Rx regular
  7659. expression matcher, and the translator for the Ctax
  7660. programming language. These are packaged together because the
  7661. Ctax translator uses Rx to parse Ctax source code.
  7662. This NEWS file describes the changes made to guile-core since the 1.0
  7663. release.
  7664. We no longer distribute the documentation, since it was either out of
  7665. date, or incomplete. As soon as we have current documentation, we
  7666. will distribute it.
  7667. * Changes to the stand-alone interpreter
  7668. ** guile now accepts command-line arguments compatible with SCSH, Olin
  7669. Shivers' Scheme Shell.
  7670. In general, arguments are evaluated from left to right, but there are
  7671. exceptions. The following switches stop argument processing, and
  7672. stash all remaining command-line arguments as the value returned by
  7673. the (command-line) function.
  7674. -s SCRIPT load Scheme source code from FILE, and exit
  7675. -c EXPR evalute Scheme expression EXPR, and exit
  7676. -- stop scanning arguments; run interactively
  7677. The switches below are processed as they are encountered.
  7678. -l FILE load Scheme source code from FILE
  7679. -e FUNCTION after reading script, apply FUNCTION to
  7680. command line arguments
  7681. -ds do -s script at this point
  7682. --emacs enable Emacs protocol (experimental)
  7683. -h, --help display this help and exit
  7684. -v, --version display version information and exit
  7685. \ read arguments from following script lines
  7686. So, for example, here is a Guile script named `ekko' (thanks, Olin)
  7687. which re-implements the traditional "echo" command:
  7688. #!/usr/local/bin/guile -s
  7689. !#
  7690. (define (main args)
  7691. (map (lambda (arg) (display arg) (display " "))
  7692. (cdr args))
  7693. (newline))
  7694. (main (command-line))
  7695. Suppose we invoke this script as follows:
  7696. ekko a speckled gecko
  7697. Through the magic of Unix script processing (triggered by the `#!'
  7698. token at the top of the file), /usr/local/bin/guile receives the
  7699. following list of command-line arguments:
  7700. ("-s" "./ekko" "a" "speckled" "gecko")
  7701. Unix inserts the name of the script after the argument specified on
  7702. the first line of the file (in this case, "-s"), and then follows that
  7703. with the arguments given to the script. Guile loads the script, which
  7704. defines the `main' function, and then applies it to the list of
  7705. remaining command-line arguments, ("a" "speckled" "gecko").
  7706. In Unix, the first line of a script file must take the following form:
  7707. #!INTERPRETER ARGUMENT
  7708. where INTERPRETER is the absolute filename of the interpreter
  7709. executable, and ARGUMENT is a single command-line argument to pass to
  7710. the interpreter.
  7711. You may only pass one argument to the interpreter, and its length is
  7712. limited. These restrictions can be annoying to work around, so Guile
  7713. provides a general mechanism (borrowed from, and compatible with,
  7714. SCSH) for circumventing them.
  7715. If the ARGUMENT in a Guile script is a single backslash character,
  7716. `\', Guile will open the script file, parse arguments from its second
  7717. and subsequent lines, and replace the `\' with them. So, for example,
  7718. here is another implementation of the `ekko' script:
  7719. #!/usr/local/bin/guile \
  7720. -e main -s
  7721. !#
  7722. (define (main args)
  7723. (for-each (lambda (arg) (display arg) (display " "))
  7724. (cdr args))
  7725. (newline))
  7726. If the user invokes this script as follows:
  7727. ekko a speckled gecko
  7728. Unix expands this into
  7729. /usr/local/bin/guile \ ekko a speckled gecko
  7730. When Guile sees the `\' argument, it replaces it with the arguments
  7731. read from the second line of the script, producing:
  7732. /usr/local/bin/guile -e main -s ekko a speckled gecko
  7733. This tells Guile to load the `ekko' script, and apply the function
  7734. `main' to the argument list ("a" "speckled" "gecko").
  7735. Here is how Guile parses the command-line arguments:
  7736. - Each space character terminates an argument. This means that two
  7737. spaces in a row introduce an empty-string argument.
  7738. - The tab character is not permitted (unless you quote it with the
  7739. backslash character, as described below), to avoid confusion.
  7740. - The newline character terminates the sequence of arguments, and will
  7741. also terminate a final non-empty argument. (However, a newline
  7742. following a space will not introduce a final empty-string argument;
  7743. it only terminates the argument list.)
  7744. - The backslash character is the escape character. It escapes
  7745. backslash, space, tab, and newline. The ANSI C escape sequences
  7746. like \n and \t are also supported. These produce argument
  7747. constituents; the two-character combination \n doesn't act like a
  7748. terminating newline. The escape sequence \NNN for exactly three
  7749. octal digits reads as the character whose ASCII code is NNN. As
  7750. above, characters produced this way are argument constituents.
  7751. Backslash followed by other characters is not allowed.
  7752. * Changes to the procedure for linking libguile with your programs
  7753. ** Guile now builds and installs a shared guile library, if your
  7754. system support shared libraries. (It still builds a static library on
  7755. all systems.) Guile automatically detects whether your system
  7756. supports shared libraries. To prevent Guile from buildisg shared
  7757. libraries, pass the `--disable-shared' flag to the configure script.
  7758. Guile takes longer to compile when it builds shared libraries, because
  7759. it must compile every file twice --- once to produce position-
  7760. independent object code, and once to produce normal object code.
  7761. ** The libthreads library has been merged into libguile.
  7762. To link a program against Guile, you now need only link against
  7763. -lguile and -lqt; -lthreads is no longer needed. If you are using
  7764. autoconf to generate configuration scripts for your application, the
  7765. following lines should suffice to add the appropriate libraries to
  7766. your link command:
  7767. ### Find quickthreads and libguile.
  7768. AC_CHECK_LIB(qt, main)
  7769. AC_CHECK_LIB(guile, scm_shell)
  7770. * Changes to Scheme functions
  7771. ** Guile Scheme's special syntax for keyword objects is now optional,
  7772. and disabled by default.
  7773. The syntax variation from R4RS made it difficult to port some
  7774. interesting packages to Guile. The routines which accepted keyword
  7775. arguments (mostly in the module system) have been modified to also
  7776. accept symbols whose names begin with `:'.
  7777. To change the keyword syntax, you must first import the (ice-9 debug)
  7778. module:
  7779. (use-modules (ice-9 debug))
  7780. Then you can enable the keyword syntax as follows:
  7781. (read-set! keywords 'prefix)
  7782. To disable keyword syntax, do this:
  7783. (read-set! keywords #f)
  7784. ** Many more primitive functions accept shared substrings as
  7785. arguments. In the past, these functions required normal, mutable
  7786. strings as arguments, although they never made use of this
  7787. restriction.
  7788. ** The uniform array functions now operate on byte vectors. These
  7789. functions are `array-fill!', `serial-array-copy!', `array-copy!',
  7790. `serial-array-map', `array-map', `array-for-each', and
  7791. `array-index-map!'.
  7792. ** The new functions `trace' and `untrace' implement simple debugging
  7793. support for Scheme functions.
  7794. The `trace' function accepts any number of procedures as arguments,
  7795. and tells the Guile interpreter to display each procedure's name and
  7796. arguments each time the procedure is invoked. When invoked with no
  7797. arguments, `trace' returns the list of procedures currently being
  7798. traced.
  7799. The `untrace' function accepts any number of procedures as arguments,
  7800. and tells the Guile interpreter not to trace them any more. When
  7801. invoked with no arguments, `untrace' untraces all curretly traced
  7802. procedures.
  7803. The tracing in Guile has an advantage over most other systems: we
  7804. don't create new procedure objects, but mark the procedure objects
  7805. themselves. This means that anonymous and internal procedures can be
  7806. traced.
  7807. ** The function `assert-repl-prompt' has been renamed to
  7808. `set-repl-prompt!'. It takes one argument, PROMPT.
  7809. - If PROMPT is #f, the Guile read-eval-print loop will not prompt.
  7810. - If PROMPT is a string, we use it as a prompt.
  7811. - If PROMPT is a procedure accepting no arguments, we call it, and
  7812. display the result as a prompt.
  7813. - Otherwise, we display "> ".
  7814. ** The new function `eval-string' reads Scheme expressions from a
  7815. string and evaluates them, returning the value of the last expression
  7816. in the string. If the string contains no expressions, it returns an
  7817. unspecified value.
  7818. ** The new function `thunk?' returns true iff its argument is a
  7819. procedure of zero arguments.
  7820. ** `defined?' is now a builtin function, instead of syntax. This
  7821. means that its argument should be quoted. It returns #t iff its
  7822. argument is bound in the current module.
  7823. ** The new syntax `use-modules' allows you to add new modules to your
  7824. environment without re-typing a complete `define-module' form. It
  7825. accepts any number of module names as arguments, and imports their
  7826. public bindings into the current module.
  7827. ** The new function (module-defined? NAME MODULE) returns true iff
  7828. NAME, a symbol, is defined in MODULE, a module object.
  7829. ** The new function `builtin-bindings' creates and returns a hash
  7830. table containing copies of all the root module's bindings.
  7831. ** The new function `builtin-weak-bindings' does the same as
  7832. `builtin-bindings', but creates a doubly-weak hash table.
  7833. ** The `equal?' function now considers variable objects to be
  7834. equivalent if they have the same name and the same value.
  7835. ** The new function `command-line' returns the command-line arguments
  7836. given to Guile, as a list of strings.
  7837. When using guile as a script interpreter, `command-line' returns the
  7838. script's arguments; those processed by the interpreter (like `-s' or
  7839. `-c') are omitted. (In other words, you get the normal, expected
  7840. behavior.) Any application that uses scm_shell to process its
  7841. command-line arguments gets this behavior as well.
  7842. ** The new function `load-user-init' looks for a file called `.guile'
  7843. in the user's home directory, and loads it if it exists. This is
  7844. mostly for use by the code generated by scm_compile_shell_switches,
  7845. but we thought it might also be useful in other circumstances.
  7846. ** The new function `log10' returns the base-10 logarithm of its
  7847. argument.
  7848. ** Changes to I/O functions
  7849. *** The functions `read', `primitive-load', `read-and-eval!', and
  7850. `primitive-load-path' no longer take optional arguments controlling
  7851. case insensitivity and a `#' parser.
  7852. Case sensitivity is now controlled by a read option called
  7853. `case-insensitive'. The user can add new `#' syntaxes with the
  7854. `read-hash-extend' function (see below).
  7855. *** The new function `read-hash-extend' allows the user to change the
  7856. syntax of Guile Scheme in a somewhat controlled way.
  7857. (read-hash-extend CHAR PROC)
  7858. When parsing S-expressions, if we read a `#' character followed by
  7859. the character CHAR, use PROC to parse an object from the stream.
  7860. If PROC is #f, remove any parsing procedure registered for CHAR.
  7861. The reader applies PROC to two arguments: CHAR and an input port.
  7862. *** The new functions read-delimited and read-delimited! provide a
  7863. general mechanism for doing delimited input on streams.
  7864. (read-delimited DELIMS [PORT HANDLE-DELIM])
  7865. Read until we encounter one of the characters in DELIMS (a string),
  7866. or end-of-file. PORT is the input port to read from; it defaults to
  7867. the current input port. The HANDLE-DELIM parameter determines how
  7868. the terminating character is handled; it should be one of the
  7869. following symbols:
  7870. 'trim omit delimiter from result
  7871. 'peek leave delimiter character in input stream
  7872. 'concat append delimiter character to returned value
  7873. 'split return a pair: (RESULT . TERMINATOR)
  7874. HANDLE-DELIM defaults to 'peek.
  7875. (read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
  7876. A side-effecting variant of `read-delimited'.
  7877. The data is written into the string BUF at the indices in the
  7878. half-open interval [START, END); the default interval is the whole
  7879. string: START = 0 and END = (string-length BUF). The values of
  7880. START and END must specify a well-defined interval in BUF, i.e.
  7881. 0 <= START <= END <= (string-length BUF).
  7882. It returns NBYTES, the number of bytes read. If the buffer filled
  7883. up without a delimiter character being found, it returns #f. If the
  7884. port is at EOF when the read starts, it returns the EOF object.
  7885. If an integer is returned (i.e., the read is successfully terminated
  7886. by reading a delimiter character), then the HANDLE-DELIM parameter
  7887. determines how to handle the terminating character. It is described
  7888. above, and defaults to 'peek.
  7889. (The descriptions of these functions were borrowed from the SCSH
  7890. manual, by Olin Shivers and Brian Carlstrom.)
  7891. *** The `%read-delimited!' function is the primitive used to implement
  7892. `read-delimited' and `read-delimited!'.
  7893. (%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
  7894. This returns a pair of values: (TERMINATOR . NUM-READ).
  7895. - TERMINATOR describes why the read was terminated. If it is a
  7896. character or the eof object, then that is the value that terminated
  7897. the read. If it is #f, the function filled the buffer without finding
  7898. a delimiting character.
  7899. - NUM-READ is the number of characters read into BUF.
  7900. If the read is successfully terminated by reading a delimiter
  7901. character, then the gobble? parameter determines what to do with the
  7902. terminating character. If true, the character is removed from the
  7903. input stream; if false, the character is left in the input stream
  7904. where a subsequent read operation will retrieve it. In either case,
  7905. the character is also the first value returned by the procedure call.
  7906. (The descriptions of this function was borrowed from the SCSH manual,
  7907. by Olin Shivers and Brian Carlstrom.)
  7908. *** The `read-line' and `read-line!' functions have changed; they now
  7909. trim the terminator by default; previously they appended it to the
  7910. returned string. For the old behavior, use (read-line PORT 'concat).
  7911. *** The functions `uniform-array-read!' and `uniform-array-write!' now
  7912. take new optional START and END arguments, specifying the region of
  7913. the array to read and write.
  7914. *** The `ungetc-char-ready?' function has been removed. We feel it's
  7915. inappropriate for an interface to expose implementation details this
  7916. way.
  7917. ** Changes to the Unix library and system call interface
  7918. *** The new fcntl function provides access to the Unix `fcntl' system
  7919. call.
  7920. (fcntl PORT COMMAND VALUE)
  7921. Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
  7922. Values for COMMAND are:
  7923. F_DUPFD duplicate a file descriptor
  7924. F_GETFD read the descriptor's close-on-exec flag
  7925. F_SETFD set the descriptor's close-on-exec flag to VALUE
  7926. F_GETFL read the descriptor's flags, as set on open
  7927. F_SETFL set the descriptor's flags, as set on open to VALUE
  7928. F_GETOWN return the process ID of a socket's owner, for SIGIO
  7929. F_SETOWN set the process that owns a socket to VALUE, for SIGIO
  7930. FD_CLOEXEC not sure what this is
  7931. For details, see the documentation for the fcntl system call.
  7932. *** The arguments to `select' have changed, for compatibility with
  7933. SCSH. The TIMEOUT parameter may now be non-integral, yielding the
  7934. expected behavior. The MILLISECONDS parameter has been changed to
  7935. MICROSECONDS, to more closely resemble the underlying system call.
  7936. The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
  7937. corresponding return set will be the same.
  7938. *** The arguments to the `mknod' system call have changed. They are
  7939. now:
  7940. (mknod PATH TYPE PERMS DEV)
  7941. Create a new file (`node') in the file system. PATH is the name of
  7942. the file to create. TYPE is the kind of file to create; it should
  7943. be 'fifo, 'block-special, or 'char-special. PERMS specifies the
  7944. permission bits to give the newly created file. If TYPE is
  7945. 'block-special or 'char-special, DEV specifies which device the
  7946. special file refers to; its interpretation depends on the kind of
  7947. special file being created.
  7948. *** The `fork' function has been renamed to `primitive-fork', to avoid
  7949. clashing with various SCSH forks.
  7950. *** The `recv' and `recvfrom' functions have been renamed to `recv!'
  7951. and `recvfrom!'. They no longer accept a size for a second argument;
  7952. you must pass a string to hold the received value. They no longer
  7953. return the buffer. Instead, `recv' returns the length of the message
  7954. received, and `recvfrom' returns a pair containing the packet's length
  7955. and originating address.
  7956. *** The file descriptor datatype has been removed, as have the
  7957. `read-fd', `write-fd', `close', `lseek', and `dup' functions.
  7958. We plan to replace these functions with a SCSH-compatible interface.
  7959. *** The `create' function has been removed; it's just a special case
  7960. of `open'.
  7961. *** There are new functions to break down process termination status
  7962. values. In the descriptions below, STATUS is a value returned by
  7963. `waitpid'.
  7964. (status:exit-val STATUS)
  7965. If the child process exited normally, this function returns the exit
  7966. code for the child process (i.e., the value passed to exit, or
  7967. returned from main). If the child process did not exit normally,
  7968. this function returns #f.
  7969. (status:stop-sig STATUS)
  7970. If the child process was suspended by a signal, this function
  7971. returns the signal that suspended the child. Otherwise, it returns
  7972. #f.
  7973. (status:term-sig STATUS)
  7974. If the child process terminated abnormally, this function returns
  7975. the signal that terminated the child. Otherwise, this function
  7976. returns false.
  7977. POSIX promises that exactly one of these functions will return true on
  7978. a valid STATUS value.
  7979. These functions are compatible with SCSH.
  7980. *** There are new accessors and setters for the broken-out time vectors
  7981. returned by `localtime', `gmtime', and that ilk. They are:
  7982. Component Accessor Setter
  7983. ========================= ============ ============
  7984. seconds tm:sec set-tm:sec
  7985. minutes tm:min set-tm:min
  7986. hours tm:hour set-tm:hour
  7987. day of the month tm:mday set-tm:mday
  7988. month tm:mon set-tm:mon
  7989. year tm:year set-tm:year
  7990. day of the week tm:wday set-tm:wday
  7991. day in the year tm:yday set-tm:yday
  7992. daylight saving time tm:isdst set-tm:isdst
  7993. GMT offset, seconds tm:gmtoff set-tm:gmtoff
  7994. name of time zone tm:zone set-tm:zone
  7995. *** There are new accessors for the vectors returned by `uname',
  7996. describing the host system:
  7997. Component Accessor
  7998. ============================================== ================
  7999. name of the operating system implementation utsname:sysname
  8000. network name of this machine utsname:nodename
  8001. release level of the operating system utsname:release
  8002. version level of the operating system utsname:version
  8003. machine hardware platform utsname:machine
  8004. *** There are new accessors for the vectors returned by `getpw',
  8005. `getpwnam', `getpwuid', and `getpwent', describing entries from the
  8006. system's user database:
  8007. Component Accessor
  8008. ====================== =================
  8009. user name passwd:name
  8010. user password passwd:passwd
  8011. user id passwd:uid
  8012. group id passwd:gid
  8013. real name passwd:gecos
  8014. home directory passwd:dir
  8015. shell program passwd:shell
  8016. *** There are new accessors for the vectors returned by `getgr',
  8017. `getgrnam', `getgrgid', and `getgrent', describing entries from the
  8018. system's group database:
  8019. Component Accessor
  8020. ======================= ============
  8021. group name group:name
  8022. group password group:passwd
  8023. group id group:gid
  8024. group members group:mem
  8025. *** There are new accessors for the vectors returned by `gethost',
  8026. `gethostbyaddr', `gethostbyname', and `gethostent', describing
  8027. internet hosts:
  8028. Component Accessor
  8029. ========================= ===============
  8030. official name of host hostent:name
  8031. alias list hostent:aliases
  8032. host address type hostent:addrtype
  8033. length of address hostent:length
  8034. list of addresses hostent:addr-list
  8035. *** There are new accessors for the vectors returned by `getnet',
  8036. `getnetbyaddr', `getnetbyname', and `getnetent', describing internet
  8037. networks:
  8038. Component Accessor
  8039. ========================= ===============
  8040. official name of net netent:name
  8041. alias list netent:aliases
  8042. net number type netent:addrtype
  8043. net number netent:net
  8044. *** There are new accessors for the vectors returned by `getproto',
  8045. `getprotobyname', `getprotobynumber', and `getprotoent', describing
  8046. internet protocols:
  8047. Component Accessor
  8048. ========================= ===============
  8049. official protocol name protoent:name
  8050. alias list protoent:aliases
  8051. protocol number protoent:proto
  8052. *** There are new accessors for the vectors returned by `getserv',
  8053. `getservbyname', `getservbyport', and `getservent', describing
  8054. internet protocols:
  8055. Component Accessor
  8056. ========================= ===============
  8057. official service name servent:name
  8058. alias list servent:aliases
  8059. port number servent:port
  8060. protocol to use servent:proto
  8061. *** There are new accessors for the sockaddr structures returned by
  8062. `accept', `getsockname', `getpeername', `recvfrom!':
  8063. Component Accessor
  8064. ======================================== ===============
  8065. address format (`family') sockaddr:fam
  8066. path, for file domain addresses sockaddr:path
  8067. address, for internet domain addresses sockaddr:addr
  8068. TCP or UDP port, for internet sockaddr:port
  8069. *** The `getpwent', `getgrent', `gethostent', `getnetent',
  8070. `getprotoent', and `getservent' functions now return #f at the end of
  8071. the user database. (They used to throw an exception.)
  8072. Note that calling MUMBLEent function is equivalent to calling the
  8073. corresponding MUMBLE function with no arguments.
  8074. *** The `setpwent', `setgrent', `sethostent', `setnetent',
  8075. `setprotoent', and `setservent' routines now take no arguments.
  8076. *** The `gethost', `getproto', `getnet', and `getserv' functions now
  8077. provide more useful information when they throw an exception.
  8078. *** The `lnaof' function has been renamed to `inet-lnaof'.
  8079. *** Guile now claims to have the `current-time' feature.
  8080. *** The `mktime' function now takes an optional second argument ZONE,
  8081. giving the time zone to use for the conversion. ZONE should be a
  8082. string, in the same format as expected for the "TZ" environment variable.
  8083. *** The `strptime' function now returns a pair (TIME . COUNT), where
  8084. TIME is the parsed time as a vector, and COUNT is the number of
  8085. characters from the string left unparsed. This function used to
  8086. return the remaining characters as a string.
  8087. *** The `gettimeofday' function has replaced the old `time+ticks' function.
  8088. The return value is now (SECONDS . MICROSECONDS); the fractional
  8089. component is no longer expressed in "ticks".
  8090. *** The `ticks/sec' constant has been removed, in light of the above change.
  8091. * Changes to the gh_ interface
  8092. ** gh_eval_str() now returns an SCM object which is the result of the
  8093. evaluation
  8094. ** gh_scm2str() now copies the Scheme data to a caller-provided C
  8095. array
  8096. ** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
  8097. and returns the array
  8098. ** gh_scm2str0() is gone: there is no need to distinguish
  8099. null-terminated from non-null-terminated, since gh_scm2newstr() allows
  8100. the user to interpret the data both ways.
  8101. * Changes to the scm_ interface
  8102. ** The new function scm_symbol_value0 provides an easy way to get a
  8103. symbol's value from C code:
  8104. SCM scm_symbol_value0 (char *NAME)
  8105. Return the value of the symbol named by the null-terminated string
  8106. NAME in the current module. If the symbol named NAME is unbound in
  8107. the current module, return SCM_UNDEFINED.
  8108. ** The new function scm_sysintern0 creates new top-level variables,
  8109. without assigning them a value.
  8110. SCM scm_sysintern0 (char *NAME)
  8111. Create a new Scheme top-level variable named NAME. NAME is a
  8112. null-terminated string. Return the variable's value cell.
  8113. ** The function scm_internal_catch is the guts of catch. It handles
  8114. all the mechanics of setting up a catch target, invoking the catch
  8115. body, and perhaps invoking the handler if the body does a throw.
  8116. The function is designed to be usable from C code, but is general
  8117. enough to implement all the semantics Guile Scheme expects from throw.
  8118. TAG is the catch tag. Typically, this is a symbol, but this function
  8119. doesn't actually care about that.
  8120. BODY is a pointer to a C function which runs the body of the catch;
  8121. this is the code you can throw from. We call it like this:
  8122. BODY (BODY_DATA, JMPBUF)
  8123. where:
  8124. BODY_DATA is just the BODY_DATA argument we received; we pass it
  8125. through to BODY as its first argument. The caller can make
  8126. BODY_DATA point to anything useful that BODY might need.
  8127. JMPBUF is the Scheme jmpbuf object corresponding to this catch,
  8128. which we have just created and initialized.
  8129. HANDLER is a pointer to a C function to deal with a throw to TAG,
  8130. should one occur. We call it like this:
  8131. HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
  8132. where
  8133. HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
  8134. same idea as BODY_DATA above.
  8135. THROWN_TAG is the tag that the user threw to; usually this is
  8136. TAG, but it could be something else if TAG was #t (i.e., a
  8137. catch-all), or the user threw to a jmpbuf.
  8138. THROW_ARGS is the list of arguments the user passed to the THROW
  8139. function.
  8140. BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
  8141. is just a pointer we pass through to HANDLER. We don't actually
  8142. use either of those pointers otherwise ourselves. The idea is
  8143. that, if our caller wants to communicate something to BODY or
  8144. HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
  8145. HANDLER can then use. Think of it as a way to make BODY and
  8146. HANDLER closures, not just functions; MUMBLE_DATA points to the
  8147. enclosed variables.
  8148. Of course, it's up to the caller to make sure that any data a
  8149. MUMBLE_DATA needs is protected from GC. A common way to do this is
  8150. to make MUMBLE_DATA a pointer to data stored in an automatic
  8151. structure variable; since the collector must scan the stack for
  8152. references anyway, this assures that any references in MUMBLE_DATA
  8153. will be found.
  8154. ** The new function scm_internal_lazy_catch is exactly like
  8155. scm_internal_catch, except:
  8156. - It does not unwind the stack (this is the major difference).
  8157. - If handler returns, its value is returned from the throw.
  8158. - BODY always receives #f as its JMPBUF argument (since there's no
  8159. jmpbuf associated with a lazy catch, because we don't unwind the
  8160. stack.)
  8161. ** scm_body_thunk is a new body function you can pass to
  8162. scm_internal_catch if you want the body to be like Scheme's `catch'
  8163. --- a thunk, or a function of one argument if the tag is #f.
  8164. BODY_DATA is a pointer to a scm_body_thunk_data structure, which
  8165. contains the Scheme procedure to invoke as the body, and the tag
  8166. we're catching. If the tag is #f, then we pass JMPBUF (created by
  8167. scm_internal_catch) to the body procedure; otherwise, the body gets
  8168. no arguments.
  8169. ** scm_handle_by_proc is a new handler function you can pass to
  8170. scm_internal_catch if you want the handler to act like Scheme's catch
  8171. --- call a procedure with the tag and the throw arguments.
  8172. If the user does a throw to this catch, this function runs a handler
  8173. procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
  8174. variable holding the Scheme procedure object to invoke. It ought to
  8175. be a pointer to an automatic variable (i.e., one living on the stack),
  8176. or the procedure object should be otherwise protected from GC.
  8177. ** scm_handle_by_message is a new handler function to use with
  8178. `scm_internal_catch' if you want Guile to print a message and die.
  8179. It's useful for dealing with throws to uncaught keys at the top level.
  8180. HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
  8181. message header to print; if zero, we use "guile" instead. That
  8182. text is followed by a colon, then the message described by ARGS.
  8183. ** The return type of scm_boot_guile is now void; the function does
  8184. not return a value, and indeed, never returns at all.
  8185. ** The new function scm_shell makes it easy for user applications to
  8186. process command-line arguments in a way that is compatible with the
  8187. stand-alone guile interpreter (which is in turn compatible with SCSH,
  8188. the Scheme shell).
  8189. To use the scm_shell function, first initialize any guile modules
  8190. linked into your application, and then call scm_shell with the values
  8191. of ARGC and ARGV your `main' function received. scm_shell will add
  8192. any SCSH-style meta-arguments from the top of the script file to the
  8193. argument vector, and then process the command-line arguments. This
  8194. generally means loading a script file or starting up an interactive
  8195. command interpreter. For details, see "Changes to the stand-alone
  8196. interpreter" above.
  8197. ** The new functions scm_get_meta_args and scm_count_argv help you
  8198. implement the SCSH-style meta-argument, `\'.
  8199. char **scm_get_meta_args (int ARGC, char **ARGV)
  8200. If the second element of ARGV is a string consisting of a single
  8201. backslash character (i.e. "\\" in Scheme notation), open the file
  8202. named by the following argument, parse arguments from it, and return
  8203. the spliced command line. The returned array is terminated by a
  8204. null pointer.
  8205. For details of argument parsing, see above, under "guile now accepts
  8206. command-line arguments compatible with SCSH..."
  8207. int scm_count_argv (char **ARGV)
  8208. Count the arguments in ARGV, assuming it is terminated by a null
  8209. pointer.
  8210. For an example of how these functions might be used, see the source
  8211. code for the function scm_shell in libguile/script.c.
  8212. You will usually want to use scm_shell instead of calling this
  8213. function yourself.
  8214. ** The new function scm_compile_shell_switches turns an array of
  8215. command-line arguments into Scheme code to carry out the actions they
  8216. describe. Given ARGC and ARGV, it returns a Scheme expression to
  8217. evaluate, and calls scm_set_program_arguments to make any remaining
  8218. command-line arguments available to the Scheme code. For example,
  8219. given the following arguments:
  8220. -e main -s ekko a speckled gecko
  8221. scm_set_program_arguments will return the following expression:
  8222. (begin (load "ekko") (main (command-line)) (quit))
  8223. You will usually want to use scm_shell instead of calling this
  8224. function yourself.
  8225. ** The function scm_shell_usage prints a usage message appropriate for
  8226. an interpreter that uses scm_compile_shell_switches to handle its
  8227. command-line arguments.
  8228. void scm_shell_usage (int FATAL, char *MESSAGE)
  8229. Print a usage message to the standard error output. If MESSAGE is
  8230. non-zero, write it before the usage message, followed by a newline.
  8231. If FATAL is non-zero, exit the process, using FATAL as the
  8232. termination status. (If you want to be compatible with Guile,
  8233. always use 1 as the exit status when terminating due to command-line
  8234. usage problems.)
  8235. You will usually want to use scm_shell instead of calling this
  8236. function yourself.
  8237. ** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
  8238. expressions. It used to return SCM_EOL. Earth-shattering.
  8239. ** The macros for declaring scheme objects in C code have been
  8240. rearranged slightly. They are now:
  8241. SCM_SYMBOL (C_NAME, SCHEME_NAME)
  8242. Declare a static SCM variable named C_NAME, and initialize it to
  8243. point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
  8244. be a C identifier, and SCHEME_NAME should be a C string.
  8245. SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
  8246. Just like SCM_SYMBOL, but make C_NAME globally visible.
  8247. SCM_VCELL (C_NAME, SCHEME_NAME)
  8248. Create a global variable at the Scheme level named SCHEME_NAME.
  8249. Declare a static SCM variable named C_NAME, and initialize it to
  8250. point to the Scheme variable's value cell.
  8251. SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
  8252. Just like SCM_VCELL, but make C_NAME globally visible.
  8253. The `guile-snarf' script writes initialization code for these macros
  8254. to its standard output, given C source code as input.
  8255. The SCM_GLOBAL macro is gone.
  8256. ** The scm_read_line and scm_read_line_x functions have been replaced
  8257. by Scheme code based on the %read-delimited! procedure (known to C
  8258. code as scm_read_delimited_x). See its description above for more
  8259. information.
  8260. ** The function scm_sys_open has been renamed to scm_open. It now
  8261. returns a port instead of an FD object.
  8262. * The dynamic linking support has changed. For more information, see
  8263. libguile/DYNAMIC-LINKING.
  8264. Guile 1.0b3
  8265. User-visible changes from Thursday, September 5, 1996 until Guile 1.0
  8266. (Sun 5 Jan 1997):
  8267. * Changes to the 'guile' program:
  8268. ** Guile now loads some new files when it starts up. Guile first
  8269. searches the load path for init.scm, and loads it if found. Then, if
  8270. Guile is not being used to execute a script, and the user's home
  8271. directory contains a file named `.guile', Guile loads that.
  8272. ** You can now use Guile as a shell script interpreter.
  8273. To paraphrase the SCSH manual:
  8274. When Unix tries to execute an executable file whose first two
  8275. characters are the `#!', it treats the file not as machine code to
  8276. be directly executed by the native processor, but as source code
  8277. to be executed by some interpreter. The interpreter to use is
  8278. specified immediately after the #! sequence on the first line of
  8279. the source file. The kernel reads in the name of the interpreter,
  8280. and executes that instead. It passes the interpreter the source
  8281. filename as its first argument, with the original arguments
  8282. following. Consult the Unix man page for the `exec' system call
  8283. for more information.
  8284. Now you can use Guile as an interpreter, using a mechanism which is a
  8285. compatible subset of that provided by SCSH.
  8286. Guile now recognizes a '-s' command line switch, whose argument is the
  8287. name of a file of Scheme code to load. It also treats the two
  8288. characters `#!' as the start of a comment, terminated by `!#'. Thus,
  8289. to make a file of Scheme code directly executable by Unix, insert the
  8290. following two lines at the top of the file:
  8291. #!/usr/local/bin/guile -s
  8292. !#
  8293. Guile treats the argument of the `-s' command-line switch as the name
  8294. of a file of Scheme code to load, and treats the sequence `#!' as the
  8295. start of a block comment, terminated by `!#'.
  8296. For example, here's a version of 'echo' written in Scheme:
  8297. #!/usr/local/bin/guile -s
  8298. !#
  8299. (let loop ((args (cdr (program-arguments))))
  8300. (if (pair? args)
  8301. (begin
  8302. (display (car args))
  8303. (if (pair? (cdr args))
  8304. (display " "))
  8305. (loop (cdr args)))))
  8306. (newline)
  8307. Why does `#!' start a block comment terminated by `!#', instead of the
  8308. end of the line? That is the notation SCSH uses, and although we
  8309. don't yet support the other SCSH features that motivate that choice,
  8310. we would like to be backward-compatible with any existing Guile
  8311. scripts once we do. Furthermore, if the path to Guile on your system
  8312. is too long for your kernel, you can start the script with this
  8313. horrible hack:
  8314. #!/bin/sh
  8315. exec /really/long/path/to/guile -s "$0" ${1+"$@"}
  8316. !#
  8317. Note that some very old Unix systems don't support the `#!' syntax.
  8318. ** You can now run Guile without installing it.
  8319. Previous versions of the interactive Guile interpreter (`guile')
  8320. couldn't start up unless Guile's Scheme library had been installed;
  8321. they used the value of the environment variable `SCHEME_LOAD_PATH'
  8322. later on in the startup process, but not to find the startup code
  8323. itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
  8324. code.
  8325. To run Guile without installing it, build it in the normal way, and
  8326. then set the environment variable `SCHEME_LOAD_PATH' to a
  8327. colon-separated list of directories, including the top-level directory
  8328. of the Guile sources. For example, if you unpacked Guile so that the
  8329. full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
  8330. you might say
  8331. export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
  8332. ** Guile's read-eval-print loop no longer prints #<unspecified>
  8333. results. If the user wants to see this, she can evaluate the
  8334. expression (assert-repl-print-unspecified #t), perhaps in her startup
  8335. file.
  8336. ** Guile no longer shows backtraces by default when an error occurs;
  8337. however, it does display a message saying how to get one, and how to
  8338. request that they be displayed by default. After an error, evaluate
  8339. (backtrace)
  8340. to see a backtrace, and
  8341. (debug-enable 'backtrace)
  8342. to see them by default.
  8343. * Changes to Guile Scheme:
  8344. ** Guile now distinguishes between #f and the empty list.
  8345. This is for compatibility with the IEEE standard, the (possibly)
  8346. upcoming Revised^5 Report on Scheme, and many extant Scheme
  8347. implementations.
  8348. Guile used to have #f and '() denote the same object, to make Scheme's
  8349. type system more compatible with Emacs Lisp's. However, the change
  8350. caused too much trouble for Scheme programmers, and we found another
  8351. way to reconcile Emacs Lisp with Scheme that didn't require this.
  8352. ** Guile's delq, delv, delete functions, and their destructive
  8353. counterparts, delq!, delv!, and delete!, now remove all matching
  8354. elements from the list, not just the first. This matches the behavior
  8355. of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
  8356. functions which inspired them.
  8357. I recognize that this change may break code in subtle ways, but it
  8358. seems best to make the change before the FSF's first Guile release,
  8359. rather than after.
  8360. ** The compiled-library-path function has been deleted from libguile.
  8361. ** The facilities for loading Scheme source files have changed.
  8362. *** The variable %load-path now tells Guile which directories to search
  8363. for Scheme code. Its value is a list of strings, each of which names
  8364. a directory.
  8365. *** The variable %load-extensions now tells Guile which extensions to
  8366. try appending to a filename when searching the load path. Its value
  8367. is a list of strings. Its default value is ("" ".scm").
  8368. *** (%search-load-path FILENAME) searches the directories listed in the
  8369. value of the %load-path variable for a Scheme file named FILENAME,
  8370. with all the extensions listed in %load-extensions. If it finds a
  8371. match, then it returns its full filename. If FILENAME is absolute, it
  8372. returns it unchanged. Otherwise, it returns #f.
  8373. %search-load-path will not return matches that refer to directories.
  8374. *** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
  8375. uses %seach-load-path to find a file named FILENAME, and loads it if
  8376. it finds it. If it can't read FILENAME for any reason, it throws an
  8377. error.
  8378. The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
  8379. `read' function.
  8380. *** load uses the same searching semantics as primitive-load.
  8381. *** The functions %try-load, try-load-with-path, %load, load-with-path,
  8382. basic-try-load-with-path, basic-load-with-path, try-load-module-with-
  8383. path, and load-module-with-path have been deleted. The functions
  8384. above should serve their purposes.
  8385. *** If the value of the variable %load-hook is a procedure,
  8386. `primitive-load' applies its value to the name of the file being
  8387. loaded (without the load path directory name prepended). If its value
  8388. is #f, it is ignored. Otherwise, an error occurs.
  8389. This is mostly useful for printing load notification messages.
  8390. ** The function `eval!' is no longer accessible from the scheme level.
  8391. We can't allow operations which introduce glocs into the scheme level,
  8392. because Guile's type system can't handle these as data. Use `eval' or
  8393. `read-and-eval!' (see below) as replacement.
  8394. ** The new function read-and-eval! reads an expression from PORT,
  8395. evaluates it, and returns the result. This is more efficient than
  8396. simply calling `read' and `eval', since it is not necessary to make a
  8397. copy of the expression for the evaluator to munge.
  8398. Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
  8399. for the `read' function.
  8400. ** The function `int?' has been removed; its definition was identical
  8401. to that of `integer?'.
  8402. ** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
  8403. use the R4RS names for these functions.
  8404. ** The function object-properties no longer returns the hash handle;
  8405. it simply returns the object's property list.
  8406. ** Many functions have been changed to throw errors, instead of
  8407. returning #f on failure. The point of providing exception handling in
  8408. the language is to simplify the logic of user code, but this is less
  8409. useful if Guile's primitives don't throw exceptions.
  8410. ** The function `fileno' has been renamed from `%fileno'.
  8411. ** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
  8412. * Changes to Guile's C interface:
  8413. ** The library's initialization procedure has been simplified.
  8414. scm_boot_guile now has the prototype:
  8415. void scm_boot_guile (int ARGC,
  8416. char **ARGV,
  8417. void (*main_func) (),
  8418. void *closure);
  8419. scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
  8420. MAIN_FUNC should do all the work of the program (initializing other
  8421. packages, reading user input, etc.) before returning. When MAIN_FUNC
  8422. returns, call exit (0); this function never returns. If you want some
  8423. other exit value, MAIN_FUNC may call exit itself.
  8424. scm_boot_guile arranges for program-arguments to return the strings
  8425. given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
  8426. scm_set_program_arguments with the final list, so Scheme code will
  8427. know which arguments have been processed.
  8428. scm_boot_guile establishes a catch-all catch handler which prints an
  8429. error message and exits the process. This means that Guile exits in a
  8430. coherent way when system errors occur and the user isn't prepared to
  8431. handle it. If the user doesn't like this behavior, they can establish
  8432. their own universal catcher in MAIN_FUNC to shadow this one.
  8433. Why must the caller do all the real work from MAIN_FUNC? The garbage
  8434. collector assumes that all local variables of type SCM will be above
  8435. scm_boot_guile's stack frame on the stack. If you try to manipulate
  8436. SCM values after this function returns, it's the luck of the draw
  8437. whether the GC will be able to find the objects you allocate. So,
  8438. scm_boot_guile function exits, rather than returning, to discourage
  8439. people from making that mistake.
  8440. The IN, OUT, and ERR arguments were removed; there are other
  8441. convenient ways to override these when desired.
  8442. The RESULT argument was deleted; this function should never return.
  8443. The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
  8444. general.
  8445. ** Guile's header files should no longer conflict with your system's
  8446. header files.
  8447. In order to compile code which #included <libguile.h>, previous
  8448. versions of Guile required you to add a directory containing all the
  8449. Guile header files to your #include path. This was a problem, since
  8450. Guile's header files have names which conflict with many systems'
  8451. header files.
  8452. Now only <libguile.h> need appear in your #include path; you must
  8453. refer to all Guile's other header files as <libguile/mumble.h>.
  8454. Guile's installation procedure puts libguile.h in $(includedir), and
  8455. the rest in $(includedir)/libguile.
  8456. ** Two new C functions, scm_protect_object and scm_unprotect_object,
  8457. have been added to the Guile library.
  8458. scm_protect_object (OBJ) protects OBJ from the garbage collector.
  8459. OBJ will not be freed, even if all other references are dropped,
  8460. until someone does scm_unprotect_object (OBJ). Both functions
  8461. return OBJ.
  8462. Note that calls to scm_protect_object do not nest. You can call
  8463. scm_protect_object any number of times on a given object, and the
  8464. next call to scm_unprotect_object will unprotect it completely.
  8465. Basically, scm_protect_object and scm_unprotect_object just
  8466. maintain a list of references to things. Since the GC knows about
  8467. this list, all objects it mentions stay alive. scm_protect_object
  8468. adds its argument to the list; scm_unprotect_object remove its
  8469. argument from the list.
  8470. ** scm_eval_0str now returns the value of the last expression
  8471. evaluated.
  8472. ** The new function scm_read_0str reads an s-expression from a
  8473. null-terminated string, and returns it.
  8474. ** The new function `scm_stdio_to_port' converts a STDIO file pointer
  8475. to a Scheme port object.
  8476. ** The new function `scm_set_program_arguments' allows C code to set
  8477. the value returned by the Scheme `program-arguments' function.
  8478. Older changes:
  8479. * Guile no longer includes sophisticated Tcl/Tk support.
  8480. The old Tcl/Tk support was unsatisfying to us, because it required the
  8481. user to link against the Tcl library, as well as Tk and Guile. The
  8482. interface was also un-lispy, in that it preserved Tcl/Tk's practice of
  8483. referring to widgets by names, rather than exporting widgets to Scheme
  8484. code as a special datatype.
  8485. In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
  8486. maintainers described some very interesting changes in progress to the
  8487. Tcl/Tk internals, which would facilitate clean interfaces between lone
  8488. Tk and other interpreters --- even for garbage-collected languages
  8489. like Scheme. They expected the new Tk to be publicly available in the
  8490. fall of 1996.
  8491. Since it seems that Guile might soon have a new, cleaner interface to
  8492. lone Tk, and that the old Guile/Tk glue code would probably need to be
  8493. completely rewritten, we (Jim Blandy and Richard Stallman) have
  8494. decided not to support the old code. We'll spend the time instead on
  8495. a good interface to the newer Tk, as soon as it is available.
  8496. Until then, gtcltk-lib provides trivial, low-maintenance functionality.
  8497. Copyright information:
  8498. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
  8499. Permission is granted to anyone to make or distribute verbatim copies
  8500. of this document as received, in any medium, provided that the
  8501. copyright notice and this permission notice are preserved,
  8502. thus giving the recipient permission to redistribute in turn.
  8503. Permission is granted to distribute modified versions
  8504. of this document, or of portions of it,
  8505. under the above conditions, provided also that they
  8506. carry prominent notices stating who last changed them.
  8507. Local variables:
  8508. mode: outline
  8509. paragraph-separate: "[ ]*$"
  8510. end: