summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-22add some macros needed by newer libdrmJonathan Gray
2013-03-22Correctly handle UTF8 mouse option being toggled, from Egmont Koblinger.Nicholas Marriott
2013-03-22Support the latest theory for mouse input, this is enabled/disabled withNicholas Marriott
SM/RM 1006 and is similar in style to SGR input: \033[<b;x;yM or \033[b;x;ym. From Egmont Koblinger.
2013-03-22Add client_session and client_last_session formats.Nicholas Marriott
2013-03-22No more lint means no more ARGSUSED.Nicholas Marriott
2013-03-22Remove stray test code which would convert abc to x.Nicholas Marriott
2013-03-22In terminals with XT, turn on modifyOtherKeys=1 with the escape sequenceNicholas Marriott
and handle the most common set. Pass them through if xterm-keys is on.
2013-03-22I strongly suspect it is possible for tmux to block on detach inNicholas Marriott
tty_raw, so make the fd blocking again much later and have tty_raw just retry the write a few times.
2013-03-22reinstate code to announce routes to backup carp interfaces. this was removedStuart Henderson
in a cleanup in r1.83, but we do still want to announce these (with a high metric), so that a specific route to the relevant network is maintained during failover. ok florian@ claudio@
2013-03-22Do not register symlinks in the sum files. This makes no sense and makesAntoine Jacoutot
sysmerge(8) output a warning when the target of the link does not yes exist on the system. ok sthen@
2013-03-22wire up the mode object property ioctlsJonathan Gray
2013-03-22implement DRM_IOCTL_I915_GEM_SW_FINISHJonathan Gray
2013-03-22add some definitions required for recent versions of libdrmJonathan Gray
2013-03-22simple replacement of LIST_END with NULL. ok mpiTed Unangst
2013-03-22enable mchdev lockingJonathan Gray
2013-03-22Replace hand-crafted nd_prefix loops with LIST_FOREACH macros.Alexander Bluhm
OK mpi@
2013-03-21oops, missed this in previous;Jason McIntyre
2013-03-21Define LABELS_WITHOUT_COLONS under OpenBSD again.Miod Vallat
2013-03-21Define PLT_BEFORE_GOT.Miod Vallat
2013-03-21Don't set TEXT_PLT if PLT_BEFORE_GOT.Miod Vallat
2013-03-21NKMEMPAGES_MIN went away a long time ago. wording help from jmc.Theo de Raadt
2013-03-21sys/param.h, not machine/param.hTheo de Raadt
2013-03-21Do not need machine/param.hTheo de Raadt
2013-03-21Use MAXBSIZE for block io limit (same value, but MAXPHYS is strictly aTheo de Raadt
kernel concept) ok miod
2013-03-21Already have sys/param.h, don't need machine/param.hTheo de Raadt
2013-03-21NBPG -> PAGE_SIZE, PGSHIFT -> PAGE_SHIFT, PGOFSET -> PAGE_MASKTheo de Raadt
2013-03-21Zap a few useless comments.Mark Kettenis
2013-03-21keep track of nginx.conf and nginx's mime.types fileRobert Nagy
from Ryan Kavanagh <rak@debian.org>
2013-03-21re-add a build fix for vax that was overwritten by the updateRobert Nagy
2013-03-21In a comment, talk about PAGE_SIZE instead of NBPGTheo de Raadt
2013-03-21style(9)Kurt Miller
2013-03-21Do not include machine/param.h since sys/param.h already did so.Theo de Raadt
ok kettenis
2013-03-21Instead of loads of little screen_write_*_on and off functions whichNicholas Marriott
just change mode flags, just have screen_write_mode_set and screen_write_mode_clear.
2013-03-21Add various checks to turn off bits that can't work in control modeNicholas Marriott
(such as lock).
2013-03-21Do not include status line in size calculations in control mode.Nicholas Marriott
2013-03-21more substantial include cleanupTheo de Raadt
2013-03-21Don't set key KEYC_NONE on xterm_keys_find match()Nicholas Marriott
When calling xterm_keys_find(); if we get a complete match, don't set the key to unknown before calling the action to complete the binding; otherwise non-prefixed bindings will not work. From Thomas Adam
2013-03-21Include the \033 in the key tree and adjust key matching for this change.Nicholas Marriott
2013-03-21Support capture-pane -p to send to stdout.Nicholas Marriott
2013-03-21Detect on-die temp sensor for Atom E6xx on amd64. Adapted fromKurt Miller
diff submitted by Matt Dainty. okay jsg@
2013-03-21I don't feel great about adding an include for <sys/param.h>, but I feelTheo de Raadt
great for removing an include of <machine/param.h> This needs further cleanup if someone has time.
2013-03-21Missed the man page bits for the IT8728.Bryan Steele
2013-03-21Attach on ITE 8728.Bryan Steele
it0 at isa0 port 0x2e/2: IT8728F rev 1, EC port 0x228 ok deraadt@
2013-03-21tweak previous; ok nicmJason McIntyre
2013-03-21Fix a couple of memory leaks, from Romain Francoise.Nicholas Marriott
2013-03-21Make choose-tree actually work again.Nicholas Marriott
2013-03-21Fix a comment for new key table names.Nicholas Marriott
2013-03-21Fix function parameter to tty_keys_free.Nicholas Marriott
2013-03-21Tidy by splitting default key tables into two.Nicholas Marriott
2013-03-21Add -c to refresh-client to set client size in control mode, based onNicholas Marriott
code from George Nachman.