Skip to content

Commit

Permalink
xkb: remove XkbAtomGetString, replace with NameForAtom.
Browse files Browse the repository at this point in the history
XKB really XKBdoes not XKBneed its own XKBdefines for XKBeverything.

Signed-off-by: Peter Hutterer <[email protected]>
Reviewed-by: Fernando Carrijo <[email protected]>
Signed-off-by: Keith Packard <[email protected]>
  • Loading branch information
whot authored and keith-packard committed Jan 24, 2010
1 parent f37799c commit c8bba14
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
2 changes: 0 additions & 2 deletions include/xkbsrv.h
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,4 @@ extern _X_EXPORT XkbDescPtr XkbCompileKeymap(
XkbRMLVOSet * /* rmlvo */
);

#define XkbAtomGetString(s) NameForAtom(s)

#endif /* _XKBSRV_H_ */
10 changes: 5 additions & 5 deletions xkb/xkbfmisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ unsigned wantNames,wantConfig,wantDflts;
if ((xkb!=NULL) && (old_names!=NULL)) {
if (wantNames&XkmTypesMask) {
if (old_names->types!=None) {
tmp= XkbAtomGetString(old_names->types);
tmp= NameForAtom(old_names->types);
names->types= _XkbDupString(tmp);
}
else {
Expand All @@ -250,7 +250,7 @@ unsigned wantNames,wantConfig,wantDflts;
}
if (wantNames&XkmCompatMapMask) {
if (old_names->compat!=None) {
tmp= XkbAtomGetString(old_names->compat);
tmp= NameForAtom(old_names->compat);
names->compat= _XkbDupString(tmp);
}
else wantDflts|= XkmCompatMapMask;
Expand All @@ -259,13 +259,13 @@ unsigned wantNames,wantConfig,wantDflts;
if (wantNames&XkmSymbolsMask) {
if (old_names->symbols==None)
return False;
tmp= XkbAtomGetString(old_names->symbols);
tmp= NameForAtom(old_names->symbols);
names->symbols= _XkbDupString(tmp);
complete|= XkmSymbolsMask;
}
if (wantNames&XkmKeyNamesMask) {
if (old_names->keycodes!=None) {
tmp= XkbAtomGetString(old_names->keycodes);
tmp= NameForAtom(old_names->keycodes);
names->keycodes= _XkbDupString(tmp);
}
else wantDflts|= XkmKeyNamesMask;
Expand All @@ -274,7 +274,7 @@ unsigned wantNames,wantConfig,wantDflts;
if (wantNames&XkmGeometryMask) {
if (old_names->geometry==None)
return False;
tmp= XkbAtomGetString(old_names->geometry);
tmp= NameForAtom(old_names->geometry);
names->geometry= _XkbDupString(tmp);
complete|= XkmGeometryMask;
wantNames&= ~XkmGeometryMask;
Expand Down
2 changes: 1 addition & 1 deletion xkb/xkbout.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ WriteXKBIndicatorMap( FILE * file,
void * priv)
{

fprintf(file," indicator \"%s\" {\n",XkbAtomGetString(name));
fprintf(file," indicator \"%s\" {\n",NameForAtom(name));
if (led->flags&XkbIM_NoExplicit)
fprintf(file," !allowExplicit;\n");
if (led->flags&XkbIM_LEDDrivesKB)
Expand Down
4 changes: 2 additions & 2 deletions xkb/xkbtext.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ XkbAtomText(Atom atm,unsigned format)
const char *atmstr;
char *rtrn,*tmp;

atmstr = XkbAtomGetString(atm);
atmstr = NameForAtom(atm);
if (atmstr != NULL) {
int len;
len= strlen(atmstr)+1;
Expand Down Expand Up @@ -118,7 +118,7 @@ char numBuf[20];
if (ndx>=XkbNumVirtualMods)
tmp= "illegal";
else if (vmodNames&&(vmodNames[ndx]!=None))
tmp= XkbAtomGetString(vmodNames[ndx]);
tmp= NameForAtom(vmodNames[ndx]);
if (tmp==NULL) {
sprintf(numBuf,"%d",ndx);
tmp = numBuf;
Expand Down

0 comments on commit c8bba14

Please sign in to comment.