Function: ede-pmake-end-of-variable

ede-pmake-end-of-variable is a byte-compiled function defined in pmake.el.gz.

Signature

(ede-pmake-end-of-variable)

Documentation

Move to the end of the variable declaration under point.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/pmake.el.gz
;;; VARIABLE insertion
;;
(defun ede-pmake-end-of-variable ()
  "Move to the end of the variable declaration under point."
  (end-of-line)
  (while (= (preceding-char) ?\\)
    (forward-char 1)
    (end-of-line))
  )