# HG changeset patch # User Nick Roberts # Date 1142810140 0 # Node ID 5df134d9ab7f706f0e4083d51daa7a1ae62bed70 # Parent e8f1504847cb500648198044706ef1f25d0be0c7 (gdb-stopped): Even when there is no source annotation ensure gud-overlay-arrow-position is redisplayed. diff -r e8f1504847cb -r 5df134d9ab7f lisp/progmodes/gdb-ui.el --- a/lisp/progmodes/gdb-ui.el Sun Mar 19 23:14:32 2006 +0000 +++ b/lisp/progmodes/gdb-ui.el Sun Mar 19 23:15:40 2006 +0000 @@ -1318,6 +1318,8 @@ It is just like `gdb-stopping', except that if we already set the output sink to `user' in `gdb-stopping', that is fine." (setq gud-running nil) + (unless (or gud-overlay-arrow-position gud-last-frame) + (gud-display-line (car gud-last-last-frame) (cdr gud-last-last-frame))) (unless (member gdb-inferior-status '("exited" "signal")) (setq gdb-inferior-status "stopped") (gdb-force-mode-line-update gdb-inferior-status))