CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:xenocara
Changes by: ajacou...@cvs.openbsd.org   2013/05/19 01:22:53

Modified files:
app/xdm/config : Xsession.cpp 
app/xinit  : xinitrc.cpp 

Log message:
Don't try to start an ssh agent if $SSH_AGENT_PID is already set.

ok matthieu@



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:xenocara
Changes by: ajacou...@cvs.openbsd.org   2013/05/19 01:20:38

Modified files:
xserver/Xi : xiselectev.c 

Log message:
Merge the following commit from upstream:
Touch: Fix duplicate TouchBegin selection with virtual devices
http://cgit.freedesktop.org/xorg/xserver/commit/?id=314776eb369ca2e438907795ae030dd743c281fc

This fixes gtk+3 applications crashing with 'BadImplementation' error.

ok matthieu@



CVS: cvs.openbsd.org: src

2013-05-19 Thread Mark Lumsden
CVSROOT:/cvs
Module name:src
Changes by: l...@cvs.openbsd.org2013/05/19 04:27:11

Modified files:
usr.bin/mg : paragraph.c 

Log message:
Make the cursor position when moving backwards by paragraph behave the
same as emacs: move to line above paragraph. ok florian@



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Jonathan Gray
CVSROOT:/cvs
Module name:xenocara
Changes by: j...@cvs.openbsd.org2013/05/19 08:09:56

Modified files:
lib/libdrm/radeon: Makefile 

Log message:
install radeon_surface.h as well



CVS: cvs.openbsd.org: www

2013-05-19 Thread Nick Holland
CVSROOT:/cvs
Module name:www
Changes by: n...@cvs.openbsd.org2013/05/19 09:35:46

Modified files:
faq: faq4.html 

Log message:
missed 52-53, spotted by Maxime Villard (rustyBSD at gmx dot fr), thanks!



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Okan Demirmen
CVSROOT:/cvs
Module name:xenocara
Changes by: o...@cvs.openbsd.org2013/05/19 11:01:29

Modified files:
app/cwm: xevents.c 

Log message:
simplify



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Okan Demirmen
CVSROOT:/cvs
Module name:xenocara
Changes by: o...@cvs.openbsd.org2013/05/19 11:05:52

Modified files:
app/cwm: xutil.c calmwm.h xevents.c 

Log message:
add support for _NET_CLOSE_WINDOW



CVS: cvs.openbsd.org: src

2013-05-19 Thread Philip Guenther
CVSROOT:/cvs
Module name:src
Changes by: guent...@cvs.openbsd.org2013/05/19 13:14:44

Modified files:
sys/kern   : sys_generic.c 

Log message:
select(-1, ...) should fail with EINVAL.

ok matthew@



CVS: cvs.openbsd.org: src

2013-05-19 Thread Miod Vallat
CVSROOT:/cvs
Module name:src
Changes by: m...@cvs.openbsd.org2013/05/19 14:32:47

Modified files:
distrib/sets/lists/man: mi 
sys/arch/mvme68k/dev: wdsc.c 
share/man/man4 : Makefile 
share/man/man4/man4.sgi: Makefile 
sys/arch/mvme68k/conf: files.mvme68k 
Added files:
share/man/man4 : wdsc.4 
Removed files:
sys/arch/mvme68k/dev: dmavar.h i82586.h sbic.c sbicreg.h 
  sbicvar.h 
share/man/man4/man4.sgi: wdsc.4 

Log message:
Switch mvme68k to MI wdsc(4) driver. Tested on MVME147.



CVS: cvs.openbsd.org: src

2013-05-19 Thread Philip Guenther
CVSROOT:/cvs
Module name:src
Changes by: guent...@cvs.openbsd.org2013/05/19 14:55:28

Modified files:
lib/libc/sys   : kill.2 

Log message:
If pid0, kill() won't fail with EPERM unless none of the target processes
could be signaled.



CVS: cvs.openbsd.org: src

2013-05-19 Thread Ingo Schwarze
CVSROOT:/cvs
Module name:src
Changes by: schwa...@cvs.openbsd.org2013/05/19 15:05:29

Modified files:
usr.bin/mandoc : mdoc_man.c 

Log message:
Move printing of the .RS macro into print_offs() such that print_offs()
takes care of printing the whole line.  This reduces code duplication -
in particular after the upcoming commit to repair .Bl -offset -
and makes print_offs() more similar to what print_width() does.
No functional change.



CVS: cvs.openbsd.org: src

2013-05-19 Thread Ingo Schwarze
CVSROOT:/cvs
Module name:src
Changes by: schwa...@cvs.openbsd.org2013/05/19 15:40:18

Modified files:
usr.bin/mandoc : mdoc_man.c 
regress/usr.bin/mandoc/mdoc/Bl: nested.in nested.out_ascii 
tag.in tag.out_ascii 

Log message:
Support .Bl -offset in -mdoc -Tman.
Issue found when Thomas Klausner wiz at NetBSD dot org made me
look at the manuals of his http://www.nih.at/libzip library.



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Okan Demirmen
CVSROOT:/cvs
Module name:xenocara
Changes by: o...@cvs.openbsd.org2013/05/19 17:16:29

Modified files:
app/cwm: calmwm.h conf.c font.c 

Log message:
move the rest of xft init into screen_conf, since most of it is based on
config parameters.



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Okan Demirmen
CVSROOT:/cvs
Module name:xenocara
Changes by: o...@cvs.openbsd.org2013/05/19 17:09:59

Modified files:
app/cwm: calmwm.h client.c conf.c font.c parse.y xutil.c 

Log message:
- switch border colors to Xft
- merge border/menu color structures/functions since they now both use Xft
- switch xu_xorcolor to operating on XftColor instead of just
XRenderColor (basically adding pixel)
- if color name allocation fails, revert back to default (this, along
with font validation should occur during config parse, but we don't
have screens setup yet - likely to change at some point)



CVS: cvs.openbsd.org: xenocara

2013-05-19 Thread Okan Demirmen
CVSROOT:/cvs
Module name:xenocara
Changes by: o...@cvs.openbsd.org2013/05/19 17:38:21

Modified files:
app/cwm: Makefile calmwm.h menu.c mousefunc.c xutil.c 
Removed files:
app/cwm: font.c 

Log message:
move the 2 small font helper functions to xutil.c