view mcabber/hgcset.sh @ 2307:94d34e5c49f6

Enter chat mode with <Enter> also in vi mode When the input line is empty and the user hits the <Enter> key, switch to chat mode even if vi_mode is set to 1. --- mcabber/mcabber/screen.c | 5 +++++ 1 file changed, 5 insertions(+)
author Holger Weiß <holger@zedat.fu-berlin.de>
date Sun, 26 Jul 2015 19:26:29 +0200
parents e8f2db654e67
children
line wrap: on
line source

#! /bin/sh

srcdir="$1"
builddir="$2"

if [ ! -f "$srcdir/logprint.h" ]; then
  echo "Unable to find mcabber sources!" >&2
  exit 1
fi

cd "$srcdir"

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

echo > "$builddir/hgcset.h"