Commit Briefs

David du Colombier

.gitignore: ignore files created for astro(1) and scat(1)

To use astro(1) and scat(1) one has to create sky/here and download various catalogue files as detailed in sky/README. This change marks those files as ignored by git so they don't clutter its status messages.


David du Colombier

9term: Set TERM_PROGRAM to termprog

TERM_PROGRAM is the customary way to identify which kind of terminal emulator program one uses on macOS. This change sets TERM_PROGRAM to termprog since both variables are used for the same purpose.


David du Colombier

9pfuse: retries read(3) upon EINTR

read(3) sometimes errors with EINTR on macOS over slow connections. 9pfuse(1) now retries read(3) instead of sysfatal(3)ing.


David du Colombier

9pfuse: fix handling of access mode (thanks Kenji Arisawa)

Fixes #81.


David du Colombier

auxstats: get network stats in a portable manner on FreeBSD

as the old grody way doesn't work any more on FreeBSD-10 and later.


David du Colombier

rc: use proper type for storing ulimit values

rc on amd64 stores ulimit values as 32-bit int, but the limits on OpenBSD amd64 can exceed 2^31, so "ulimit -a" shows some values as negative. This is a problem when I want to increase my ulimit but the hard ulimit values are printed as negative.



David du Colombier

9term: re-enable sys: child note for child processes

Fixes #6. Change-Id: Id9950f59c7970575866a7c22a69bfbf3a271f2bb


Russ Cox

acme: preserve window position and selection during Get

Before, executing Get in a file rewound the window offset and selection to the start of the file. After this CL, Get preserves the window offset and selection, where preserve is defined as "the same line number and rune offset within the line". So if the window started at line 10 before and the selection was line 13 chars 5-7, then that will still be true after Get, provided the new content is large enough. This should help the common situation of plumbing a compiler error, realizing the window is out of date, clicking Get, and then losing the positioning from the plumb operation.


David du Colombier

moveplan9: add missing files

This PR adds additional files to update /usr/local/plan9 references for packaging.


David du Colombier

web: *chrome* matches google-chrome


Russ Cox

acme: free buf in checksha1

Thanks to Lorenzo Beretta for noticing.


David du Colombier

9l: accept Linux kernel version 4.x

Fixes #114.


David du Colombier

9term: fix getpts on macOS 10.13

Since macOS 10.13, opening the /dev/ptyXX files always return ENOENT. Consequently, we changed getpts to use openpty to open a pseudoterminal, like on Linux and OpenBSD. Fixes #90. Fixes #110.


David du Colombier

upas/nfs: fix warnings

decode.c:146:8: warning: variable ‘argv’ set but not used fs.c:953:47: warning: variable ‘reset’ set but not used imap.c:348:6: warning: variable ‘prefix’ set but not used Updates #114.