Function: *table--cell-dabbrev-completion
*table--cell-dabbrev-completion is an interactive and byte-compiled
function defined in table.el.gz.
Signature
(*table--cell-dabbrev-completion &optional ARG)
Documentation
Table cell version of dabbrev-completion.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun *table--cell-dabbrev-completion (&optional arg)
"Table cell version of `dabbrev-completion'."
(interactive "*P")
(error "`dabbrev-completion' is incompatible with table")
(let ((dabbrev-abbrev-char-regexp (concat "[^"
(char-to-string table-cell-vertical-char)
(char-to-string table-cell-intersection-char)
" \n]")))
(table-with-cache-buffer
(dabbrev-completion arg))))