Variable: ffap-machine-p-local

ffap-machine-p-local is a customizable variable defined in ffap.el.gz.

Value

reject

Documentation

What ffap-machine-p does with hostnames that have no domain.

Value should be a symbol, one of ping, accept, and reject.

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
;; I cannot decide a "best" strategy here, so these are variables.  In
;; particular, if `Pinging...' is broken or takes too long on your
;; machine, try setting these all to accept or reject.
(defcustom ffap-machine-p-local 'reject	; this happens often
  "What `ffap-machine-p' does with hostnames that have no domain.
Value should be a symbol, one of `ping', `accept', and `reject'."
  :type '(choice (const ping)
		 (const accept)
                 (const reject))
  :safe #'ffap-accept-or-reject-p
  :group 'ffap)