Filtering...

acl2s

books/acl2s/distribution/acl2s-hooks/acl2s
other
(in-package "ACL2S-HOOKS")
other
(defconst *acl2s-hooks-version*
  "1.4.0.0")
other
(set-slow-alist-action :warning)
other
(include-book "hacking/hacker" :dir :system)
other
(include-book "hacking/defcode" :dir :system :ttags :all)
other
(include-book "hacking/redefun" :dir :system)
other
(include-book "hacking/rewrite-code" :dir :system)
other
(include-book "hacking/raw" :dir :system)
other
(include-book "canonical-print" :load-compiled-file :comp)
other
(include-book "acl2s-book-support" :load-compiled-file :comp)
other
(include-book "categorize-input" :load-compiled-file :comp)
other
(include-book "super-history" :load-compiled-file :comp :ttags ((:acl2s-super-history) (defcode)))
other
(include-book "protection-hooks" :load-compiled-file :comp :ttags ((:acl2s-protection) (:acl2s-super-history)
    (defcode)))
other
(include-book "interaction-hooks" :load-compiled-file :comp :ttags ((:acl2s-protection) (:acl2s-super-history)
    (:acl2s-interaction)
    (defcode)))
other
(include-book "markup-hooks" :load-compiled-file :comp :ttags ((:acl2s-markup) (defcode)))
other
(program)
other
(set-state-ok t)
acl2s-beginfunction
(defun acl2s-begin
  (secret state)
  (declare (ignorable secret))
  (er-progn (acl2s-interaction-begin state)
    (acl2s-markup-begin state)
    (acl2s-protection-begin secret
      state)))
other
(redef+)
print-ttag-notefunction
(defun print-ttag-note
  (val active-book-name
    include-bookp
    deferred-p
    state)
  (declare (xargs :stobjs state)
    (ignore val
      active-book-name
      include-bookp
      deferred-p))
  state)
other
(redef-)