Variable: find-alias-regexp

find-alias-regexp is a customizable variable defined in find-func.el.gz.

Value

"(defalias +'%s"

Documentation

The regexp used by xref-find-definitions to search for an alias definition.

Note it must contain a %s at the place where format should insert the feature name.

This variable was added, or its default value changed, in Emacs 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
(defcustom find-alias-regexp
  "(defalias +'%s"
  "The regexp used by `xref-find-definitions' to search for an alias definition.
Note it must contain a `%s' at the place where `format'
should insert the feature name."
  :type 'regexp
  :group 'xref
  :version "25.1")