Mercurial > emacs
changeset 10702:77753c063e8c
Add % to comint-match-partial-filename.
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Wed, 08 Feb 1995 12:59:25 +0000 |
parents | 358030fd130c |
children | 7072187c3d81 |
files | lisp/comint.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/comint.el Wed Feb 08 06:37:26 1995 +0000 +++ b/lisp/comint.el Wed Feb 08 12:59:25 1995 +0000 @@ -1835,7 +1835,7 @@ (defun comint-match-partial-filename () "Return the filename at point, or nil if non is found. Environment variables are substituted. See `comint-word'." - (let ((filename (comint-word "~/A-Za-z0-9+@:_.$#,={}-"))) + (let ((filename (comint-word "~/A-Za-z0-9+@:_.$#%,={}-"))) (and filename (substitute-in-file-name filename))))