My first time submitting a bug. I didn't understand Jira very well; it asked me which project and I couldn't figure out the right project (I assumed ClojureCLR because the pprint issues seem to be tagged 'CLR', but I don't know if ClojureCLR = CLR or even what CLR stands for) and I couldn't figure out if the bug had already been reported (every search seemed to turn up lots of results that were not relevant, didn't include all my search terms). And I didn't see any "Read this before submitting a bug report!!" page like I'd expect for a project of this size. So my apologies if I got this wrong.
Expected behavior:
`
user> (use 'clojure.pprint)
user> (with-pprint-dispatch code-dispatch
(write '(ns bleh
(:refer-clojure :only [])
(:require [blah :refer :all]))
:pretty true))
(ns bleh
(:refer-clojure :only [])
(:require [blah :refer :all]))
nil
user>
`
Actual behavior:
`
user> (use 'clojure.pprint)
user> (with-pprint-dispatch code-dispatch
(write '(ns bleh
(:refer-clojure :only [])
(:require [blah :refer :all]))
:pretty true))
Exception Not enough arguments for format definition clojure.pprint/next-arg (cl_format.clj:93)
(ns
`