Function: strokes-fill-current-buffer-with-whitespace
strokes-fill-current-buffer-with-whitespace is a byte-compiled
function defined in strokes.el.gz.
Signature
(strokes-fill-current-buffer-with-whitespace)
Documentation
Erase the contents of the current buffer and fill it with whitespace.
Source Code
;; Defined in /usr/src/emacs/lisp/strokes.el.gz
(defsubst strokes-fill-current-buffer-with-whitespace ()
"Erase the contents of the current buffer and fill it with whitespace."
(erase-buffer)
(cl-loop repeat (frame-height) do
(insert-char ?\s (1- (frame-width)))
(newline))
(goto-char (point-min)))