From f1572159d527ade4b8503d521e2e18859d67b64b Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 14 Nov 2003 11:01:46 +0000 Subject: [PATCH] (eshell-parse-variable-ref): Added a backslash that was optional, but obviously missing based on surrounding code. --- lisp/eshell/esh-var.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ?\<) -- 2.39.2