Function: ruler-mode-space
ruler-mode-space is a byte-compiled function defined in
ruler-mode.el.gz.
Signature
(ruler-mode-space WIDTH &rest PROPS)
Documentation
Return a single space string of WIDTH times the normal character width.
Optional argument PROPS specifies other text properties to apply.
Source Code
;; Defined in /usr/src/emacs/lisp/ruler-mode.el.gz
(defsubst ruler-mode-space (width &rest props)
"Return a single space string of WIDTH times the normal character width.
Optional argument PROPS specifies other text properties to apply."
(apply #'propertize " " 'display (list 'space :width width) props))