• R/O
  • SSH

vim: コミット

Mirror of the Vim source from https://github.com/vim/vim


コミットメタ情報

リビジョンc18d00494b606debcef1115eebff8b38af7368dd (tree)
日時2020-08-02 04:15:04
作者Bram Moolenaar <Bram@vim....>
コミッターBram Moolenaar

ログメッセージ

patch 8.2.1348: build failure without the eval feature

Commit: https://github.com/vim/vim/commit/e4218b9416bdcd78b9779a06258198573a0c369e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 1 21:11:38 2020 +0200

patch 8.2.1348: build failure without the eval feature
Problem: Build failure without the eval feature.
Solution: Add #ifdef.

変更サマリ

差分

diff -r 72b5304e75a5 -r c18d00494b60 src/ex_docmd.c
--- a/src/ex_docmd.c Sat Aug 01 21:00:05 2020 +0200
+++ b/src/ex_docmd.c Sat Aug 01 21:15:04 2020 +0200
@@ -8581,7 +8581,6 @@
85818581 (long)(current_sctx.sc_lnum + SOURCING_LNUM));
85828582 result = strbuf;
85838583 break;
8584-#endif
85858584
85868585 case SPEC_SID:
85878586 if (current_sctx.sc_sid <= 0)
@@ -8592,6 +8591,7 @@
85928591 sprintf((char *)strbuf, "<SNR>%d_", current_sctx.sc_sid);
85938592 result = strbuf;
85948593 break;
8594+#endif
85958595
85968596 #ifdef FEAT_CLIENTSERVER
85978597 case SPEC_CLIENT: // Source of last submitted input
diff -r 72b5304e75a5 -r c18d00494b60 src/version.c
--- a/src/version.c Sat Aug 01 21:00:05 2020 +0200
+++ b/src/version.c Sat Aug 01 21:15:04 2020 +0200
@@ -755,6 +755,8 @@
755755 static int included_patches[] =
756756 { /* Add new patch number below this line */
757757 /**/
758+ 1348,
759+/**/
758760 1347,
759761 /**/
760762 1346,
旧リポジトリブラウザで表示