diff options
| author | Stefan Monnier | 2008-04-14 18:09:49 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-04-14 18:09:49 +0000 |
| commit | 30b775ff5d957e00a4151efaa7814bfb3181fe18 (patch) | |
| tree | 784867c2c961f4ae92e25336bfc5adafec386b90 | |
| parent | 010d97291d2280b22663f8895cf60702bb75476a (diff) | |
| download | emacs-30b775ff5d957e00a4151efaa7814bfb3181fe18.tar.gz emacs-30b775ff5d957e00a4151efaa7814bfb3181fe18.zip | |
Minor re-indent.
| -rw-r--r-- | lisp/complete.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/complete.el b/lisp/complete.el index da75ed2dbe1..0050ecf7b90 100644 --- a/lisp/complete.el +++ b/lisp/complete.el | |||
| @@ -1107,11 +1107,11 @@ This is only used by " | |||
| 1107 | (format (if (string-match "/\\'" x) "<%s" "<%s>") x)) | 1107 | (format (if (string-match "/\\'" x) "<%s" "<%s>") x)) |
| 1108 | (PC-include-file-all-completions | 1108 | (PC-include-file-all-completions |
| 1109 | name (PC-include-file-path))))) | 1109 | name (PC-include-file-path))))) |
| 1110 | (cond | 1110 | (cond |
| 1111 | ((not completion-table) nil) | 1111 | ((not completion-table) nil) |
| 1112 | ((eq action 'lambda) (test-completion str2 completion-table nil)) | 1112 | ((eq action 'lambda) (test-completion str2 completion-table nil)) |
| 1113 | ((eq action nil) (PC-try-completion str2 completion-table nil)) | 1113 | ((eq action nil) (PC-try-completion str2 completion-table nil)) |
| 1114 | ((eq action t) (all-completions str2 completion-table nil)))) | 1114 | ((eq action t) (all-completions str2 completion-table nil)))) |
| 1115 | (read-file-name-internal string dir action))) | 1115 | (read-file-name-internal string dir action))) |
| 1116 | 1116 | ||
| 1117 | 1117 | ||