summaryrefslogtreecommitdiff
path: root/src/.gdbinit
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-01-20 20:12:25 +0000
committerKarl Heuer <kwzh@gnu.org>1995-01-20 20:12:25 +0000
commit029c56f6adfe39a015740f2bae38ab7ec4747d3d (patch)
treeff9d2cd30c97846fdd8894494f6c3a10812fcb2d /src/.gdbinit
parentbe6f02af4fb15402973875c664f6f93ca345d921 (diff)
downloademacs-029c56f6adfe39a015740f2bae38ab7ec4747d3d.tar.gz
(xbufobjfwd, xbuflocal, xwinconfig):
Renamed from xbuffer_objfwd, xbuffer_local_value, xwindow_configuration since gdb doesn't allow underscores in macro names.
Diffstat (limited to 'src/.gdbinit')
-rw-r--r--src/.gdbinit12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index 2b5d9bade63..cb513723969 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -115,17 +115,17 @@ document xobjfwd
Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
end
-define xbuffer_objfwd
+define xbufobjfwd
print (struct Lisp_Buffer_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits)
end
-document xbuffer_objfwd
+document xbufobjfwd
Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
end
-define xbuffer_local_value
+define xbuflocal
print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits)
end
-document xbuffer_local_value
+document xbuflocal
Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
end
@@ -176,10 +176,10 @@ document xframe
Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
end
-define xwindow_configuration
+define xwinconfig
print (struct save_window_data *) (($ & 0x0fffffff) | $data_seg_bits)
end
-document xwindow_configuration
+document xwinconfig
Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
end