Function: inferior-octave-completion-at-point
inferior-octave-completion-at-point is a byte-compiled function
defined in octave.el.gz.
Signature
(inferior-octave-completion-at-point)
Documentation
Return the data to complete the Octave symbol at point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/octave.el.gz
(defun inferior-octave-completion-at-point ()
"Return the data to complete the Octave symbol at point."
;; https://debbugs.gnu.org/14300
(unless (string-search "/" (or (comint--match-partial-filename) ""))
(let ((beg (save-excursion
(skip-syntax-backward "w_" (comint-line-beginning-position))
(point)))
(end (point)))
(when (and beg (> end beg))
(list beg end (completion-table-in-turn
(inferior-octave-completion-table)
'comint-completion-file-name-table))))))