Function: *table--present-cell-popup-menu

*table--present-cell-popup-menu is an interactive and byte-compiled function defined in table.el.gz.

Signature

(*table--present-cell-popup-menu EVENT)

Documentation

Present and handle cell popup menu.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun *table--present-cell-popup-menu (event)
  "Present and handle cell popup menu."
  (interactive "e")
  (select-window (posn-window (event-start event)))
  (goto-char (posn-point (event-start event)))
  (let ((item-list (x-popup-menu event table-cell-menu-map))
        (func table-cell-menu-map))
    (while item-list
      (setq func (nth 3 (assoc (car item-list) func)))
      (setq item-list (cdr item-list)))
    (if (and (symbolp func) (fboundp func))
        (call-interactively func))))