view mcabber/hgcset.sh @ 1229:e9ea1497ac9d

Fix a key binding issue on FreeBSD The problem is that on FreeBSD with wide ncurses support, isprint() returns TRUE for special key codes like Fn, KEY_PPAGE, etc. This (ugly) patch makes possible for these special keys to be bound anyway.
author Mikael Berthe <mikael@lilotux.net>
date Fri, 08 Jun 2007 16:35:02 +0200
parents e6d42f239541
children 6cb8edbda6d2
line wrap: on
line source

#! /bin/sh

if [ ! -f logprint.h ]; then
  echo "You are not in the src directory" >&2
  exit 1
fi

if which hg > /dev/null 2>&1; then
  cs=$(hg id 2> /dev/null | cut -d' ' -f1)
  if test $? -eq 0; then
    grep -q "$cs" hgcset.h > /dev/null 2>&1 || \
      echo "#define HGCSET \"$cs\"" > hgcset.h
    exit 0
  fi
fi

echo > hgcset.h