changeset 10495:70bd087c47a9

(xbufobjfwd, xbuflocal, xwinconfig): Renamed from xbuffer_objfwd, xbuffer_local_value, xwindow_configuration since gdb doesn't allow underscores in macro names.
author Karl Heuer <kwzh@gnu.org>
date Fri, 20 Jan 1995 20:12:25 +0000
parents 1512a87a6451
children 7ffec1b5c86c
files src/.gdbinit
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/.gdbinit	Fri Jan 20 19:12:20 1995 +0000
+++ b/src/.gdbinit	Fri Jan 20 20:12:25 1995 +0000
@@ -115,17 +115,17 @@
 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 @@
 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