File:  [Local Repository] / reports / tools.el
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Fri Jul 16 16:54:51 2004 UTC (19 years, 10 months ago) by boris
Branches: MAIN
CVS tags: HEAD
New info

(defun add-spaces (&optional num)
  "Add spaces until the line has num spaces"
  (interactive "p")
  (if (<= num 1) (setq num 70))
  (end-of-line)
  (while (> num (- (line-end-position) (line-beginning-position)))
    (insert " "))
  (beginning-of-line))


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