]> git.eshelyaron.com Git - emacs.git/commitdiff
(xbufobjfwd, xbuflocal, xwinconfig):
authorKarl Heuer <kwzh@gnu.org>
Fri, 20 Jan 1995 20:12:25 +0000 (20:12 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 20 Jan 1995 20:12:25 +0000 (20:12 +0000)
Renamed from xbuffer_objfwd, xbuffer_local_value, xwindow_configuration
since gdb doesn't allow underscores in macro names.

src/.gdbinit

index 2b5d9bade63d58c01f208df486d4e71027b4d569..cb5137239692637c3fdfb8e8cc93867d7d8d1ada 100644 (file)
@@ -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