Correct the handling of two c-state-cache state variables.
cc-engine.el (c-state-cache-init): Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly. (c-record-parse-state-state): record c-state-semi-nonlit-pos-cache\(-limit\)?.
This commit is contained in:
parent
c2cbbdd165
commit
8ed43f1548
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2012-09-09 Alan Mackenzie <acm@muc.de>
|
||||
|
||||
* progmodes/cc-engine.el (c-state-cache-init): Initialise
|
||||
c-state-semi-nonlit-pos-cache\(-limit\)? properly.
|
||||
(c-record-parse-state-state): record
|
||||
c-state-semi-nonlit-pos-cache\(-limit\)?.
|
||||
|
||||
2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* register.el (register-separator): Rename from
|
||||
|
|
|
@ -3091,6 +3091,8 @@ comment at the start of cc-engine.el for more info."
|
|||
c-state-cache-good-pos 1
|
||||
c-state-nonlit-pos-cache nil
|
||||
c-state-nonlit-pos-cache-limit 1
|
||||
c-state-semi-nonlit-pos-cache nil
|
||||
c-state-semi-nonlit-pos-cache-limit 1
|
||||
c-state-brace-pair-desert nil
|
||||
c-state-point-min 1
|
||||
c-state-point-min-lit-type nil
|
||||
|
@ -3350,6 +3352,8 @@ comment at the start of cc-engine.el for more info."
|
|||
c-state-cache-good-pos
|
||||
c-state-nonlit-pos-cache
|
||||
c-state-nonlit-pos-cache-limit
|
||||
c-state-semi-nonlit-pos-cache
|
||||
c-state-semi-nonlit-pos-cache-limit
|
||||
c-state-brace-pair-desert
|
||||
c-state-point-min
|
||||
c-state-point-min-lit-type
|
||||
|
|
Loading…
Add table
Reference in a new issue