diff options
| author | Sidharth Kshatriya <sid.kshatriya@gmail.com> | 2023-11-17 03:18:29 +0530 |
|---|---|---|
| committer | Sidharth Kshatriya <sid.kshatriya@gmail.com> | 2023-11-17 03:19:14 +0530 |
| commit | be7e3ccc9e6f148e6c04a9480ac9dcf454a10faf (patch) | |
| tree | a89058283b43bc09ff74b9e23ff650fb34ae9b1d /src/main.cc | |
| parent | a42aa1e47e7f7d1a1b407ef6bb9c434fdab23f81 (diff) | |
changelog: escape `{` as `\\{` otherwise '%val{window_range}' appears as '%val' in version notes startup splash
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc index 09df5361..84e19f49 100644 --- a/src/main.cc +++ b/src/main.cc @@ -47,7 +47,7 @@ struct { } constexpr version_notes[] = { { 0, "» asynchronous {+u}shell-script-candidates{} completion\n" - "» {+b}%val{window_range}{} is now emitted as separate strings\n" + "» {+b}%val\\{window_range}{} is now emitted as separate strings\n" "» {+b}+{} only duplicates identical selections a single time\n" "» {+u}daemonize-session{} command\n" }, { |
