fix replace-regexp issues
- an infinite loop with (replace-regexp "^.*$" "") because it does not
advance to the next line
- replace-regexp replaces all occurrences of ^pattern in a line.
diff from Mark Willson (mark [at] hydrus.org.uk,) thanks!
minor tweak by me, I've used gotoeol() instead of setting curwp->w_doto
manually.
Fix the gitlab-cli's terminal handling. github.com/AlecAivazis/survey
module is still using syscall.* interface which was removed in
OpenBSD, and it's archived. Replace the module with
github.com/bsdmp/survey. Investigation and fix from Mikhail Pchelin.
Input from sthen.
ok kn
Fix the github-cli's terminal handling. github.com/AlecAivazis/survey
module is still using syscall.* interface which was removed in
OpenBSD, and it's archived. Replace the module with
github.com/bsdmp/survey. Investigation and fix from Mikhail Pchelin.
Test and improve by sthen.
ok sthen kn
Remove the IOMMU-specific bus_dmamap_sync() implementation and just call
the default implementation instead. The current #ifdef'ed out code just
doesn't make sense.
ok chris@