# HG changeset patch # User Gerd Moellmann # Date 974905392 0 # Node ID 8d31bbd5374c135d41259d6926be468c97c66228 # Parent 2cced032a4cccaf76aca8f99143afff146b0a7a7 (replace-rectangle): Don't call string-rectangle-line with too many arguments. diff -r 2cced032a4cc -r 8d31bbd5374c lisp/rect.el --- a/lisp/rect.el Wed Nov 22 14:53:54 2000 +0000 +++ b/lisp/rect.el Wed Nov 22 15:03:12 2000 +0000 @@ -344,7 +344,7 @@ (defun replace-rectangle (start end string) "Like `string-rectangle', but replace the original region." (interactive "*r\nsString rectangle: ") - (apply-on-rectangle 'string-rectangle-line start end string t)) + (apply-on-rectangle 'string-rectangle-line start end string)) ;;;###autoload (defun clear-rectangle (start end &optional fill)