Function: char-fold--make-space-string

char-fold--make-space-string is a byte-compiled function defined in char-fold.el.gz.

Signature

(char-fold--make-space-string N)

Documentation

Return a string that matches N spaces.

Source Code

;; Defined in /usr/src/emacs/lisp/char-fold.el.gz
(defun char-fold--make-space-string (n)
  "Return a string that matches N spaces."
  (format "\\(?:%s\\|%s\\)"
          (make-string n ?\s)
          (apply #'concat
                 (make-list n (or (aref char-fold-table ?\s) " ")))))