Function: auth-source-netrc-parse-next-interesting
auth-source-netrc-parse-next-interesting is a byte-compiled function
defined in auth-source.el.gz.
Signature
(auth-source-netrc-parse-next-interesting)
Documentation
Advance to the next interesting position in the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defun auth-source-netrc-parse-next-interesting ()
"Advance to the next interesting position in the current buffer."
(skip-chars-forward "\t ")
;; If we're looking at a comment or are at the end of the line, move forward
(while (or (eq (char-after) ?#)
(and (eolp)
(not (eobp))))
(forward-line 1)
(skip-chars-forward "\t ")))