aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-05-31 10:13:17 -0600
committerTom Tromey <tromey@adacore.com>2024-11-11 07:44:27 -0700
commitbf0a21777530ff364a7f30a79e1fd3616e5a6c7e (patch)
tree6a949e64252fc0219ee6d097f08e83ad556d552e /gdb
parent218ee1660d139d945c8517775a4813107a174664 (diff)
downloadbinutils-bf0a21777530ff364a7f30a79e1fd3616e5a6c7e.zip
binutils-bf0a21777530ff364a7f30a79e1fd3616e5a6c7e.tar.gz
binutils-bf0a21777530ff364a7f30a79e1fd3616e5a6c7e.tar.bz2
Call gdbpy_fix_doc_string_indentation for function help
If you invoke "help function _caller_is", you'll see that the help text is indented strangely. The fix for this is to add a call to gdbpy_fix_doc_string_indentation in the appropriate spot, as is already done for Python commands and parameters.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/python/py-function.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/python/py-function.c b/gdb/python/py-function.c
index 58ae0d0..2b65d8b 100644
--- a/gdb/python/py-function.c
+++ b/gdb/python/py-function.c
@@ -120,6 +120,8 @@ fnpy_init (PyObject *self, PyObject *args, PyObject *kwds)
docstring = python_string_to_host_string (ds_obj.get ());
if (docstring == NULL)
return -1;
+ docstring
+ = gdbpy_fix_doc_string_indentation (std::move (docstring));
}
}
}