Function: c-lineup-streamop

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

Signature

(c-lineup-streamop LANGELEM)

Documentation

Line up C++ stream operators under each other.

Works with: stream-op.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-align.el.gz
(defun c-lineup-streamop (langelem)
  "Line up C++ stream operators under each other.

Works with: stream-op."
  (save-excursion
    (goto-char (c-langelem-pos langelem))
    (re-search-forward "<<\\|>>" (c-point 'eol) 'move)
    (goto-char (match-beginning 0))
    (vector (current-column))))