-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encode if we have readline in workspaces #2720
Encode if we have readline in workspaces #2720
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2720 +/- ##
==========================================
+ Coverage 75.75% 75.75% +<.01%
==========================================
Files 478 478
Lines 241495 241501 +6
==========================================
+ Hits 182938 182944 +6
Misses 58557 58557
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change seems plausible over all, and fixes the issue.
But I'll not approve any PRs anymore w/o sensible labels; though I'll not complain if somebody else does and merges this PR (but then I hope they will also help us create the release notes for 4.10?)
src/saveload.c
Outdated
{ | ||
static Char SyKernelDescription[256]; | ||
strcpy(SyKernelDescription, SyKernelVersion); | ||
if(SyUseReadline) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-format? add issue labels?
Perhaps we can setup a bot to point this out automatically, it's a bit tiresome. Alternatively, we can also agree to not bother about clang-format anymore, and just let everybody format whichever way they feel like?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Id be happy with a bot. Maybe i can write a git script to run on my own machine that clangformats bevore each commit. (I actually do use formst on save on other projects i work on, but that reformats the whole file, so is no good for gap).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now reformatted
f42a0fd
to
6543fc1
Compare
Encode if readline is enabled in workspaces. Fixes #1079 and #1089
Also, will (hopefully) make it easier in future to add info to workspaces in a backwards compatible way (at least, backwards compatible that the errors will be reasonable when the workspace doesn't load).