Function: completion--common-suffix

completion--common-suffix is a byte-compiled function defined in minibuffer.el.gz.

Signature

(completion--common-suffix STRS)

Documentation

Return the common suffix of the strings STRS.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun completion--common-suffix (strs)
  "Return the common suffix of the strings STRS."
  (nreverse (try-completion "" (mapcar #'reverse strs))))