[binutils-gdb] [gdb] Fix codespell false positive by string splitting

Tom de Vries via Gdb-cvs <[email protected]> Mon, 15 Jun 2026 11:24:37 +0000 (GMT)
Newsgroups gmane.comp.gdb.cvs
Message-ID <[email protected]>
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=a25ca583c7ce7b4dc88aca1cb00a91d0314aaf73

commit a25ca583c7ce7b4dc88aca1cb00a91d0314aaf73
Author: Tom de Vries <[email protected]>
Date:   Mon Jun 15 13:24:08 2026 +0200

    [gdb] Fix codespell false positive by string splitting
    
    Fix codespell false positive in gdb dir, by string splitting.

Diff:
---
 gdb/ada-lang.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 306fd4cdc8b..564e4d6194a 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -9370,7 +9370,7 @@ ada_aggregate_component::dump (ui_file *stream, int depth)
   gdb_printf (stream, _("%*sAggregate\n"), depth, "");
   if (m_base != nullptr)
     {
-      gdb_printf (stream, _("%*swith delta\n"), depth + 1, "");
+      gdb_printf (stream, _("%*s" "with delta\n"), depth + 1, "");
       m_base->dump (stream, depth + 2);
     }
   for (const auto &item : m_components)