vi: fix '' command (goto to prev context)
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 28 Sep 2016 14:23:05 +0000 (16:23 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 28 Sep 2016 14:23:05 +0000 (16:23 +0200)
commit61fcc8c78174f92fbdad0a7f86b5086619b05ed9
tree59294ba81ba1393d9ba02247d8d83cb95d953625
parentb09ab448b8553742ce0bf1a7df806dcac84bca7c
vi: fix '' command (goto to prev context)

The '' command in vi doesn't currently work because after the first
apostrophe is read, the next character is converted to an integer
between 0 and 25 inclusive (for indexing the array of marks). The
comparison of the converted character with an apostrophe therefore never
succeeds, meaning that '' doesn't do anything.

Based on the patch by Francis Rounds <francis.rounds@4bridgeworks.com>

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/vi.c