Function: smie-edebug
smie-edebug is an interactive and byte-compiled function defined in
smie.el.gz.
Signature
(smie-edebug)
Documentation
Instrument the smie-rules-function for Edebug.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/smie.el.gz
(defun smie-edebug ()
"Instrument the `smie-rules-function' for Edebug."
(interactive)
(require 'edebug)
(if (symbolp smie-rules-function)
(edebug-instrument-function smie-rules-function)
(error "Sorry, don't know how to instrument a lambda expression")))