From 3d484e9d88695089075f32d1cee109aeec411a0e Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 1 Jan 1992 02:18:28 +0000 Subject: [PATCH] Fix another minor bug in FILL-REGION-AS-PARAGRAPH. --- v7/src/edwin/fill.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/edwin/fill.scm b/v7/src/edwin/fill.scm index bb271be7c..edd5878af 100644 --- a/v7/src/edwin/fill.scm +++ b/v7/src/edwin/fill.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/fill.scm,v 1.51 1991/10/03 20:48:44 cph Exp $ +;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/fill.scm,v 1.52 1992/01/01 02:18:28 cph Exp $ ;;; ;;; Copyright (c) 1986, 1989-91 Massachusetts Institute of Technology ;;; @@ -193,8 +193,8 @@ Prefix arg means justify as well." (move-mark-to! point start) (let loop () (let ((target (move-to-column point fill-column))) - (if (mark>= target end) - (delete-string (horizontal-space-start end) end) + (if (mark>= target (horizontal-space-start end)) + (delete-horizontal-space end) (begin (move-mark-to! point -- 2.25.1