From 1221135289306333d11db25ab20cbbd21ceec630 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 23 Apr 2020 14:49:26 +0200 Subject: [PATCH] gdbinit: Use proper define syntax (GH-19557) Using `def` rather than `define` results in: Ambiguous command "def pu": define, define-prefix. Automerge-Triggered-By: @csabella --- Misc/gdbinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/gdbinit b/Misc/gdbinit index 45e79fcf6f4..e8f62ba6476 100644 --- a/Misc/gdbinit +++ b/Misc/gdbinit @@ -160,7 +160,7 @@ document pystackv Print the entire Python call stack - verbose mode end -def pu +define pu set $uni = $arg0 set $i = 0 while (*$uni && $i++<100)