aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-20 20:12:25 +0000
committerKarl Heuer1995-01-20 20:12:25 +0000
commit029c56f6adfe39a015740f2bae38ab7ec4747d3d (patch)
treeff9d2cd30c97846fdd8894494f6c3a10812fcb2d /src
parentbe6f02af4fb15402973875c664f6f93ca345d921 (diff)
downloademacs-029c56f6adfe39a015740f2bae38ab7ec4747d3d.tar.gz
emacs-029c56f6adfe39a015740f2bae38ab7ec4747d3d.zip
(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')
-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
115Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value. 115Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
116end 116end
117 117
118define xbuffer_objfwd 118define xbufobjfwd
119print (struct Lisp_Buffer_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits) 119print (struct Lisp_Buffer_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits)
120end 120end
121document xbuffer_objfwd 121document xbufobjfwd
122Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value. 122Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
123end 123end
124 124
125define xbuffer_local_value 125define xbuflocal
126print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits) 126print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits)
127end 127end
128document xbuffer_local_value 128document xbuflocal
129Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value. 129Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
130end 130end
131 131
@@ -176,10 +176,10 @@ document xframe
176Print $ as a frame pointer, assuming it is an Emacs Lisp frame value. 176Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
177end 177end
178 178
179define xwindow_configuration 179define xwinconfig
180print (struct save_window_data *) (($ & 0x0fffffff) | $data_seg_bits) 180print (struct save_window_data *) (($ & 0x0fffffff) | $data_seg_bits)
181end 181end
182document xwindow_configuration 182document xwinconfig
183Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value. 183Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
184end 184end
185 185