emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/fortran.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/fortran.el
Date: Wed, 13 Mar 2002 11:42:47 -0500

Index: emacs/lisp/progmodes/fortran.el
diff -c emacs/lisp/progmodes/fortran.el:1.89 
emacs/lisp/progmodes/fortran.el:1.90
*** emacs/lisp/progmodes/fortran.el:1.89        Wed Mar 13 11:33:56 2002
--- emacs/lisp/progmodes/fortran.el     Wed Mar 13 11:42:47 2002
***************
*** 844,851 ****
    (interactive)
    (delete-horizontal-space)
    (if (save-excursion
!       (beginning-of-line)
!       (looking-at fortran-comment-line-start-skip))
        (insert ?\n (match-string 0))
      (if indent-tabs-mode
        (insert ?\n ?\t (fortran-numerical-continuation-char))
--- 844,853 ----
    (interactive)
    (delete-horizontal-space)
    (if (save-excursion
!       (let ((pos (point)))
!         (beginning-of-line)
!         (and (fortran-find-comment-start-skip 'all)
!              (< (match-beginning 0) pos))))
        (insert ?\n (match-string 0))
      (if indent-tabs-mode
        (insert ?\n ?\t (fortran-numerical-continuation-char))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]