Commits


INSTALL: do not rm config after setting it up Fixes #334.


devdraw: correctly hide Mac menu bar (#335) `window:willUseFullScreenPresentationOptions:` is an instance method of the protocol `NSWindowDelegate`.


libthread: fix fault in teardown of proc Fixes #332.


acme: fix buffer overflow introduced in parsetag refactor


mouse(3): fix definition of Mousectl


acme: fix movetodel for spaces in file names


acme: allow spaces in window names There are many things we could do to make this work. an environment variable to control the character. Another option would be to use U+00A0 (non-breaking space), which renders the same as space. This change avoids changing the separator character and instead assumes that if the left side of the tag already ends in " Del Snarf |" then what comes before that is the file name. Acme already aggressively preserves the "Del Snarf |", so this should work decently well as a stop-gap. We can always try something else later. Fixes #26. Fixes #104. Fixes #329.


mk: fix hash function (#315) Avoid signed integer overflow using ulong instead of long h.


acme: one more place to use parsetag


acme: factor out tag parsing code


lib9: do not fetch disk size for character devices Real disk devices should be block devices anyway. One user reported the disksize check causing a system reboot during vac of a tree with an "interesting" device. Fixes #103.


mk: treat X= as empty list in rc shell This brings mk's behavior when using rc in line with Plan 9's. The existing code is for Unix environment data structures but also was assuming Unix shell semantics where empty and missing variables are mostly equivalent. The Plan 9 code (/sys/src/cmd/mk/plan9.c in the distribution) explicitly removes /env/name (creating an empty list) when the value is missing or an empty string. Fixes #255.


tmac: fix troff -ms .KS after .1C Fixes #233.


acme: fix crash in X |cat with multiple windows Fixes #9. Fixes #219. Fixes #222. Fixes #330.


vac, unvac: allow 128MB cache size, up from 4MB When a directory has lots of children, vac crashes because it runs out of cache. Fixes #266.