mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
README: Fix list paragraphs
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1770>
This commit is contained in:
parent
dcbd96df38
commit
acbaccd5c9
34
README.md
34
README.md
@ -46,16 +46,16 @@ with some additions:
|
|||||||
|
|
||||||
- Usage of g_autofree and g_autoptr are encouraged. The style used is
|
- Usage of g_autofree and g_autoptr are encouraged. The style used is
|
||||||
|
|
||||||
```c
|
```c
|
||||||
g_autofree char *text = NULL;
|
g_autofree char *text = NULL;
|
||||||
g_autoptr (MetaSomeThing) thing = NULL;
|
g_autoptr (MetaSomeThing) thing = NULL;
|
||||||
|
|
||||||
text = g_strdup_printf ("The text: %d", a_number);
|
text = g_strdup_printf ("The text: %d", a_number);
|
||||||
thing = g_object_new (META_TYPE_SOME_THING,
|
thing = g_object_new (META_TYPE_SOME_THING,
|
||||||
"text", text,
|
"text", text,
|
||||||
NULL);
|
NULL);
|
||||||
thinger_use_thing (rocket, thing);
|
thinger_use_thing (rocket, thing);
|
||||||
```
|
```
|
||||||
|
|
||||||
- Declare variables at the top of the block they are used, but avoid
|
- Declare variables at the top of the block they are used, but avoid
|
||||||
non-trivial logic among variable declarations. Non-trivial logic can be
|
non-trivial logic among variable declarations. Non-trivial logic can be
|
||||||
@ -65,14 +65,14 @@ with some additions:
|
|||||||
- Instead of boolean arguments in functions, prefer enums or flags when
|
- Instead of boolean arguments in functions, prefer enums or flags when
|
||||||
they're more expressive. The naming convention for flags is
|
they're more expressive. The naming convention for flags is
|
||||||
|
|
||||||
```c
|
```c
|
||||||
typedef _MetaSomeThingFlags
|
typedef _MetaSomeThingFlags
|
||||||
{
|
{
|
||||||
META_SOME_THING_FLAG_NONE = 0,
|
META_SOME_THING_FLAG_NONE = 0,
|
||||||
META_SOME_THING_FLAG_ALTER_REALITY = 1 << 0,
|
META_SOME_THING_FLAG_ALTER_REALITY = 1 << 0,
|
||||||
META_SOME_THING_FLAG_MANIPULATE_PERCEPTION = 1 << 1,
|
META_SOME_THING_FLAG_MANIPULATE_PERCEPTION = 1 << 1,
|
||||||
} MetaSomeThingFlags;
|
} MetaSomeThingFlags;
|
||||||
```
|
```
|
||||||
|
|
||||||
- Use `g_new0()` etc instead of `g_slice_new0()`.
|
- Use `g_new0()` etc instead of `g_slice_new0()`.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user