Function: auth-source-netrc-looking-at-token
auth-source-netrc-looking-at-token is a byte-compiled function defined
in auth-source.el.gz.
Signature
(auth-source-netrc-looking-at-token)
Documentation
Say whether the next think in the buffer is a token (password, etc).
Match data is altered to reflect the token.
Source Code
;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defun auth-source-netrc-looking-at-token ()
"Say whether the next think in the buffer is a token (password, etc).
Match data is altered to reflect the token."
(or (looking-at "'\\([^']*\\)'")
(looking-at "\"\\([^\"]*\\)\"")
(looking-at "\\([^ \t\n]+\\)")))