User: james
Date: 06/05/17 00:55:23
Modified: packages/xemacs-packages/debug ChangeLog gud.el
Log:
Fix misuse of comint-input-sender by gud. See xemacs-patches message with ID
<m3lkt5aj08.fsf(a)jerrypc.cs.usu.edu>.
Revision Changes Path
1.24 +5 -0 XEmacs/packages/xemacs-packages/debug/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/debug/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -p -r1.23 -r1.24
--- ChangeLog 2003/10/31 16:43:11 1.23
+++ ChangeLog 2006/05/16 22:55:21 1.24
@@ -1,3 +1,8 @@
+2006-05-13 Jerry James <james(a)xemacs.org>
+
+ * gud.el (gdb-call-showing-gud): comint-input-sender is a variable
+ referring to a function, not a function.
+
2003-10-31 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.17 released.
1.7 +2 -1 XEmacs/packages/xemacs-packages/debug/gud.el
Index: gud.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/debug/gud.el,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- gud.el 2001/01/22 07:49:30 1.6
+++ gud.el 2006/05/16 22:55:21 1.7
@@ -1930,7 +1930,8 @@ for that topic or click ")
(defun gdb-call-showing-gud (instance command)
(gud-display-gud-buffer instance)
- (comint-input-sender (gdb-instance-process instance) command))
+ (apply comint-input-sender
+ (list (gdb-instance-process instance) command)))
(defvar gud-target-history ())
Show replies by date