summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorSimon Marshall <simon@gnu.org>1995-02-08 12:59:25 +0000
committerSimon Marshall <simon@gnu.org>1995-02-08 12:59:25 +0000
commit310433e195580a58354169531da56df3c09be728 (patch)
tree76e13e1d7b4deccb2ca5fa6eb5218d45a9f3c06e /lisp/comint.el
parent53b681fd897afa38b05e04b660c956e435fdb8fd (diff)
downloademacs-310433e195580a58354169531da56df3c09be728.tar.gz
Add % to comint-match-partial-filename.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
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))))