Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-27 | Add a key to delete to end of line at the prompt (^K in emacs mode, C/D in vi). | Nicholas Marriott | |
From Kalle Olavi Niemitalo. | |||
2009-07-27 | tiemout_add -> timeout_add_sec | Bret Lambert | |
ok claudio@ | |||
2009-07-27 | Draw UTF-8 characters under the selection correctly. | Nicholas Marriott | |
2009-07-27 | add bus speed recognition on Nehalem based cpus, this | Dariusz Swiderski | |
makes Enhanced SpeedStep work on new machines, but requires acpimadt0 to be enabled. ok by jsg@ and claudio@ | |||
2009-07-27 | Change previous-word behavior to move to the beginning of the word (matches | Nicholas Marriott | |
emacs and vi). From Kalle Olavi Niemitalo. | |||
2009-07-27 | don't use ``return'' in sio_close() and mio_close() | Alexandre Ratchov | |
2009-07-26 | now in sync with version 1.8.1 | Ingo Schwarze | |
2009-07-26 | sync to 1.8.1: explicit-close macros now only warn when encountering | Ingo Schwarze | |
trailing terms and do not error out any more, try: .Ed foo | |||
2009-07-26 | sync to 1.8.1: remove superfluous NOSPACE in bd post, | Ingo Schwarze | |
and remove unused TERMP_LITERAL | |||
2009-07-26 | sync to 1.8.1: add a comment explaining the non-trivial termpair semantics; | Ingo Schwarze | |
a bug in this very respect was contained in the upstream equivalent of rev. 1.28, but was squashed while merging into OpenBSD | |||
2009-07-26 | sync to 1.8.1: describe corrected handling of quoted literals, | Ingo Schwarze | |
remove trailing whitespace and much minor cleanup | |||
2009-07-26 | - revert thread model posix since it broke the build for hppa. will revist | Kurt Miller | |
when all archs are fully tested and working. - major bump libstdc++ | |||
2009-07-26 | sync to 1.8.1: rewrite quoted literal handling correctly, | Ingo Schwarze | |
rewrite TABSEP handling in a simpler way, and retire ECOLEMPTY, ARGS_QUOTED and ARGS_ARGVLIKE | |||
2009-07-26 | Detect backspace by looking at termios VERASE and translate it into \177 (which | Nicholas Marriott | |
matches screen's behaviour if not its termcap/terminfo entry). The terminfo kbs cap is often wrong or missing so it can't be used, and just assuming \177 may be wrong. | |||
2009-07-26 | stop trying to fast-recycle pages for now. a few bugs have been found and | Theo de Raadt | |
fixed, but now it is time for a little break from the chaos. ok kettenis | |||
2009-07-26 | Calculate the space available for the prompt buffer and the cursor position | Nicholas Marriott | |
correctly, and make it work when the screen is not wide enough. Noticed by Kalle Olavi Niemitalo. | |||
2009-07-26 | Rework ioc children attachment: instead of having ioc build a semi-bogus | Miod Vallat | |
bus_space_handle_t, pass them ioc's own bus_space_handle and bus_space_tag, and have the children use bus_space_subregion() on it. | |||
2009-07-26 | Don't forget to bus_space_unmap(), even if it's a no-op, in rbus_space_unmap(). | Miod Vallat | |
2009-07-26 | Make the bus_space boundary checks #ifdef DIAGNOSTIC. | Miod Vallat | |
2009-07-26 | A better implementation of bus_space_subregion() for xbridge, with boundary | Miod Vallat | |
checks if option DIAGNOSTIC. | |||
2009-07-26 | Go to the next if the current best process is replaced, don't keep comparing it | Nicholas Marriott | |
with itself. Also fix process name comparison. | |||
2009-07-26 | Noticed we had run out of cd space. What a giant CD! Instead of putting | Theo de Raadt | |
gzip'd copies of the bsd.rd's on the media, just link to the ones in the release dir, saving more than 18% of the media size | |||
2009-07-26 | Create the pci resource extents as covering the full 4GB address space, | Miod Vallat | |
with only the available range free, instead of that range only. ok kettenis@ | |||
2009-07-26 | Make sure all platforms understand the flags argument of bus_space_map() and | Miod Vallat | |
bus_space_alloc() as a bitmask of flags, and not a boolean controlling cacheability; and make sure the three MI BUS_SPACE_MAP_xxx values documented in the manual page are defined on all platforms as well. | |||
2009-07-26 | more style improvemets, from Thomas Pfaff | Alexandre Ratchov | |
2009-07-26 | I'm not as smart as mickey, so replace: | Mark Kettenis | |
batch = pdemask == sva && sva + ~PDE_MASK + 1 <= eva; with something that's a little bit easier to read. | |||
2009-07-26 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok miod@ | |||
2009-07-26 | use ``sizeof(string) - 1'' rather than ``strlen(string)'' on static | Alexandre Ratchov | |
strings. suggested by Thomas Pfaff | |||
2009-07-26 | Document new PCIOCGETROM ioctl. Remove attribution of ioctls that we never | Mark Kettenis | |
implemented. | |||
2009-07-26 | Add PCIOCGETROM, and ioctl(2) to read PCI ROMs. | Mark Kettenis | |
ok miod@, marco@ | |||
2009-07-26 | If we recognize a specific mouse model where we need to override locator | Miod Vallat | |
information, do this after the locator information has been obtained. | |||
2009-07-26 | remove the (bogus) special case when mio_open() is called with | Alexandre Ratchov | |
a midi device name starting with a separator | |||
2009-07-26 | no need to cast the return value of m_freem() to void | Thordur I. Bjornsson | |
as its a void function. ok claudio@ | |||
2009-07-26 | Make all messages sent between the client and server fixed size. | Nicholas Marriott | |
This is the first of two changes to make the protocol more resilient and less sensitive to other changes in the code, particularly with commands. The client now packs argv into a buffer and sends it to the server for parsing, rather than doing it itself and sending the parsed command data. As a side-effect this also removes a lot of now-unused command marshalling code. Mixing a server without this change and a client with or vice versa will cause tmux to hang or crash, please ensure that tmux is entirely killed before upgrading. | |||
2009-07-26 | rephrase description of (MIO_IN | MIO_OUT) mode | Alexandre Ratchov | |
from Thomas Pfaff, ok jmc@ | |||
2009-07-26 | Make ``static'' few functions that are prototyped as static but are not | Alexandre Ratchov | |
defined as such from Thomas Pfaff | |||
2009-07-26 | sort and space headers as per style(9) | Alexandre Ratchov | |
from Thomas Pfaff | |||
2009-07-26 | Fix flow control support: | Mark Kettenis | |
- un-PAUSE when the rx FIFO gets below 3056 as is done on FreeBSD and Linux. - properly update the MAC according to the negotiated flow control. From Brad. | |||
2009-07-26 | sync to 1.8.1: removed excessively verbose EARGVPARM warning | Ingo Schwarze | |
2009-07-26 | sync to 1.8.1: support .br and .sp | Ingo Schwarze | |
2009-07-26 | sync to 1.8.1: modify macro hash tables to deal with lowercase macro names; | Ingo Schwarze | |
kristaps@ thinks the tables are too sparse and need more work later | |||
2009-07-26 | sync to 1.8.1: small clarity updates; | Ingo Schwarze | |
while here, strip trailing white space | |||
2009-07-26 | sync to 1.8.1: .Bl -diag lacked the second blank after the tag | Ingo Schwarze | |
2009-07-26 | sync to 1.8.1: correct vis count for erroneously-decorated whitespace; | Ingo Schwarze | |
while here, add a new FIXME wrt .Bl -diag | |||
2009-07-26 | sync to 1.8.1: word splitting now happens in libmdoc, | Ingo Schwarze | |
and remove costly, redundant calculations of string length | |||
2009-07-26 | sync to 1.8.1: libmdoc now breaks up free-form lines into tokens; | Ingo Schwarze | |
will simplify LITERAL mode in front-end | |||
2009-07-25 | sync to 1.8.1: fix date in footer; from Ulrich Sporlein | Ingo Schwarze | |
2009-07-25 | On multiple-node systems, be sure to broadcast reboot requests to all nodes. | Miod Vallat | |
2009-07-25 | Fix crash in bwi on armish by properly aligning a 32-bit value. Not | Kenneth R Westerback | |
to say it works great yet. Might fix bwi on any other alignment sensitive archs we have. My original hack generalized and made sane by jsg@. Didn't affect operation on my macppc. Problem first noted by ian@ a long time ago. ok jsg@ (whose tree is currently unavailable to commit from) | |||
2009-07-25 | sync | Theo de Raadt | |