]> git.eshelyaron.com Git - emacs.git/commitdiff
Use simpler fn.
authorSimon Marshall <simon@gnu.org>
Sat, 16 Nov 1996 13:42:45 +0000 (13:42 +0000)
committerSimon Marshall <simon@gnu.org>
Sat, 16 Nov 1996 13:42:45 +0000 (13:42 +0000)
lisp/progmodes/simula.el

index bf4fec8c4655bedb5c5ceb34a92ac7a440057a8c..c4de80bfd611c0ae21c91a45012cb7b13df624eb 100644 (file)
@@ -192,7 +192,7 @@ for SIMULA mode to function correctly.")
     (list (concat "\\<\\(array\\|boolean\\|character\\|integer\\|"
                  "long\\|name\\|real\\|short\\|text\\|value\\)\\>"
                  "\\([ \t]+\\sw+\\>\\)*")
-         '(font-lock-match-c++-style-declaration-item-and-skip-to-next
+         '(font-lock-match-c-style-declaration-item-and-skip-to-next
            ;; Start with point after all type specifiers.
            (goto-char (or (match-beginning 2) (match-end 1)))
            ;; Finish with point after first type specifier.
@@ -203,7 +203,7 @@ for SIMULA mode to function correctly.")
     ;; Object references and their declarations.
     '("\\<\\(ref\\)\\>[ \t]*\\((\\(\\sw+\\))\\)?"
       (3 font-lock-function-name-face nil t)
-      (font-lock-match-c++-style-declaration-item-and-skip-to-next nil nil
+      (font-lock-match-c-style-declaration-item-and-skip-to-next nil nil
        (1 font-lock-variable-name-face)))
     ))
   "Gaudy level highlighting for Simula mode.")