diff lisp/comint.el @ 10702:77753c063e8c

Add % to comint-match-partial-filename.
author Simon Marshall <simon@gnu.org>
date Wed, 08 Feb 1995 12:59:25 +0000
parents 8916eeebe860
children a774e92de39c
line wrap: on
line diff
--- 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))))