diff options
author | Tom Tromey <tromey@redhat.com> | 2011-10-19 17:51:00 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-10-19 17:51:00 +0000 |
commit | fedd4e5740b2b6d2f60f1dded9eeeacd3cec67b3 (patch) | |
tree | 616a26f40223fc44e25c3f8f18d6de54752feef6 /gdb/doc | |
parent | 99374fd95e942049103b51b4d125c6a4adc38c50 (diff) | |
download | gdb-fedd4e5740b2b6d2f60f1dded9eeeacd3cec67b3.tar.gz |
* gdb.texinfo (Commands In Python): Add missing "@"s.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index e97cd8b13c6..83fa22fd696 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2011-10-19 Tom Tromey <tromey@redhat.com> + + * gdb.texinfo (Commands In Python): Add missing "@"s. + 2011-10-13 Kevin Pouget <kevin.pouget@st.com> PR python/13285 Document named constants for frame unwind stop reasons diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 0aa90eb4958..c69bddbbca6 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -22752,7 +22752,7 @@ You can implement new @value{GDBN} CLI commands in Python. A CLI command is implemented using an instance of the @code{gdb.Command} class, most commonly using a subclass. -@defun Command.__init__ (name, @var{command_class} @r{[}, var{completer_class} @r{[}, var{prefix}@r{]]}) +@defun Command.__init__ (name, @var{command_class} @r{[}, @var{completer_class} @r{[}, @var{prefix}@r{]]}) The object initializer for @code{Command} registers the new command with @value{GDBN}. This initializer is normally invoked from the subclass' own @code{__init__} method. |