X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/9850eff524bd0747a9561f3b4c90dfc3749f4ecb..29bbcfa7054e69db0dbe8250af2c809b39ecb54d:/lisp/rect.el diff --git a/lisp/rect.el b/lisp/rect.el index 594405716e..1560cd26a5 100644 --- a/lisp/rect.el +++ b/lisp/rect.el @@ -1,7 +1,7 @@ ;;; rect.el --- rectangle functions for GNU Emacs ;; Copyright (C) 1985, 1999, 2000, 2001, 2002, 2003, 2004 -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. ;; Maintainer: Didier Verna ;; Keywords: internal @@ -187,9 +187,9 @@ the function is called." ;; this one is untouched --dv (defun spaces-string (n) - "Returns a string with N spaces." + "Return a string with N spaces." (if (<= n 8) (aref spaces-strings n) - (make-string n ? ))) + (make-string n ?\s))) ;;;###autoload (defun delete-rectangle (start end &optional fill) @@ -290,8 +290,8 @@ The text previously in the region is not overwritten by the blanks, but instead winds up to the right of the rectangle. When called from a program the rectangle's corners are START and END. -With a prefix (or a FILL) argument, fill with blanks even if there is no text -on the right side of the rectangle." +With a prefix (or a FILL) argument, fill with blanks even if there is +no text on the right side of the rectangle." (interactive "*r\nP") (apply-on-rectangle 'open-rectangle-line start end fill) (goto-char start))