Function: sql-comint-automatic-password

sql-comint-automatic-password is a byte-compiled function defined in sql.el.gz.

Signature

(sql-comint-automatic-password _)

Documentation

Intercept password prompts when we know the password.

This must also do the job of detecting password prompts.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-comint-automatic-password (_)
  "Intercept password prompts when we know the password.
This must also do the job of detecting password prompts."
  (when (and
         sql-password
         (not (string= "" sql-password)))
    sql-password))