summaryrefslogtreecommitdiffstats
path: root/runtime/indent
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-04-25 22:42:05 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-25 22:42:05 +0200
commit98b12ede31754071f36fb7a73324456c1ee7b89c (patch)
treecf0d620935e778293a98fb62dff0cfbfb83cc15a /runtime/indent
parent38b9f45253f582ab63174376e321092f8a9a7808 (diff)
runtime(asm): fix undefined variable in indent plugin
It's an indent script, so we need to set the b:undo_indent variable instead of the b:undo_ftplugin var. fixes: #14602 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/indent')
-rw-r--r--runtime/indent/asm.vim11
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/indent/asm.vim b/runtime/indent/asm.vim
index 7f848c7b5f..4efa766d4d 100644
--- a/runtime/indent/asm.vim
+++ b/runtime/indent/asm.vim
@@ -1,8 +1,9 @@
" Vim indent file
-" Language: asm
-" Maintainer: Philip Jones <philj56@gmail.com>
-" Upstream: https://github.com/philj56/vim-asm-indent
-" Latest Revision: 2017-07-01
+" Language: asm
+" Maintainer: Philip Jones <philj56@gmail.com>
+" Upstream: https://github.com/philj56/vim-asm-indent
+" Last Change: 2017-Jul-01
+" 2024 Apr 25 by Vim Project (undo_indent)
if exists("b:did_indent")
finish
@@ -12,7 +13,7 @@ let b:did_indent = 1
setlocal indentexpr=s:getAsmIndent()
setlocal indentkeys=<:>,!^F,o,O
-let b:undo_ftplugin .= "indentexpr< indentkeys<"
+let b:undo_indent = "indentexpr< indentkeys<"
function! s:getAsmIndent()
let line = getline(v:lnum)