]> code.delx.au - gnu-emacs/commitdiff
(eshell-parse-variable-ref): Added a backslash that was optional, but
authorJohn Wiegley <johnw@newartisans.com>
Fri, 14 Nov 2003 11:01:46 +0000 (11:01 +0000)
committerJohn Wiegley <johnw@newartisans.com>
Fri, 14 Nov 2003 11:01:46 +0000 (11:01 +0000)
obviously missing based on surrounding code.

lisp/eshell/esh-var.el

index 3578b5d1ef676c6de31c7af3a2359bd58cd33ef0..fabcf3670884ccd756adda3c9700ac439a1bb154 100644 (file)
@@ -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 ?\<)