correct spelling; from Alexander Polakov.

This commit is contained in:
okan 2011-07-14 11:39:53 +00:00
parent c1282342a5
commit df02d70181
4 changed files with 9 additions and 9 deletions

View File

@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $OpenBSD: calmwm.h,v 1.133 2011/06/24 06:52:23 okan Exp $
* $OpenBSD: calmwm.h,v 1.134 2011/07/14 11:39:53 okan Exp $
*/
#ifndef _CALMWM_H_
@ -79,7 +79,7 @@ union arg {
};
enum cwmcolor {
CWM_COLOR_BORDOR_ACTIVE,
CWM_COLOR_BORDER_ACTIVE,
CWM_COLOR_BORDER_INACTIVE,
CWM_COLOR_BORDER_GROUP,
CWM_COLOR_BORDER_UNGROUP,

View File

@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $OpenBSD: client.c,v 1.85 2011/06/24 06:06:24 okan Exp $
* $OpenBSD: client.c,v 1.86 2011/07/14 11:39:53 okan Exp $
*/
#include <sys/param.h>
@ -489,7 +489,7 @@ client_draw_border(struct client_ctx *cc)
pixel = sc->color[CWM_COLOR_BORDER_UNGROUP].pixel;
break;
default:
pixel = sc->color[CWM_COLOR_BORDOR_ACTIVE].pixel;
pixel = sc->color[CWM_COLOR_BORDER_ACTIVE].pixel;
break;
}
else

View File

@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $OpenBSD: conf.c,v 1.86 2011/06/25 13:37:05 okan Exp $
* $OpenBSD: conf.c,v 1.87 2011/07/14 11:39:53 okan Exp $
*/
#include <sys/param.h>
@ -202,7 +202,7 @@ conf_init(struct conf *c)
strlcpy(c->termpath, "xterm", sizeof(c->termpath));
strlcpy(c->lockpath, "xlock", sizeof(c->lockpath));
c->color[CWM_COLOR_BORDOR_ACTIVE].name =
c->color[CWM_COLOR_BORDER_ACTIVE].name =
xstrdup(CONF_COLOR_ACTIVEBORDER);
c->color[CWM_COLOR_BORDER_INACTIVE].name =
xstrdup(CONF_COLOR_INACTIVEBORDER);

View File

@ -1,4 +1,4 @@
/* $OpenBSD: parse.y,v 1.27 2011/06/24 06:06:24 okan Exp $ */
/* $OpenBSD: parse.y,v 1.28 2011/07/14 11:39:53 okan Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@ -169,8 +169,8 @@ color : COLOR colors
;
colors : ACTIVEBORDER STRING {
free(conf->color[CWM_COLOR_BORDOR_ACTIVE].name);
conf->color[CWM_COLOR_BORDOR_ACTIVE].name = $2;
free(conf->color[CWM_COLOR_BORDER_ACTIVE].name);
conf->color[CWM_COLOR_BORDER_ACTIVE].name = $2;
}
| INACTIVEBORDER STRING {
free(conf->color[CWM_COLOR_BORDER_INACTIVE].name);