=== modified file 'lisp/cedet/semantic/bovine/f90.el'
*** lisp/cedet/semantic/bovine/f90.el	2012-10-16 19:29:23 +0000
--- lisp/cedet/semantic/bovine/f90.el	2013-02-14 01:14:46 +0000
***************
*** 521,529 ****
  (defun semantic-default-f90-setup ()
    "Set up a buffer for semantic parsing of the F90 language."
    (semantic-f90-by--install-parser)
!   (modify-syntax-entry ?%  "."  f90-mode-syntax-table)
!   (modify-syntax-entry ?>  "."  f90-mode-syntax-table)
!   (modify-syntax-entry ?&  " "  f90-mode-syntax-table)
    ;; Commented out lines below are generally considered optional
    ;; See the Emacs Doc for the symbols used below
    (setq semantic-symbol->name-assoc-list '( (variable . "Variables")
--- 521,530 ----
  (defun semantic-default-f90-setup ()
    "Set up a buffer for semantic parsing of the F90 language."
    (semantic-f90-by--install-parser)
!   (setq semantic-lex-syntax-modifications
! 	'((?% ".")
! 	  (?> ".")
! 	  (?& ".")))
    ;; Commented out lines below are generally considered optional
    ;; See the Emacs Doc for the symbols used below
    (setq semantic-symbol->name-assoc-list '( (variable . "Variables")

