From 53dcf39300d26b58088ec09ebf471878d96a8f4a Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 9 Jun 1997 12:51:42 +0000 Subject: [PATCH] (do-auto-fill): Bug fix for kinsoku processing. --- lisp/simple.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index c26e7dcc8fa..8878edcaf92 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2619,11 +2619,11 @@ Setting this variable automatically makes it local to the current buffer." ;; Break the line at word boundary. (skip-chars-backward " \t") ;; Break the line after/before \c|. - (forward-char 1) - (if (and enable-kinsoku enable-multibyte-characters) - (kinsoku (save-excursion - (forward-line 0) (point))))))) - ;; Let fill-point be set to the place where we end up. + (forward-char 1)))) + (if (and enable-kinsoku enable-multibyte-characters) + (kinsoku (save-excursion + (forward-line 0) (point))))))) + ;; Let fill-point be set to the place where we end up. (point))))) ;; If that place is not the beginning of the line, ;; break the line there. -- 2.39.2