From f9ddcbd9aeecaed9042a7ce729a9efcbc663e8a7 Mon Sep 17 00:00:00 2001 From: Aggelos Tselios Date: Wed, 21 Jan 2026 19:51:58 +0200 Subject: [PATCH] Xext: namespace: Properly document parseLine() function The previous comment made no sense. Add a proper comment to document the function instead. Signed-off-by: Aggelos Tselios --- Xext/namespace/config.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Xext/namespace/config.c b/Xext/namespace/config.c index d1bda95630..5b9c787233 100644 --- a/Xext/namespace/config.c +++ b/Xext/namespace/config.c @@ -63,10 +63,9 @@ static int hex2bin(const char *in, char *out) return 1; } -/* - * loadConfig - * - * Load the namespace config +/** + * @brief Parse a single line from the configuration file, + * ignoring comments and newlines. Prints a warning if it finds an unknown token. */ static void parseLine(char *line, struct Xnamespace **walk_ns) {