diff options
Diffstat (limited to 'lisp/shell.el')
| -rw-r--r-- | lisp/shell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index 6129e5efc84..226bdf4d919 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -1208,7 +1208,7 @@ Returns t if successful." | |||
| 1208 | (cwd (file-name-as-directory (expand-file-name default-directory))) | 1208 | (cwd (file-name-as-directory (expand-file-name default-directory))) |
| 1209 | (ignored-extensions | 1209 | (ignored-extensions |
| 1210 | (and comint-completion-fignore | 1210 | (and comint-completion-fignore |
| 1211 | (mapconcat (function (lambda (x) (concat (regexp-quote x) "\\'"))) | 1211 | (mapconcat (lambda (x) (concat (regexp-quote x) "\\'")) |
| 1212 | comint-completion-fignore "\\|"))) | 1212 | comint-completion-fignore "\\|"))) |
| 1213 | (dir "") (comps-in-dir ()) | 1213 | (dir "") (comps-in-dir ()) |
| 1214 | (file "") (abs-file-name "") (completions ())) | 1214 | (file "") (abs-file-name "") (completions ())) |