diff options
author | John Wiegley <johnw@newartisans.com> | 2003-11-14 11:01:46 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2003-11-14 11:01:46 +0000 |
commit | f1572159d527ade4b8503d521e2e18859d67b64b (patch) | |
tree | 234ddce9f4e9f07bfbd6d65610affc6449f455d4 | |
parent | 175acc2dec010dc5edc0321cc14bad086d785082 (diff) | |
download | emacs-f1572159d527ade4b8503d521e2e18859d67b64b.tar.gz |
(eshell-parse-variable-ref): Added a backslash that was optional, but
obviously missing based on surrounding code.
-rw-r--r-- | lisp/eshell/esh-var.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-var.el b/lisp/eshell/esh-var.el index 3578b5d1ef6..fabcf367088 100644 --- a/lisp/eshell/esh-var.el +++ b/lisp/eshell/esh-var.el @@ -430,7 +430,7 @@ Possible options are: (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 ?\<) |