diff src/.gdbinit @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000 (2003-02-04)
parents 09d2b243ebcb
children 695cf19ef79e d7ddb3e565de
line wrap: on
line diff
--- a/src/.gdbinit	Tue Feb 04 13:30:45 2003 +0000
+++ b/src/.gdbinit	Tue Feb 04 14:56:31 2003 +0000
@@ -334,7 +334,7 @@
 
 define xbacktrace
   set $bt = backtrace_list
-  while $bt 
+  while $bt
     set $type = (enum Lisp_Type) ((*$bt->function >> gdb_valbits) & 0x7)
     if $type == Lisp_Symbol
       xprintsym *$bt->function
@@ -353,7 +353,7 @@
 end
 document xbacktrace
   Print a backtrace of Lisp function calls from backtrace_list.
-  Set a breakpoint at Fsignal and call this to see from where 
+  Set a breakpoint at Fsignal and call this to see from where
   an error was signaled.
 end