bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#38773: 26.3; Fix docstring of netrc-parse


From: Xu Chunyang
Subject: bug#38773: 26.3; Fix docstring of netrc-parse
Date: Sat, 28 Dec 2019 19:52:08 +0800

The docstring of netrc-parse is in the wrong place, it should be
before the interactive form, here is the fix.

diff -u --label /Users/xcy/src/emacs-mac/lisp/net/netrc.el --label
\#\<buffer\ netrc.el\> /Users/xcy/src/emacs-mac/lisp/net/netrc.el
/var/folders/7f/s191h4q97p90374yw15ssrs00000gn/T/buffer-content-z8NQyt
--- /Users/xcy/src/emacs-mac/lisp/net/netrc.el
+++ #<buffer 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)

Diff finished.  Sat Dec 28 19:49:09 2019





reply via email to

[Prev in Thread] Current Thread [Next in Thread]