#!/bin/sh
# -*- Mode: shell-script -*-
# Copyright (C) 2000 by Chmouel Boudjnah <chmouel@mandrakesoft.com>,
# MandrakeSoft.  Redistribution of this file is permitted under the
# terms of the GNU Public License (GPL)
## description: Remove the MOD_META_L identifier mainly for xemacs

if [ -f /etc/sysconfig/keyboard ];then
    if grep -q "REMOVE_MOD_META_L=yes" /etc/sysconfig/keyboard;then
	xmodmap -e 'remove mod4 = Meta_L'
    fi
fi