# HG changeset patch # User Simon Marshall # Date 792248365 0 # Node ID 77753c063e8c57425abd5397b29a284b4057fa7d # Parent 358030fd130c78c721b944f6a159ab5df0ac08c8 Add % to comint-match-partial-filename. diff -r 358030fd130c -r 77753c063e8c lisp/comint.el --- 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))))