From 44a631800acb9750f8090c507d3f5043fc7057ad Mon Sep 17 00:00:00 2001 From: Simon Marshall Date: Wed, 8 Feb 1995 12:59:25 +0000 Subject: [PATCH] Add % to comint-match-partial-filename. --- lisp/comint.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/comint.el b/lisp/comint.el index 216e98c6c2c..880578c4de6 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1835,7 +1835,7 @@ inside of a \"[...]\" (see `skip-chars-forward')." (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)))) -- 2.39.5