diff options
| author | Xu Chunyang | 2019-12-28 13:40:57 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-12-28 13:41:04 +0100 |
| commit | 6c9571379ed68c171fcf80c4368f30bc9d453d2f (patch) | |
| tree | fef24e41c68c54133301afdae5c41950166a9899 | |
| parent | 32222fb34cc784f0cfc1716294818fd69233b06c (diff) | |
| download | emacs-6c9571379ed68c171fcf80c4368f30bc9d453d2f.tar.gz emacs-6c9571379ed68c171fcf80c4368f30bc9d453d2f.zip | |
Fix interactive spec in netrc-parse
* lisp/net/netrc.el (netrc-parse): Fix placement of interactive
spec (bug#38773).
| -rw-r--r-- | lisp/net/netrc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/netrc.el b/lisp/net/netrc.el index 93152f4f2c4..cd351ed7e43 100644 --- a/lisp/net/netrc.el +++ b/lisp/net/netrc.el | |||
| @@ -49,8 +49,8 @@ | |||
| 49 | (defvar netrc-cache nil) | 49 | (defvar netrc-cache nil) |
| 50 | 50 | ||
| 51 | (defun netrc-parse (&optional file) | 51 | (defun netrc-parse (&optional file) |
| 52 | (interactive "fFile to Parse: ") | ||
| 53 | "Parse FILE and return a list of all entries in the file." | 52 | "Parse FILE and return a list of all entries in the file." |
| 53 | (interactive "fFile to Parse: ") | ||
| 54 | (unless file | 54 | (unless file |
| 55 | (setq file netrc-file)) | 55 | (setq file netrc-file)) |
| 56 | (if (listp file) | 56 | (if (listp file) |