Gauche icon indicating copy to clipboard operation
Gauche copied to clipboard

Scheme Scripting Engine

Results 146 Gauche issues
Sort by recently updated
recently updated
newest added

While thinking about paragraph-filling utility, I noticed the basic algorithm is almost the same as pretty printer. We can tokenize the input text with UAX#29 word segmentation and just apply...

Current `rfc.http` interface is enough if what the server asks is a simple pre-shared secret or token in `authorization` header. However, if the server asks some signing against request uri,...

Add options to `` to customize uniform vector output. - Rafix. Sometimes it's useful to dump uvector in hexadecimals, etc. - If we use base >= 10, whether we use...

An issue I'm having with syntax-case macros is that it no longer deals with raw S-expressions but wrapped syntactic forms. It seems to lose the beauty of Lisp macros. Sure,...

Now that threads are everywhere. Generators have internal mutable state. They don't go along well. First, check the impact of introducing mutex in every generator. We might be able to...

It's been back-burnered for years. Maybe it's time to make it official. - The name `check` conflicts with SRFI-78, so we'd better rename it. - The part of binding geneator...

**<<本件は、急いでマージする必用はありません。>>** #848 を更新したものです。 現状の HEAD に移植しました。 本件は、以下の問題を修正したものです。 ``` (use gauche.partcont) (reset (eval '(shift k (k 42)) (current-module))) ;; ==> # ( 42 になるのが正しい ) ``` ``` (use gauche.partcont) (define k1...

**<<本件は、急いでマージする必用はありません。>>** #528 を更新したものです。 現状の HEAD に移植しました。 これは、import 中にエラーが発生すると、(スタックトレースが捨てられるために) エラーの発生箇所が分からないという問題に対応したものです。 import 中にエラーが発生した場合に、 (最初の1個分だけ) スタックトレースを保存し、 現状のスタックトレースの後ろに表示します。 ただ、アドホックであまり良くないかもしれない。 (あと、GAUCHE_SPLIT_STACK と機能がかぶっている気もしましたが、 ちょっとよく分かりませんでした) <補足情報> この改造をしないでデバッグする場合、 import を load に置き変えるという方法があります。 (load だと (実行時の読み込みになり) スタックトレースが捨てられません。) ただ、ライブラリ内でさらに import...

I've been postponing this for years: One-stop site to discover and obtain Gauche packages. One of the reasons of reluctance is to maintain user registrations. If you allow anyone to...

Currently, we keep the type info of subrs defined with `define-cproc` stub form, but it is limited to simple stub types. It is nice if we allow descriptive types in...