Mercurial > emacs
changeset 53053:02020f3d155a
(eshell-parse-variable-ref): Added a backslash that was optional, but
obviously missing based on surrounding code.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Fri, 14 Nov 2003 11:01:46 +0000 |
parents | e2abdb097d99 |
children | 641d61df66e7 |
files | lisp/eshell/esh-var.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/eshell/esh-var.el Fri Nov 14 11:01:26 2003 +0000 +++ b/lisp/eshell/esh-var.el Fri Nov 14 11:01:46 2003 +0000 @@ -430,7 +430,7 @@ (eshell-parse-double-quote)))) (if name (list 'eshell-get-variable (eval name) 'indices)))) - ((eq (char-after) ?<) + ((eq (char-after) ?\<) (let ((end (eshell-find-delimiter ?\< ?\>))) (if (not end) (throw 'eshell-incomplete ?\<)