comparison lisp/emacs-lisp/edebug.el @ 28516:b393b2d78c62

Fix specs for dolist, dotimes, push, pop, unless, when.
author Dave Love <fx@gnu.org>
date Sat, 08 Apr 2000 23:39:07 +0000
parents b51c38875faf
children 3ed20cb4c9b3
comparison
equal deleted inserted replaced
28515:75bd73426842 28516:b393b2d78c62
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)) 2127 (def-edebug-spec dolist ((symbolp form &rest form) &rest form))
2128 (def-edebug-spec dotimes '((symbolp form &rest form) &rest form)) 2128 (def-edebug-spec dotimes ((symbolp form &rest form) &rest form))
2129 (def-edebug-spec push '(&rest form)) 2129 (def-edebug-spec push (form sexp))
2130 (def-edebug-spec pop '(&rest form)) 2130 (def-edebug-spec pop (sexp))
2131 (def-edebug-spec unless '(&rest form)) 2131 (def-edebug-spec unless t)
2132 (def-edebug-spec when '(&rest form)) 2132 (def-edebug-spec when t)
2133 2133
2134 ;; Anything else? 2134 ;; Anything else?
2135 2135
2136 2136
2137 ;; Some miscellaneous specs for macros in public packages. 2137 ;; Some miscellaneous specs for macros in public packages.