diff options
author | Tom de Vries <tdevries@suse.de> | 2025-01-27 11:22:12 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-01-27 11:22:12 +0100 |
commit | c779771dfe9e4a35b7ba31d1a906dc8273707392 (patch) | |
tree | 9cee80887aa2f712190be1ea152b347f7446a965 | |
parent | bedfbe9f519af0b12279ffbe9b4e6ab2b7fd924d (diff) | |
download | fsf-binutils-gdb-c779771dfe9e4a35b7ba31d1a906dc8273707392.zip fsf-binutils-gdb-c779771dfe9e4a35b7ba31d1a906dc8273707392.tar.gz fsf-binutils-gdb-c779771dfe9e4a35b7ba31d1a906dc8273707392.tar.bz2 |
[gdb/doc] Fix qIsAddressTagged anchor
When building gdb with an older makeinfo (4.13), I run into:
...
gdb/doc/gdb.texinfo:44159: @anchor expected braces.
gdb/doc/gdb.texinfo:44159: ` {qIsAddressTagged}
...
This is related to this line:
...
@anchor {qIsAddressTagged}
...
Fix this by removing the space before the left brace.
Tested by rebuilding the documentation.
-rw-r--r-- | gdb/doc/gdb.texinfo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index b04cebe..b52fa66 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -44393,7 +44393,7 @@ tags found in the requested memory range. @cindex check if a given address is in a memory tagged region @cindex @samp{qIsAddressTagged} packet @item qIsAddressTagged:@var{address} -@anchor {qIsAddressTagged} +@anchor{qIsAddressTagged} Check if address @var{address} is in a memory tagged region; if it is, it's said to be @dfn{tagged}. The target is responsible for checking it, as this is architecture-specific. |