Function: always

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

Signature

(always &rest ARGUMENTS)

Documentation

Do nothing and return t.

This function accepts any number of ARGUMENTS, but ignores them. Also see ignore.

Probably introduced at or before Emacs version 1.1.

Aliases

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)
  "Do nothing and return t.
This function accepts any number of ARGUMENTS, but ignores them.
Also see `ignore'."
  t)