diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:37 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:37 -0800 |
commit | 710a97992705d67c3ded0d4b270c5978ce29b11f (patch) | |
tree | ddcb2f7a91cbb86ce582e74227768b7b898c29e1 /.gdbinit | |
parent | 50eb784bfcf15ee3c6b0b53d747db92673395040 (diff) | |
download | scm-710a97992705d67c3ded0d4b270c5978ce29b11f.tar.gz scm-710a97992705d67c3ded0d4b270c5978ce29b11f.zip |
Import Upstream version 5e4upstream/5e4
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -55,18 +55,18 @@ define verbose end define errobj - call iprin1(*loc_errobj, sys_protects[2], 1),(void)0 - call newline(sys_protects[2]),(void)0 + call scm_iprin1(*loc_errobj, sys_protects[2], 1),(void)0 + call scm_newline(sys_protects[2]),(void)0 end define scm - call iprin1($arg0, sys_protects[2], 1),(void)0 - call newline(sys_protects[2]),(void)0 + call scm_iprin1($arg0, sys_protects[2], 1),(void)0 + call scm_newline(sys_protects[2]),(void)0 end define code call scm_princode($arg0, scm_estk_ptr[2], sys_protects[2], 1),(void)0 - call newline(sys_protects[2]),(void)0 + call scm_newline(sys_protects[2]),(void)0 end define lload @@ -101,12 +101,12 @@ CDR of $ end define disp - call iprin1($arg0, sys_protects[2], 0) + call scm_iprin1($arg0, sys_protects[2], 0) echo \n end define writ - call iprin1($arg0, sys_protects[2], 1) + call scm_iprin1($arg0, sys_protects[2], 1) echo \n end |