Function: orgtbl-hijacker-command-109

orgtbl-hijacker-command-109 is an interactive function defined in org-table.el.gz.

Signature

(orgtbl-hijacker-command-109 ARG)

Documentation

In tables, run org-delete-backward-char.

Outside of tables, run the binding of <backspace> or DEL.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;; Could not find source code, showing raw function object.
#[(arg)
  ((if (org-at-table-p) (call-interactively 'org-delete-backward-char)
     (let (orgtbl-mode)
       (call-interactively
	(or (key-binding [backspace]) (key-binding "") 'orgtbl-error)))))
  nil nil
  "In tables, run `org-delete-backward-char'.\nOutside of tables, run the binding of `<backspace>' or `DEL'."
  "p"]