# HG changeset patch # User John Wiegley # Date 990203969 0 # Node ID 798d90bb603793a09c51d091285efc6f6e3b5bee # Parent 8636251a479cfb6f5750cdc09f0a45cafb54aebd (eshell-completion-command-name, eshell-complete-commands-list): Use `eshell-explicit-command-char' instead of ?*. diff -r 8636251a479c -r 798d90bb6037 lisp/eshell/em-cmpl.el --- a/lisp/eshell/em-cmpl.el Fri May 18 16:38:58 2001 +0000 +++ b/lisp/eshell/em-cmpl.el Fri May 18 16:39:29 2001 +0000 @@ -306,7 +306,7 @@ "Return the command name, possibly sans globbing." (let ((cmd (file-name-nondirectory (pcomplete-arg 'first)))) (setq cmd (if (and (> (length cmd) 0) - (eq (aref cmd 0) ?*)) + (eq (aref cmd 0) eshell-explicit-command-char)) (substring cmd 1) cmd)) (if (eshell-under-windows-p) @@ -396,7 +396,7 @@ (if (file-name-directory filename) (pcomplete-executables) (if (and (> (length filename) 0) - (eq (aref filename 0) ?*)) + (eq (aref filename 0) eshell-explicit-command-char)) (setq filename (substring filename 1) pcomplete-stub filename glob-name t))