Function: orgtbl-hijacker-command-28

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

Signature

(orgtbl-hijacker-command-28 ARG)

Documentation

In tables, run org-table-rotate-recalc-marks.

Outside of tables, run the binding of C-#.

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-table-rotate-recalc-marks)
     (let (orgtbl-mode)
       (call-interactively
	(or (key-binding [(control 35)]) 'orgtbl-error)))))
  nil nil
  "In tables, run `org-table-rotate-recalc-marks'.\nOutside of tables, run the binding of `C-#'."
  "p"]