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

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'."
  t)