]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(context,typeset): Correct whitespace error in Log()'s 'edit' command
authorLifepillar <lifepillar@lifepillar.me>
Wed, 20 May 2026 18:20:04 +0000 (18:20 +0000)
committerChristian Brabandt <cb@256bit.org>
Wed, 20 May 2026 18:20:04 +0000 (18:20 +0000)
Also drop Last Change headers as this commit comes from the plugin's
maintainer.

related: #20242
related: #20244
closes:  #20263

Signed-off-by: Lifepillar <lifepillar@lifepillar.me>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/context.vim
runtime/autoload/typeset.vim

index 6b013f2a7b6620059940ce1e251222a2da5ef731..8b65bb9a62d30ca8e9369ab470daf5c8dca9e9c4 100644 (file)
@@ -3,9 +3,7 @@ vim9script
 # Language:           ConTeXt typesetting engine
 # Maintainer:         Nicola Vitacolonna <nvitacolonna@gmail.com>
 # Former Maintainers: Nikolai Weibull <now@bitwi.se>
-# Latest Revision:    2026 Feb 03
-# Last Change:
-# 2026 Mar 30 by Vim project: Use fnameescape for the Log command
+# Latest Revision:    2026 May 20
 
 # Typesetting {{{
 import autoload './typeset.vim'
@@ -35,7 +33,7 @@ export def Log(bufname: string)
   var logpath = typeset.LogPath(bufname)
 
   if filereadable(logpath)
-    execute 'edit' .. fnameescape(typeset.LogPath(bufname))
+    execute 'edit' fnameescape(typeset.LogPath(bufname))
     return
   endif
 
index 11974f1721b86cb8fe2d7284822a95a024106574..0cb6149f5b35c443506b39a5c9ab5c3409c9492c 100644 (file)
@@ -2,10 +2,7 @@ vim9script
 
 # Language:           Generic TeX typesetting engine
 # Maintainer:         Nicola Vitacolonna <nvitacolonna@gmail.com>
-# Latest Revision:    2026 Feb 19
-# Last Change:
-# 2026 Mar 30 by Vim project: Use fnameescape for the ProcessOutput command
-# 2026 May 19 by Vim project: missing space in :lcd command #20244
+# Latest Revision:    2026 May 20
 
 # Constants and helpers {{{
 const SLASH = !exists("+shellslash") || &shellslash ? '/' : '\'