Function: calc-undo-does-pushes

calc-undo-does-pushes is a byte-compiled function defined in calc-undo.el.gz.

Signature

(calc-undo-does-pushes LIST)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-undo.el.gz
(defun calc-undo-does-pushes (list)
  (and list
       (or (eq (car (car list)) 'pop)
	   (calc-undo-does-pushes (cdr list)))))