Function: archive--fit2

archive--fit2 is a byte-compiled function defined in arc-mode.el.gz.

Signature

(archive--fit2 STR1 STR2 LEN)

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defun archive--fit2 (str1 str2 len)
  (let* ((spaces (- len (string-width str1) (string-width str2))))
    (if (< spaces 1)
        (substring (concat str1 str2) 0 len)
      (concat str1 (make-string spaces ?\s) str2))))