diff options
| author | Juanma Barranquero | 2002-10-17 16:54:57 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-10-17 16:54:57 +0000 |
| commit | f25c692f5de4ddad1f4d04571dbf67724b278ef3 (patch) | |
| tree | 395ea6f591b82f8d6f4ff31957b91c0ee4a4527e | |
| parent | afbc4a8a155a1d91c8055f97cc24aafe5732263e (diff) | |
| download | emacs-f25c692f5de4ddad1f4d04571dbf67724b278ef3.tar.gz emacs-f25c692f5de4ddad1f4d04571dbf67724b278ef3.zip | |
(netrc-parse): Fix typo.
| -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 0310331bba5..8062b4292dc 100644 --- a/lisp/net/netrc.el +++ b/lisp/net/netrc.el | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | 'line-end-position)) | 41 | 'line-end-position)) |
| 42 | 42 | ||
| 43 | (defun netrc-parse (file) | 43 | (defun netrc-parse (file) |
| 44 | "Parse FILE and return an list of all entries in the file." | 44 | "Parse FILE and return a list of all entries in the file." |
| 45 | (when (file-exists-p file) | 45 | (when (file-exists-p file) |
| 46 | (with-temp-buffer | 46 | (with-temp-buffer |
| 47 | (let ((tokens '("machine" "default" "login" | 47 | (let ((tokens '("machine" "default" "login" |