Function: cpp-make-overlay-sticky

cpp-make-overlay-sticky is a byte-compiled function defined in cpp.el.gz.

Signature

(cpp-make-overlay-sticky OVERLAY)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cpp.el.gz
(defun cpp-make-overlay-sticky (overlay)
  ;; Make OVERLAY grow when you insert text at either end.
  (overlay-put overlay 'insert-in-front-hooks '(cpp-grow-overlay))
  (overlay-put overlay 'insert-behind-hooks '(cpp-grow-overlay)))