From: John Wiegley Date: Fri, 14 Nov 2003 11:01:46 +0000 (+0000) Subject: (eshell-parse-variable-ref): Added a backslash that was optional, but X-Git-Tag: ttn-vms-21-2-B4~8369 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f1572159d527ade4b8503d521e2e18859d67b64b;p=emacs.git (eshell-parse-variable-ref): Added a backslash that was optional, but obviously missing based on surrounding code. --- 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 ?\<)