Skip to content

Commit

Permalink
tools: enclose the layout name in quotes
Browse files Browse the repository at this point in the history
Because otherwise the 'no' layout is treated as disagreement with whatever is to
be disagreed with. Fixed in YAML 1.2 but that's not universally supported.

Fixes #268
  • Loading branch information
whot committed Nov 8, 2021
1 parent e8cb431 commit 4834f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/registry-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ main(int argc, char **argv)
const char *variant = rxkb_layout_get_variant(l);
const char *brief = rxkb_layout_get_brief(l);

printf("- layout: %s\n"
printf("- layout: '%s'\n"
" variant: %s\n"
" brief: %s\n"
" description: %s\n",
Expand Down

0 comments on commit 4834f3d

Please sign in to comment.