Function: dbus-monitor-goto-serial

dbus-monitor-goto-serial is an interactive and byte-compiled function defined in dbus.el.gz.

Signature

(dbus-monitor-goto-serial)

Documentation

Goto D-Bus message with the same serial number.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-monitor-goto-serial ()
  "Goto D-Bus message with the same serial number."
  (interactive)
  (when (mouse-event-p last-input-event) (mouse-set-point last-input-event))
  (when-let ((point (get-text-property (point) 'dbus-serial)))
    (goto-char point)))