Function: c-awk-context-expand-fl-region

c-awk-context-expand-fl-region is a byte-compiled function defined in cc-awk.el.gz.

Signature

(c-awk-context-expand-fl-region BEG END)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-awk.el.gz
(defun c-awk-context-expand-fl-region (beg end)
  ;; Return a cons (NEW-BEG . NEW-END), where NEW-BEG is the beginning of the
  ;; logical line BEG is on, and NEW-END is the beginning of the line after
  ;; the end of the logical line that END is on.
  (cons (save-excursion (c-awk-beginning-of-logical-line beg))
	(c-awk-beyond-logical-line end)))