]> git.eshelyaron.com Git - emacs.git/commitdiff
Add % to comint-match-partial-filename.
authorSimon Marshall <simon@gnu.org>
Wed, 8 Feb 1995 12:59:25 +0000 (12:59 +0000)
committerSimon Marshall <simon@gnu.org>
Wed, 8 Feb 1995 12:59:25 +0000 (12:59 +0000)
lisp/comint.el

index 216e98c6c2cb0c919ab3abc3a3176d5c8c3c9bd6..880578c4de607ded39a7c7eee0e1bf63c013d65a 100644 (file)
@@ -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))))