comparison src/.gdbinit @ 1789:2c65d1a8af09

* .gdbinit: Add "-geometry +0+0" to default args. (xscrollbar): New command.
author Jim Blandy <jimb@redhat.com>
date Thu, 14 Jan 1993 15:36:25 +0000
parents 1f7d20c707c0
children 80482f2d54bf
comparison
equal deleted inserted replaced
1788:aaccd635fb71 1789:2c65d1a8af09
135 end 135 end
136 document xsubr 136 document xsubr
137 Print the address of the subr which the Lisp_Object $ points to. 137 Print the address of the subr which the Lisp_Object $ points to.
138 end 138 end
139 139
140 define xscrollbar
141 print (struct scrollbar *) (($ & 0x00ffffff) | $data_seg_bits)
142 output *$
143 echo \n
144 end
145 document xsubr
146 Print $ as a scrollbar pointer.
147 end
148
140 set print pretty on 149 set print pretty on
141 150
142 unset environment TERMCAP 151 unset environment TERMCAP
143 unset environment TERM 152 unset environment TERM
144 echo TERMCAP and TERM environment variables unset.\n 153 echo TERMCAP and TERM environment variables unset.\n
145 show environment DISPLAY 154 show environment DISPLAY
146 set args -q 155 set args -q -geometry +0+0
147 156
148 # Don't let abort actually run, as it will make 157 # Don't let abort actually run, as it will make
149 # stdio stop working and therefore the `pr' command below as well. 158 # stdio stop working and therefore the `pr' command below as well.
150 break abort 159 break abort
151 160