Function: auth-source-do-warn

auth-source-do-warn is a byte-compiled function defined in auth-source.el.gz.

Signature

(auth-source-do-warn &rest MSG)

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defun auth-source-do-warn (&rest msg)
  (apply
   ;; set logger to either the function in auth-source-debug or 'message
   ;; note that it will be 'message if auth-source-debug is nil
   (if (functionp auth-source-debug)
       auth-source-debug
     'message)
   msg))