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:
Seungha Yang 2019-05-30 22:29:23 +09:00 committed by Tim-Philipp Müller
parent 0505bd76a1
commit d8b8a13285

View file

@ -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 {