diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/comint.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 85a93cb5358..6980220a8bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-04-23 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * comint.el (comint-match-partial-filename): Doc fix. | ||
| 4 | |||
| 1 | 2006-04-21 Glenn Morris <rgm@gnu.org> | 5 | 2006-04-21 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * calendar/cal-menu.el (calendar-mode-map): Refer to | 7 | * calendar/cal-menu.el (calendar-mode-map): Refer to |
diff --git a/lisp/comint.el b/lisp/comint.el index f8edc85c1ac..946085661fc 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -2703,7 +2703,7 @@ interpreter (e.g., the percent notation of cmd.exe on NT)." | |||
| 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 |