Function: eshell-parse-glob-chars

eshell-parse-glob-chars is a byte-compiled function defined in em-glob.el.gz.

Signature

(eshell-parse-glob-chars)

Documentation

Parse a globbing character.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-glob.el.gz
(defun eshell-parse-glob-chars ()
  "Parse a globbing character."
  (when (memq (char-after) eshell-glob-chars-list)
    (eshell-add-glob-modifier)
    (prog1
        (propertize (char-to-string (char-after)) 'eshell-glob-char t)
      (forward-char))))