annotate runtime/indent/lisp.vim @ 31435:8fe720031437
v9.0.1050
patch 9.0.1050: using freed memory when assigning to variable twice
Commit: https://github.com/vim/vim/commit/6342e2c5a6570231aefabd8e34c2f2cb22f6927a
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 12 18:56:32 2022 +0000
patch 9.0.1050: using freed memory when assigning to variable twice
Problem: Using freed memory when assigning to variable twice.
Solution: Make copy of the list type. (closes https://github.com/vim/vim/issues/11691)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 12 Dec 2022 20:00:04 +0100 |
parents |
2198955f9e27 |
children |
|
rev |
line source |
233
|
1 " Vim indent file
|
|
2 " Language: Lisp
|
29659
|
3 " Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
|
|
4 " URL: http://sites.google.com/site/khorser/opensource/vim
|
3256
|
5 " Last Change: 2012 Jan 10
|
233
|
6
|
|
7 " Only load this indent file when no other was loaded.
|
|
8 if exists("b:did_indent")
|
|
9 finish
|
|
10 endif
|
|
11 let b:did_indent = 1
|
|
12
|
274
|
13 setlocal ai nosi
|
233
|
14
|
274
|
15 let b:undo_indent = "setl ai< si<"
|