Shiro Kawai

Results 147 comments of Shiro Kawai

We have unofficial `check-arg`. However, `assume-*` macros are eventually recognized by the compiler as meta information to be used for reasoning / optimization.

Hmm, the code around force_cc was last changed in 2013, so right now I can't guess what went wrong. Could you tell me which latest commit it worked? (No need...

As I itemized below that line. The more important one is the second factor; before srfi becomes finalized, I don't want to add its entry to `src/srfis.scm`, because adding entry...

Basically, we have to install SIGCONT handler and reset the terminal. It is not too difficult if we have a stand-alone app. But as a library it gets trickier. -...

I put SIGCONT handling in place. I can't guarantee the thread calling read-line/edit receives the signal, so the handling of situation is a bit delayed--the user must type ENTER to...

Actually, read-line/edit could also take entire control of the terminal so that it could inetrcept C-z. We may consider it as well.

`>` is already used for the default (non-editing) prompt. I'd like to distinguish editing and non-editing clearly. Personally I kind of like `$`, for it is a shell to me...

I considered `,!`, but needed to press shift key which bothered me. So as a temporary compromise I use `,sh`. `,,` can be another candidate.

I don't think I would need to change prompt for rlwrap or Emacs; what I care is whether Gauche's editing mode is on or off. What I can do differs...