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: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/fortran.el
Date: Tue, 30 Aug 2005 06:50:41 -0400

Index: emacs/lisp/progmodes/fortran.el
diff -c emacs/lisp/progmodes/fortran.el:1.118 
emacs/lisp/progmodes/fortran.el:1.119
*** emacs/lisp/progmodes/fortran.el:1.118       Mon Aug  1 08:37:48 2005
--- emacs/lisp/progmodes/fortran.el     Tue Aug 30 10:50:41 2005
***************
*** 55,60 ****
--- 55,62 ----
  
  (eval-when-compile                    ; silence compiler
    (defvar dabbrev-case-fold-search)
+   (defvar font-lock-syntactic-keywords)
+   (defvar gud-find-expr-function)
    (defvar imenu-case-fold-search)
    (defvar imenu-syntax-alist))
  
***************
*** 1646,1652 ****
            (let* ((char (if (stringp fortran-comment-indent-char)
                             (aref fortran-comment-indent-char 0)
                           fortran-comment-indent-char))
!                  (chars (string ?  ?\t char)))
              (goto-char (match-end 0))
              (skip-chars-backward chars)
              (delete-region (point) (progn (skip-chars-forward chars)
--- 1648,1654 ----
            (let* ((char (if (stringp fortran-comment-indent-char)
                             (aref fortran-comment-indent-char 0)
                           fortran-comment-indent-char))
!                  (chars (string ?\s ?\t char)))
              (goto-char (match-end 0))
              (skip-chars-backward chars)
              (delete-region (point) (progn (skip-chars-forward chars)
***************
*** 1656,1662 ****
          (if indent-tabs-mode
              (goto-char (match-end 0))
            (delete-char 2)
!           (insert-char ?  5)
            (insert fortran-continuation-string))
        (if (looking-at " \\{5\\}[^ 0\n]")
            (if indent-tabs-mode
--- 1658,1664 ----
          (if indent-tabs-mode
              (goto-char (match-end 0))
            (delete-char 2)
!           (insert-char ?\s 5)
            (insert fortran-continuation-string))
        (if (looking-at " \\{5\\}[^ 0\n]")
            (if indent-tabs-mode




reply via email to

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