Mercurial > emacs
comparison lisp/comint.el @ 70186:a2173a369f78
(comint-match-partial-filename): Doc fix.
author | Romain Francoise <romain@orebokech.com> |
---|---|
date | Sat, 22 Apr 2006 23:30:13 +0000 |
parents | 9f7f8828a942 |
children | 289021558ff6 2ecafc6d5db7 |
comparison
equal
deleted
inserted
replaced
70185:43705aa48a69 | 70186:a2173a369f78 |
---|---|
2701 "")) | 2701 "")) |
2702 (setq name (replace-match env-var-val t t name)))))) | 2702 (setq name (replace-match env-var-val t t name)))))) |
2703 name)) | 2703 name)) |
2704 | 2704 |
2705 (defun comint-match-partial-filename () | 2705 (defun comint-match-partial-filename () |
2706 "Return the filename at point, or nil if non is found. | 2706 "Return the filename at point, or nil if none is found. |
2707 Environment variables are substituted. See `comint-word'." | 2707 Environment variables are substituted. See `comint-word'." |
2708 (let ((filename (comint-word comint-file-name-chars))) | 2708 (let ((filename (comint-word comint-file-name-chars))) |
2709 (and filename (comint-substitute-in-file-name | 2709 (and filename (comint-substitute-in-file-name |
2710 (comint-unquote-filename filename))))) | 2710 (comint-unquote-filename filename))))) |
2711 | 2711 |