Function: describe-no-warranty

describe-no-warranty is an interactive and byte-compiled function defined in help.el.gz.

Signature

(describe-no-warranty)

Documentation

Display info on all the kinds of warranty Emacs does NOT have.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/help.el.gz
(defun describe-no-warranty ()
  "Display info on all the kinds of warranty Emacs does NOT have."
  (interactive)
  (describe-copying)
  (let (case-fold-search)
    (search-forward "Disclaimer of Warranty")
    (forward-line 0)
    (recenter 0)))