1 new commit in cc-mode:
https://bitbucket.org/xemacs/cc-mode/commits/e8243bf18226/
Changeset:   e8243bf18226
User:        acm
Date:        2017-09-12 15:50:54+00:00
Summary:     Don't match C++ template delims starting within a token.  FIxes bug
#28418.
* cc-engine.el (c-restore-<>-properties): After failing an attempted match
from the start of a token (in particular, "<<"), move to the next token
rather
than the nex character before searching for the next "<".
Affected #:  1 file
diff -r 3e60d214fbd331a6656b1bd6b43e12518bc9dfa2 -r
e8243bf18226f0dc79f526d38a369fa78a76edf1 cc-engine.el
--- a/cc-engine.el
+++ b/cc-engine.el
@@ -6431,7 +6431,7 @@
 			      (not (eq (c-get-char-property (point) 'c-type)
 				       'c-decl-arg-start)))))))
       (or (c-forward-<>-arglist nil)
-	  (forward-char)))))
+	  (c-forward-token-2)))))
 
 
 ;; Functions to handle C++ raw strings.
Repository URL: 
https://bitbucket.org/xemacs/cc-mode/
--
This is a commit notification from 
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.