On Mon, 2002-10-14 at 18:36, Charles G Waldman wrote:
XEmacs 21.1.14 "Cuyahoga Valley" configured for
`i386-pc-solaris2.8'.
igrep 1.0.9
Yep, a brief look confirms that the current igrep doesn't work with
XEmacs < 21.4, because it calls read-from-minibuffer with 7 args, and
the 7th appeared in 21.4.
Charles, could you try if this patch to igrep.el fixes the problem with
21.1.14?
Index: igrep.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/igrep/igrep.el,v
retrieving revision 1.4
diff -a -u -a -u -r1.4 igrep.el
--- igrep.el 2002/08/13 01:56:36 1.4
+++ igrep.el 2002/10/14 16:56:50
@@ -916,13 +916,14 @@
(format "Expression [default: %s]: "
default-expression)
"Expression: ")))
- (expression (cond ((featurep 'xemacs) ; incompatible
+ (expression (cond ((and (featurep 'xemacs) (emacs-version>= 21 4))
(read-from-minibuffer prompt
nil nil nil
'igrep-expression-history
nil ; ABBREV-TABLE
default-expression))
- ((>= emacs-major-version 20)
+ ((and (not (featurep 'xemacs))
+ (>= emacs-major-version 20))
(read-from-minibuffer prompt
nil nil nil
'igrep-expression-history
--
\/ille Skyttä
ville.skytta at
xemacs.org