|
From: | Samer Masterson |
Subject: | bug#18960: Fwd: bug#18960: 24.4; Eshell history substitution causes error |
Date: | Tue, 9 Dec 2014 14:49:40 -0800 |
> Modified lisp/eshell/em-hist.el
> diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el
> index b721b5d..e7e9a1e 100644
> --- a/lisp/eshell/em-hist.el
> +++ b/lisp/eshell/em-hist.el
> @@ -724,7 +724,7 @@ matched."
> (setq nth (eshell-hist-word-reference nth)))
> (unless (numberp mth)
> (setq mth (eshell-hist-word-reference mth)))
> - (cons (mapconcat 'identity (eshell-sublist textargs nth mth) "")
> + (cons (mapconcat 'identity (eshell-sublist textargs nth mth) " ")
> end))))
Can you explain why this is needed?
> @@ -737,7 +737,7 @@ matched."
> (goto-char (point-min))
> (let ((modifiers (cdr (eshell-parse-modifiers))))
> (dolist (mod modifiers)
> - (setq hist (funcall mod hist)))
> + (setq hist (car (funcall mod (list hist)))))
> hist))
> (delete-region here (point)))))
The docstring of eshell-parse-modifiers says:
Parse value modifiers and predicates at point.
If ALLOW-PREDS is non-nil, predicates will be parsed as well.
Return a cons cell of the form
(PRED-FUNC-LIST . MOD-FUNC-LIST)
NEW-STRING is STRING minus any modifiers. PRED-FUNC-LIST is a list of
predicate functions. MOD-FUNC-LIST is a list of result modifier
functions. PRED-FUNCS take a filename and return t if the test
succeeds; MOD-FUNCS take any string and preform a modification,
returning the resultant string.
If I read this right, `mod' (which is one of MOD-FUNCS) should take
a string and return a string, IIUC. So, maybe the right fix is not to
change this code but to change the functions returned by
`eshell-parse-modifiers'.
Stefan
[Prev in Thread] | Current Thread | [Next in Thread] |