summaryrefslogtreecommitdiff
path: root/lib/mu-script.cc
AgeCommit message (Collapse)Author
2023-07-23clang: avoid some build warningsDirk-Jan C. Binnema
2023-07-08migrate to fmt-based logging in some more placesDirk-Jan C. Binnema
and improve logging.
2023-07-05update to use fmt-based apisDirk-Jan C. Binnema
Not complete, but a first big stab converting users of Mu::Error and various g_warning & friends, format to the new libfmt-based APIs.
2022-11-17script: Rework guile script with new CLI supportDirk-Jan C. Binnema
Integrate the guile scripting a bit better into the mu cmdline. Rework the old script module for that.
2022-05-29script: avoid compiler warningDirk-Jan C. Binnema
2022-05-24guile: don't extern-c'ify libguileDirk-Jan C. Binnema
Already has it... seems to break compilation on some machines?
2022-05-21guile: re-enable the guile supportDirk-Jan C. Binnema
Update for the internal (Mu::Message) APIs. Update build.
2022-05-19lib: remove some dead code (mu-str/utils)Dirk-Jan C. Binnema
Remove unused library code; recycle some electrons.
2022-02-07build: fix some scan-build warningsDirk-Jan C. Binnema
2021-10-20clang-format: update c/cc coding styleDirk-Jan C. Binnema
Update all cc code using .clang-format; please do so as well for future PRs etc.; emacs has a handy 'clang-format' mode to make this automatic. For comparing old changes with git blame, we can disregard this one using --ignore-rev (see https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame )
2021-07-29mu: use g_strerror instead of strerrorDirk-Jan C. Binnema
Some #includes were missing for the latter (but only noticeable on some systems - e.g., build breaks on Cygwin). So let's replace with something that works equally everywhere. Fixes: #2060
2021-03-12mu: fix some compiler warningsDirk-Jan C. Binnema
and whitespace.
2020-11-15scripts: using GUILE_BINARY from configureDirk-Jan C. Binnema
I.e., do not hard-code guile-2.2, it may be guile-3.0 instead.
2020-11-07use c++ for some more sourcesDirk-Jan C. Binnema
Do a (superficial) port to c++ of some of the c sources. Update deps. Fix a few compiler warnings.