Function: always

always is a byte-compiled function defined in subr.el.gz.

Signature

(always &rest ARGUMENTS)

Documentation

Ignore ARGUMENTS, do nothing, and return t.

This function accepts any number of arguments in ARGUMENTS. Also see ignore.

View in manual

Probably introduced at or before Emacs version 25.1.

Aliases

vc-git-async-checkins vc-hg-async-checkins gnus-not-ignore gnus-agent-true TeX-always idlwave-default-mouse-track-event-is-with-button (obsolete since 28.1)

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun always (&rest _arguments)
  "Ignore ARGUMENTS, do nothing, and return t.
This function accepts any number of arguments in ARGUMENTS.
Also see `ignore'."
  (declare (pure t) (side-effect-free error-free))
  t)