mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
taglist: Fix broken empty set character in code
Previous one was not a valid ASCII empty set character. 'tig' and 'git log -p' couldn't represent it as expected.
This commit is contained in:
parent
0505bd76a1
commit
d8b8a13285
1 changed files with 6 additions and 6 deletions
|
@ -51,12 +51,12 @@ G_BEGIN_DECLS
|
|||
*
|
||||
* | merge mode | A + B | A + !B | !A + B | !A + !B |
|
||||
* | ----------- | ----- | ------ | ------ | ------- |
|
||||
* | REPLACE_ALL | B | ∅ | B | ∅ |
|
||||
* | REPLACE | B | A | B | ∅ |
|
||||
* | APPEND | A, B | A | B | ∅ |
|
||||
* | PREPEND | B, A | A | B | ∅ |
|
||||
* | KEEP | A | A | B | ∅ |
|
||||
* | KEEP_ALL | A | A | ∅ | ∅ |
|
||||
* | REPLACE_ALL | B | ø | B | ø |
|
||||
* | REPLACE | B | A | B | ø |
|
||||
* | APPEND | A, B | A | B | ø |
|
||||
* | PREPEND | B, A | A | B | ø |
|
||||
* | KEEP | A | A | B | ø |
|
||||
* | KEEP_ALL | A | A | ø | ø |
|
||||
*/
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in a new issue