Function: c-lineup-dont-change

c-lineup-dont-change is a byte-compiled function defined in cc-align.el.gz.

Signature

(c-lineup-dont-change LANGELEM)

Documentation

Do not change the indentation of the current line.

Works with: Any syntactic symbol.

Probably introduced at or before Emacs version 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-align.el.gz
(defun c-lineup-dont-change (_langelem)
  "Do not change the indentation of the current line.

Works with: Any syntactic symbol."
  (save-excursion
    (back-to-indentation)
    (vector (current-column))))