view src/pathdef.sh @ 32553:e80fa10e0549 v9.0.1608

patch 9.0.1608: update_topline() is called twice Commit: https://github.com/vim/vim/commit/5c606846b9a43c7e6b94c7e96838f7532792f557 Author: Luuk van Baal <luukvbaal@gmail.com> Date: Mon Jun 5 15:00:05 2023 +0100 patch 9.0.1608: update_topline() is called twice Problem: update_topline() is called twice. Solution: Do not call update_topline() before curs_columns(). (Luuk van Baal, closes #12495)
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Jun 2023 16:15:04 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists
#
if test -s auto/link.sed; then
  cp auto/pathdef.c auto/pathdef.tmp
  sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c
  rm -f auto/pathdef.tmp
fi

# vim:set sw=2 et: