comparison lisp/emacs-lisp/edebug.el @ 27483:b51c38875faf

Add specs for push, pop, dotimes, dolist, unless, when.
author Dave Love <fx@gnu.org>
date Fri, 28 Jan 2000 22:12:29 +0000
parents 6a6b75706812
children b393b2d78c62
comparison
equal deleted inserted replaced
27482:a5ab0c9ced78 27483:b51c38875faf
2122 (def-edebug-spec combine-after-change-calls t) 2122 (def-edebug-spec combine-after-change-calls t)
2123 (def-edebug-spec with-temp-file t) 2123 (def-edebug-spec with-temp-file t)
2124 (def-edebug-spec with-temp-buffer t) 2124 (def-edebug-spec with-temp-buffer t)
2125 (def-edebug-spec with-temp-message t) 2125 (def-edebug-spec with-temp-message t)
2126 (def-edebug-spec with-syntax-table t) 2126 (def-edebug-spec with-syntax-table t)
2127 (def-edebug-spec dolist '((symbolp form &rest form) &rest form))
2128 (def-edebug-spec dotimes '((symbolp form &rest form) &rest form))
2129 (def-edebug-spec push '(&rest form))
2130 (def-edebug-spec pop '(&rest form))
2131 (def-edebug-spec unless '(&rest form))
2132 (def-edebug-spec when '(&rest form))
2127 2133
2128 ;; Anything else? 2134 ;; Anything else?
2129 2135
2130 2136
2131 ;; Some miscellaneous specs for macros in public packages. 2137 ;; Some miscellaneous specs for macros in public packages.