PATCH packages
While reviewing the use of comint by other packages in preparation for
introducing a newly-synced comint.el, I found a number of errors in the
use of the current comint. This is the first in a series of patches to
fix those errors. I separated them by package to make review easier,
and since some packages are externally maintained.
xemacs-packages/debug/ChangeLog addition:
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.
packages source patch:
Diff command: cvs -q diff -uN
Files affected: xemacs-packages/debug/gud.el
Index: xemacs-packages/debug/gud.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/debug/gud.el,v
retrieving revision 1.6
diff -d -u -r1.6 gud.el
--- xemacs-packages/debug/gud.el 2001/01/22 07:49:30 1.6
+++ xemacs-packages/debug/gud.el 2006/05/13 18:12:37
@@ -1930,7 +1930,8 @@
(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 ())
--
Jerry James, Assistant Professor james(a)xemacs.org
Computer Science Department
http://www.cs.usu.edu/~jerry/
Utah State University