annotate runtime/indent/scheme.vim @ 28283:2fd2ce8a556c
v8.2.4667
patch 8.2.4667: expandcmd() fails on an error
Commit: https://github.com/vim/vim/commit/5018a836c030988944a9bbe2fd2e538bf5261a72
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sat Apr 2 21:12:21 2022 +0100
patch 8.2.4667: expandcmd() fails on an error
Problem: expandcmd() fails on an error.
Solution: On failure return the command unmodified. (yegappan Lakshmanan,
closes #10063)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 02 Apr 2022 22:15:03 +0200 |
parents |
167a030448fa |
children |
738ff39db93f |
rev |
line source |
321
|
1 " Vim indent file
|
13231
|
2 " Language: Scheme
|
|
3 " Last Change: 2018 Jan 31
|
|
4 " Maintainer: Evan Hanson <evhan@foldling.org>
|
|
5 " Previous Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
|
|
6 " URL: https://foldling.org/vim/indent/scheme.vim
|
357
|
7
|
|
8 " Only load this indent file when no other was loaded.
|
|
9 if exists("b:did_indent")
|
|
10 finish
|
|
11 endif
|
321
|
12
|
13231
|
13 " Use the Lisp indenting
|
321
|
14 runtime! indent/lisp.vim
|