File:  [Local Repository] / reports / tools.el
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Mon Jan 26 22:54:26 2004 UTC (20 years, 5 months ago) by boris
Branches: MAIN
CVS tags: HEAD
New info

    1: (defun add-spaces (&optional num)
    2:   "Add spaces until the line has num spaces"
    3:   (interactive "p")
    4:   (if (<= num 1) (setq num 70))
    5:   (end-of-line)
    6:   (while (> num (- (line-end-position) (line-beginning-position)))
    7:     (insert " "))
    8:   (beginning-of-line))

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>