summaryrefslogtreecommitdiff
path: root/lisp/net/netrc.el
diff options
context:
space:
mode:
authorXu Chunyang <xuchunyang56@gmail.com>2019-12-28 13:40:57 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2019-12-28 13:41:04 +0100
commit6c9571379ed68c171fcf80c4368f30bc9d453d2f (patch)
treefef24e41c68c54133301afdae5c41950166a9899 /lisp/net/netrc.el
parent32222fb34cc784f0cfc1716294818fd69233b06c (diff)
downloademacs-6c9571379ed68c171fcf80c4368f30bc9d453d2f.tar.gz
Fix interactive spec in netrc-parse
* lisp/net/netrc.el (netrc-parse): Fix placement of interactive spec (bug#38773).
Diffstat (limited to 'lisp/net/netrc.el')
-rw-r--r--lisp/net/netrc.el2
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 @@
(defvar netrc-cache nil)
(defun netrc-parse (&optional file)
- (interactive "fFile to Parse: ")
"Parse FILE and return a list of all entries in the file."
+ (interactive "fFile to Parse: ")
(unless file
(setq file netrc-file))
(if (listp file)