Merge pull request #2687 from actionless/version-yes-no

chore(common: version): replace unicode symbols to yes/no
This commit is contained in:
mergify[bot] 2019-10-04 13:54:50 +00:00 committed by GitHub
commit 75c281e3af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -50,19 +50,19 @@ eprint_version(void)
(void) luaL_dostring(L, "return require('lgi.version')");
#ifdef WITH_DBUS
const char *has_dbus = "";
const char *has_dbus = "yes";
#else
const char *has_dbus = "";
const char *has_dbus = "no";
#endif
#ifdef WITH_XCB_ERRORS
const char *has_xcb_errors = "";
const char *has_xcb_errors = "yes";
#else
const char *has_xcb_errors = "";
const char *has_xcb_errors = "no";
#endif
#ifdef HAS_EXECINFO
const char *has_execinfo = "";
const char *has_execinfo = "yes";
#else
const char *has_execinfo = "";
const char *has_execinfo = "no";
#endif
printf("awesome %s (%s)\n"