Function: auth-source-current-line

auth-source-current-line is a byte-compiled function defined in auth-source.el.gz.

Signature

(auth-source-current-line &optional POS)

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
;; with thanks to org-mode
(defsubst auth-source-current-line (&optional pos)
  (save-excursion
    (and pos (goto-char pos))
    ;; works also in narrowed buffer, because we start at 1, not point-min
    (+ (if (bolp) 1 0) (count-lines 1 (point)))))