diff options
| author | Karl Heuer | 1995-01-20 20:12:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-20 20:12:25 +0000 |
| commit | 029c56f6adfe39a015740f2bae38ab7ec4747d3d (patch) | |
| tree | ff9d2cd30c97846fdd8894494f6c3a10812fcb2d /src | |
| parent | be6f02af4fb15402973875c664f6f93ca345d921 (diff) | |
| download | emacs-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/.gdbinit | 12 |
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 | |||
| 115 | Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value. | 115 | Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value. |
| 116 | end | 116 | end |
| 117 | 117 | ||
| 118 | define xbuffer_objfwd | 118 | define xbufobjfwd |
| 119 | print (struct Lisp_Buffer_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits) | 119 | print (struct Lisp_Buffer_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits) |
| 120 | end | 120 | end |
| 121 | document xbuffer_objfwd | 121 | document xbufobjfwd |
| 122 | Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value. | 122 | Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value. |
| 123 | end | 123 | end |
| 124 | 124 | ||
| 125 | define xbuffer_local_value | 125 | define xbuflocal |
| 126 | print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits) | 126 | print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits) |
| 127 | end | 127 | end |
| 128 | document xbuffer_local_value | 128 | document xbuflocal |
| 129 | Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value. | 129 | Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value. |
| 130 | end | 130 | end |
| 131 | 131 | ||
| @@ -176,10 +176,10 @@ document xframe | |||
| 176 | Print $ as a frame pointer, assuming it is an Emacs Lisp frame value. | 176 | Print $ as a frame pointer, assuming it is an Emacs Lisp frame value. |
| 177 | end | 177 | end |
| 178 | 178 | ||
| 179 | define xwindow_configuration | 179 | define xwinconfig |
| 180 | print (struct save_window_data *) (($ & 0x0fffffff) | $data_seg_bits) | 180 | print (struct save_window_data *) (($ & 0x0fffffff) | $data_seg_bits) |
| 181 | end | 181 | end |
| 182 | document xwindow_configuration | 182 | document xwinconfig |
| 183 | Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value. | 183 | Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value. |
| 184 | end | 184 | end |
| 185 | 185 | ||