Kurtis Rader

Results 691 comments of Kurtis Rader

Gah! I don't know how I missed the fact the ksh(1) man page says: ``` sleep seconds Suspends execution for the number of decimal seconds or fractions of a sec-...

See also issue #238 where we are discussing removing the code that attempts, incorrectly and which can never be successful, to emulate bash.

FWIW, I have no objection to patterns like this: ``` struct { int x; int y; char *ptrs[0]; } a_struct; int nptrs = 3; struct a_struct *z = malloc(sizeof(struct a_struct)...

By the way, the pattern I'm arguing should be eliminated also makes tools like ASAN (address sanitizer) much less useful. That's because the buffers are contiguous which limits the ability...

I can reproduce using ksh93u+ on Linux but not macOS. However, I cannot reproduce this using ksh built from the git master branch. So it looks like we've already fixed...

When I follow the steps in your second reproducer both versions simply inserts a tab char without expanding the path. Both on macOS and Linux. If I omit the trailing...

Check that the output of `stty -a` looks reasonable. Especially with respect to the lines and columns.

Okay, creating a file in the directory I can reproduce what is presumably the same problem (although the behavior is slightly different) on macOS using the current git master branch:...

Yes, @kusalananda, this seems to be the same as, or related to, issue #682. And I'm willing to bet a paycheck that it is due to the AST team being...

For what it's worth the fish shell has decided to switch from Doxygen to [Sphinx](http://www.sphinx-doc.org/en/master/). Something I strongly recommend for this project. The ancient Troff markup language is all but...