* lisp/progmodes/cc-engine.el (c-forward-sws): Move a `setq'
form from out of a let binding. This form could have been
affected by the byte compiler bug bug#67116 before this was
fixed.
(cherry picked from commit
5340fdaade1f8fe7af08293619cca89ae0796fcf)
(c-put-is-sws (1+ rung-pos)
(1+ (point)))
(c-put-in-sws rung-pos
- (setq rung-pos (point)
- last-put-in-sws-pos rung-pos)))
+ (point))
+ (setq rung-pos (point)
+ last-put-in-sws-pos rung-pos))
;; Now move over any comments (x)or a CPP construct.
(setq simple-ws-end (point))