aplat

Documents structurés pour Unix
git clone git://git.asteride.xyz/~ldp/aplat.git
Journaux | Fichiers | Références | LISEZ-MOI | LICENCE

commit 654eac8c967732e2f512c4b9546c6bc622056a1c
parent 71eaf3c688f7a1fb36230bf22d524d6469b632fe
Auteur: Selve <selve@asteride.xyz>
Date:   Wed, 27 Sep 2023 18:18:25 -0400

correction d'un problème

Un ':' n'était pas affiché lorsqu'une condition terminait le premier champ.

Diffstat:
Mexclure.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/exclure.c b/exclure.c @@ -269,9 +269,7 @@ aff_etq(struct meta *m) if (*(c+1) == '#') { for (c += 2; *c != ':'; c++) ; - if (*(c+1) == '\0') { - break; - } else { + if (*(c+1) != '\0') { c--; continue; }