Function: mh-display-completion-list
mh-display-completion-list is a macro defined in mh-compat.el.gz.
This macro is obsolete since 29.1.
Signature
(mh-display-completion-list COMPLETIONS &optional COMMON-SUBSTRING)
Documentation
Display the list of COMPLETIONS.
See documentation for display-completion-list for a description of the
arguments COMPLETIONS.
The optional argument COMMON-SUBSTRING, if non-nil, should be a string
specifying a common substring for adding the faces
completions-first-difference and completions-common-part to
the completions.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/mh-compat.el.gz
(defmacro mh-display-completion-list (completions &optional common-substring)
"Display the list of COMPLETIONS.
See documentation for `display-completion-list' for a description of the
arguments COMPLETIONS.
The optional argument COMMON-SUBSTRING, if non-nil, should be a string
specifying a common substring for adding the faces
`completions-first-difference' and `completions-common-part' to
the completions."
(declare (obsolete nil "29.1"))
`(display-completion-list
(completion-hilit-commonality ,completions
,(length common-substring) nil)))