aboutsummaryrefslogtreecommitdiffstats
path: root/src/.gdbinit
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2003-02-04 14:56:31 +0000
committerJuanma Barranquero <[email protected]>2003-02-04 14:56:31 +0000
commit177c0ea74342272645959b82cf219faa0b3dba16 (patch)
tree44e22b210a9904eab25a66d12e708804b671df75 /src/.gdbinit
parentdb95369be096960245dd38678f68464627698678 (diff)
Trailing whitespace deleted.
Diffstat (limited to 'src/.gdbinit')
-rw-r--r--src/.gdbinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index 705a6e836a..ca6f5f255a 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -334,7 +334,7 @@ end
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 @@ define xbacktrace
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