Function: comp-lap-fall-through-p
comp-lap-fall-through-p is a byte-compiled function defined in
comp.el.gz.
Signature
(comp-lap-fall-through-p INST)
Documentation
Return t if INST falls through, nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp-lap-fall-through-p (inst)
"Return t if INST falls through, nil otherwise."
(when (not (memq (car inst) '(byte-goto byte-return)))
t))