Function: idlwave-struct-borders

idlwave-struct-borders is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-struct-borders)

Documentation

Return the borders of the {...} after point as a cons cell.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-struct-borders ()
  "Return the borders of the {...} after point as a cons cell."
  (let (beg)
    (save-excursion
      (skip-chars-forward "^{")
      (setq beg (point))
      (condition-case nil (forward-list 1)
	(error (goto-char beg)))
      (cons beg (point)))))