Function: hif-end-of-line
hif-end-of-line is a byte-compiled function defined in hideif.el.gz.
Signature
(hif-end-of-line)
Documentation
Find the end-point of line concatenation.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-end-of-line ()
"Find the end-point of line concatenation."
(end-of-line)
(while (progn (skip-chars-backward " \t" (line-beginning-position))
(= ?\\ (char-before)))
(end-of-line 2)))