Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 1630)

Ticket Resolution Summary Owner Reporter
#489 wontfix pretty-print-width not honored by pretty-print in some cases. Alan Post
Description

I'm printing out some fairly large symbolic expressions. They are printing well past column 79, even in cases where I can see formatting that could be done to bring them under 79 columns. Here is a recent example:

(text (paragraphs
        (paragraph
          (sentence
            (term (sumti (LA-clause
                           (cmavo (LA "la"))
                           (CMENE-clause cmene "frank"))))
            (selbri (BRIVLA-clause (gismu "cusku")))
            (term (sumti (LU-clause
                           (cmavo (LU "lu"))
                           (text (paragraphs
                                   (paragraph
                                     (sentence
                                       (term (sumti (KOhA-clause (cmavo (KOhA "mi")))))
                                       (selbri (BRIVLA-clause (gismu "prami")))
                                       (term (sumti (KOhA-clause
                                                      (cmavo (KOhA "do"))
                                                      (TO-clause
                                                        (cmavo (TO "to'i"))
                                                        (UI-clause (cmavo (UI "sa'a")))
                                                        (text (paragraphs
                                                                (paragraph
                                                                  (sentence
                                                                    (term (sumti (KOhA-clause (cmavo (KOhA "do")))))
                                                                    (selbri (GOhA-clause (cmavo (GOhA "du"))))
                                                                    (term (sumti (LA-clause
                                                                                   (cmavo (LA "la"))
                                                                                   (CMENE-clause cmene "djein"))))))))
                                                        (TOI-clause (cmavo (TOI "toi")))))))))))
                           (LIhU-clause (cmavo (LIhU "li'u"))))))))))

I would expect some of the earlier constructs, like the first (text ...) element, or the (term ...) elements under (sentence ...) to be folded like (paragraphs (paragraph (sentence ...))) is.

#506 fixed pretty-print does not escape strings like write does Alan Post
Description

I would expect the follow to both print "\t" to the screen:

(write "\t")
(pretty-print "\t")

Just like these both print "\"" to the screen:

(write "\")
(pretty-print "\"")

pretty-print instead prints a literal tab between double quotes.

#543 fixed (declare (lambda-lift)) infinite loop. felix winkelmann Alan Post
Description

I have done some refactoring to my package genturfa'i. After completing my refactoring, the lambda-lift option now never terminates while compiling genturfa'i.

To recreate this problem:

svn co -r23157 https://code.call-cc.org/svn/chicken-eggs/release/4/genturfahi/trunk
cd trunk
chicken-install

The problem is occurring in the function compute-extra-variables in optimizer.scm. I narrowed this down using the verbose option to the compiler invoked by chicken-install, but attempts on my part to provide a simpler test case have failed.

Turning off (declare (lambda-lift)) causes genturfa'i to compile normally. I would expect to be able to compile my module with lambda lifting, rather than having in never terminate.

Note: See TracQuery for help on using queries.