diff options
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 47b7e1d99be..d95249aa5ab 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -847,7 +847,7 @@ Completion ignores case if the ambient value of\n\ | |||
| 847 | { | 847 | { |
| 848 | CHECK_NUMBER (position, 0); | 848 | CHECK_NUMBER (position, 0); |
| 849 | /* Convert to distance from end of input. */ | 849 | /* Convert to distance from end of input. */ |
| 850 | pos = XINT (position) - 1 - XSTRING (init)->size; | 850 | pos = XINT (position) - XSTRING (init)->size; |
| 851 | } | 851 | } |
| 852 | } | 852 | } |
| 853 | 853 | ||