Mercurial > vim
view src/po/cleanup.vim @ 24240:2194227d034a v8.2.2661
patch 8.2.2661: leaking memory when looping over a string
Commit: https://github.com/vim/vim/commit/bb5d87c8504588be9c9d2fecc5b6455a2b2f6201
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Mar 26 22:15:26 2021 +0100
patch 8.2.2661: leaking memory when looping over a string
Problem: Leaking memory when looping over a string.
Solution: Free the memory.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 26 Mar 2021 22:30:02 +0100 |
parents | 325a1dbf662d |
children | 5d26e9a7f8f2 |
line wrap: on
line source
" Vim script to cleanup a .po file: " - Remove line numbers (avoids that diffs are messy). " - Comment-out fuzzy and empty messages. " - Make sure there is a space before the string (required for Solaris). " Requires Vim 6.0 or later (because of multi-line search patterns). " Disable diff mode, because it makes this very slow let s:was_diff = &diff setl nodiff " untranslated message preceded by c-format or comment silent g/^#, c-format\n#/.d silent g/^#\..*\n#/.d silent g/^#[:~] /d silent g/^#, fuzzy\(, .*\)\=\nmsgid ""\@!/.+1,/^$/-1s/^/#\~ / silent g/^msgstr"/s//msgstr "/ silent g/^msgid"/s//msgid "/ silent g/^msgstr ""\(\n"\)\@!/?^msgid?,.s/^/#\~ / silent g/^\n\n\n/.d if s:was_diff setl diff endif