~ubuntu-branches/ubuntu/trusty/librep/trusty

« back to all changes in this revision

Viewing changes to .gdbinit

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2001-11-13 15:06:22 UTC
  • Revision ID: james.westby@ubuntu.com-20011113150622-vgmgmk6srj3kldr3
Tags: upstream-0.15.2
ImportĀ upstreamĀ versionĀ 0.15.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: .gdbinit,v 1.3 1999/03/02 11:02:10 john Exp $
 
2
 
 
3
# prints $$ to standard output
 
4
define v
 
5
call rep_print_val(Fstdout_file(), $)
 
6
call rep_stream_putc(Fstdout_file(), '\n')
 
7
end
 
8
 
 
9
# prints the lisp backtrace
 
10
define lbt
 
11
call Fbacktrace(Fstdout_file())
 
12
call rep_stream_putc(Fstdout_file(), '\n')
 
13
end