Function: *table--cell-dabbrev-expand
*table--cell-dabbrev-expand is an interactive and byte-compiled
function defined in table.el.gz.
Signature
(*table--cell-dabbrev-expand ARG)
Documentation
Table cell version of dabbrev-expand.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun *table--cell-dabbrev-expand (arg)
"Table cell version of `dabbrev-expand'."
(interactive "*P")
(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-expand arg))))