1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

; * lisp/eshell/esh-var.el (eshell-glob-function): Remove unused defvar.

This commit is contained in:
Jim Porter 2024-10-20 15:34:15 -07:00
parent 183c5efc0f
commit fc6854cbd4

View file

@ -607,8 +607,6 @@ Possible variable references are:
(t
(error "Invalid variable reference"))))
(defvar eshell-glob-function)
(defun eshell-parse-indices ()
"Parse and return a list of index-lists.
This produces a series of Lisp forms to be processed by
@ -625,7 +623,7 @@ For example, \"[0 1][2]\" becomes:
(forward-char)
(eshell-with-temp-command (or (eshell-unescape-inner-double-quote end)
(cons (point) end))
(let (eshell-glob-function (eshell-current-quoted nil))
(let ((eshell-current-quoted nil))
(setq indices (cons (eshell-parse-arguments
(point-min) (point-max))
indices))))