Function: c-truncate-bs-cache

c-truncate-bs-cache is a byte-compiled function defined in cc-engine.el.gz.

Signature

(c-truncate-bs-cache POS &rest IGNORE)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-truncate-bs-cache (pos &rest _ignore)
  ;; Truncate the upper bound of the cache `c-bs-cache' to POS, if it is
  ;; higher than that position.  This is called as either a before- or
  ;; after-change-function.
  (setq c-bs-cache-limit
	(min c-bs-cache-limit pos)))