Function: report-emacs-bug-can-use-osx-open

report-emacs-bug-can-use-osx-open is a byte-compiled function defined in emacsbug.el.gz.

Signature

(report-emacs-bug-can-use-osx-open)

Documentation

Return non-nil if the macOS "open" command is available for mailing.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/emacsbug.el.gz
(defun report-emacs-bug-can-use-osx-open ()
  "Return non-nil if the macOS \"open\" command is available for mailing."
  (and (featurep 'ns)
       (equal (executable-find "open") "/usr/bin/open")
       (memq system-type '(darwin))))