1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge from origin/emacs-26

081fb69 (origin/emacs-26) Check result from c-backward-token-2 to avo...
f4ea746 cl-make-random-state was not copying its arg
This commit is contained in:
Glenn Morris 2018-12-20 07:51:17 -08:00
commit 62112a77f1
3 changed files with 8 additions and 3 deletions

View file

@ -1255,8 +1255,8 @@ casts and declarations are fontified. Used on level 2 and higher."
(save-excursion
(goto-char match-pos)
(while
(progn (c-backward-token-2)
(eq (char-after) ?\()))
(and (zerop (c-backward-token-2))
(eq (char-after) ?\()))
(looking-at c-arithmetic-op-regexp)))
(cons nil nil))
;; In a C++ member initialization list.