eval_frame now has a PyAPI-style name
diff --git a/Misc/gdbinit b/Misc/gdbinit
index b3b4946..145cc3a 100644
--- a/Misc/gdbinit
+++ b/Misc/gdbinit
@@ -65,7 +65,7 @@
 # print the entire Python call stack
 define pystack
     while $pc < Py_Main || $pc > Py_GetArgcArgv
-        if $pc > eval_frame && $pc < PyEval_EvalCodeEx
+        if $pc > PyEval_EvalFrame && $pc < PyEval_EvalCodeEx
 	    pyframe
         end
         up-silently 1