From: Simon Marshall Date: Wed, 8 Feb 1995 12:59:25 +0000 (+0000) Subject: Add % to comint-match-partial-filename. X-Git-Tag: emacs-19.34~5156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44a631800acb9750f8090c507d3f5043fc7057ad;p=emacs.git Add % to comint-match-partial-filename. --- 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))))