From 8aa7b879cdbc5e8705f3ed6c470a4b223d83fe8a Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 30 Apr 2004 18:54:44 +0000 Subject: [PATCH] (fortran-fill): Use local var `bol' rather than duplicate call to `line-beginning-position'. --- lisp/progmodes/fortran.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index f23eabe6e9c..88d41650c07 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el @@ -1700,8 +1700,7 @@ If ALL is nil, only match comments that start in column > 0." (while repeat (setq repeat nil) ;; Adapted from f90-find-breakpoint. - (re-search-backward fortran-break-delimiters-re - (line-beginning-position)) + (re-search-backward fortran-break-delimiters-re bol) (if (not fortran-break-before-delimiters) (if (looking-at fortran-no-break-re) ;; Deal with cases such as "**" split over -- 2.11.4.GIT