# HG changeset patch # User Richard M. Stallman # Date 712294770 0 # Node ID b2fef2e0c7614e4b74d74bba3a79e2cb33700832 # Parent 44ce50dadb7f9d12351d31315771121f9fd7a878 *** empty log message *** diff -r 44ce50dadb7f -r b2fef2e0c761 lisp/gud.el --- a/lisp/gud.el Tue Jul 28 02:14:03 1992 +0000 +++ b/lisp/gud.el Tue Jul 28 03:39:30 1992 +0000 @@ -152,11 +152,10 @@ (gud-visit-file . gud-gdb-visit-file) (gud-set-break . gud-gdb-set-break))) - (gud-def gud-step "step" "\C-cs" "Step one source line with display") - (gud-def gud-stepi "stepi" "\C-ci" "Step one instruction with display") - (gud-def gud-next "next" "\C-cn" "Step one line (skip functions)") + (gud-def gud-step "step" "\C-c\C-s" "Step one source line with display") + (gud-def gud-stepi "stepi" "\C-c\C-i" "Step one instruction with display") + (gud-def gud-next "next" "\C-c\C-n" "Step one line (skip functions)") (gud-def gud-cont "cont" "\C-c\C-c" "Continue with display") - (gud-def gud-cont "cont" "\C-cc" "Continue with display") (gud-def gud-finish "finish" "\C-c\C-f" "Finish executing current function") (gud-def gud-up "up" "\C-c<" "Up N stack frames (numeric arg)") @@ -204,11 +203,10 @@ (gud-visit-file . gud-sdb-visit-file) (gud-set-break . gud-sdb-set-break))) - (gud-def gud-step "s" "\C-cs" "Step one source line with display") - (gud-def gud-stepi "i" "\C-ci" "Step one instruction with display") - (gud-def gud-next "S" "\C-cn" "Step one source line (skip functions)") + (gud-def gud-step "s" "\C-c\C-s" "Step one source line with display") + (gud-def gud-stepi "i" "\C-c\C-i" "Step one instruction with display") + (gud-def gud-next "S" "\C-c\C-n" "Step one source line (skip functions)") (gud-def gud-cont "c" "\C-c\C-c" "Continue with display") - (gud-def gud-cont "c" "\C-cc" "Continue with display") (gud-common-init path) @@ -249,11 +247,10 @@ (gud-visit-file . gud-dbx-visit-file) (gud-set-break . gud-dbx-set-break))) - (gud-def gud-step "step" "\C-cs" "Step one source line with display") - (gud-def gud-stepi "stepi" "\C-ci" "Step one instruction with display") - (gud-def gud-next "next" "\C-cn" "Step one line (skip functions)") + (gud-def gud-step "step" "\C-c\C-s" "Step one source line with display") + (gud-def gud-stepi "stepi" "\C-c\C-i" "Step one instruction with display") + (gud-def gud-next "next" "\C-c\C-n" "Step one line (skip functions)") (gud-def gud-cont "cont" "\C-c\C-c" "Continue with display") - (gud-def gud-cont "cont" "\C-c" "Continue with display") (gud-def gud-up "up" "\C-c<" "Up N stack frames (numeric arg)") (gud-def gud-down "down" "\C-c>" "Down N stack frames (numeric arg)")