Hi, I like to write CSS rules on one line, but Emacs completion-at-point system always seems to fail if there is more than one rule per line. It seems the reason was that css--complete-property-value as part of css-completion-at-point falsely reported a match, because it ignored the semi-colon. This means that in situations like these color: red; padd ^ point here the CAPF backend assumed a "color" value should be completed, even though the user probably wants the "padd" string to be completed. The patch below fixes this by making sure css--complete-property-value doesn't ignore the semi-colon. -- Philip K.