# HG changeset patch # User Anselm R. Garbe # Date 1176456758 -7200 # Node ID 453788ae925cc698ee972cbce12f881eb31828c2 # Parent 7c53a7f541743a6d462931d1ebc782948adebbbe making Copyright notices more compact diff -r 7c53a7f54174 -r 453788ae925c LICENSE --- a/LICENSE Wed Apr 11 15:18:16 2007 +0200 +++ b/LICENSE Fri Apr 13 11:32:38 2007 +0200 @@ -1,7 +1,7 @@ MIT/X Consortium License -(C)opyright MMVI-MMVII Anselm R. Garbe -(C)opyright MMVI-MMVII Sander van Dijk +© 2004-2007 Anselm R. Garbe +© 2006-2007 Sander van Dijk Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff -r 7c53a7f54174 -r 453788ae925c client.c --- a/client.c Wed Apr 11 15:18:16 2007 +0200 +++ b/client.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include #include diff -r 7c53a7f54174 -r 453788ae925c draw.c --- a/draw.c Wed Apr 11 15:18:16 2007 +0200 +++ b/draw.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include diff -r 7c53a7f54174 -r 453788ae925c event.c --- a/event.c Wed Apr 11 15:18:16 2007 +0200 +++ b/event.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include #include @@ -174,8 +173,6 @@ if((c = getclient(ev->window))) { c->ismax = False; - if(ev->value_mask & CWBorderWidth) - c->border = ev->border_width; if(c->isfixed || c->isfloating || (lt->arrange == floating)) { if(ev->value_mask & CWX) c->x = ev->x; @@ -191,8 +188,12 @@ if(isvisible(c)) XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); } - else + else { + if(ev->value_mask & CWBorderWidth) + c->border = ev->border_width; configure(c); + c->border = BORDERPX; + } } else { wc.x = ev->x; diff -r 7c53a7f54174 -r 453788ae925c layout.c --- a/layout.c Wed Apr 11 15:18:16 2007 +0200 +++ b/layout.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include diff -r 7c53a7f54174 -r 453788ae925c main.c --- a/main.c Wed Apr 11 15:18:16 2007 +0200 +++ b/main.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,7 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ - +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include #include @@ -256,7 +254,7 @@ XEvent ev; if(argc == 2 && !strncmp("-v", argv[1], 3)) - eprint("dwm-"VERSION", (C)opyright MMVI-MMVII Anselm R. Garbe\n"); + eprint("dwm-"VERSION", © 2004-2007 Anselm R. Garbe\n"); else if(argc != 1) eprint("usage: dwm [-v]\n"); setlocale(LC_CTYPE, ""); diff -r 7c53a7f54174 -r 453788ae925c tag.c --- a/tag.c Wed Apr 11 15:18:16 2007 +0200 +++ b/tag.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include #include diff -r 7c53a7f54174 -r 453788ae925c util.c --- a/util.c Wed Apr 11 15:18:16 2007 +0200 +++ b/util.c Fri Apr 13 11:32:38 2007 +0200 @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include #include