X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/08b3caa982199bd7939d9d6877203ada5d0083b5..9250c1e82544edcc8bf62ec9a5149e575fa3c73f:/lisp/rect.el diff --git a/lisp/rect.el b/lisp/rect.el index 594405716e..eb188fc1d5 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 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))