Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (715 - 717 of 1030)

Ticket Resolution Summary Owner Reporter
#722 invalid Improve editor selection Jeremy Jones
Description

From Shannon 8/19/10: Selecting stuff in the editor leaves a lot to be desired. The editor seems to get confused as to whether you wish to select the stuff between parens with a double click, or just highlight the matching parens. I (the user) am confused as to whether hitting <enter> after such will actually execute the s-expression or not. [can't reproduce this today. Might have been fixed.]

#728 fixed (ccl::choose-file-dialog) bug p2
Description

In trunk, (ccl::choose-file-dialog) sometimes works, but opening a directory then selecting a file causes CCL to crash. This in 1.6-dev-r14201M-trunk, this bug seems to be absent in 1.5-rc1-r13620M. Exception Type: EXC_BAD_ACCESS (SIGSEGV)

#732 worksforme small unicode problem Keith Morgan
Description

I'm doing an experiment in formatting some files that use Devanagari unicode characters. The input file is utf8, and it's my intention to produce a utf8 output file. The following function reads a sexp, and for each correctly prints a Devanagari word to the screen, and apparently writes the same word as garbage to the output file. Can you please tell me the right stream parameters? Thanks.

(defun format-dict ()
  (let ((fi "/Users/kmorgan/documents/yoga/sanskrit/roots/roots.txt")
        (fo "/Users/kmorgan/documents/yoga/sanskrit/roots/dict.txt"))
    (with-open-file (si fi :external-format :utf-8)
      (with-open-file (so fo  :direction :output :if-exists :supersede :external-format :utf-8)
        (let ((*print-miser-width* 120))
          (do ((x (read si nil nil) (read si nil nil))) 
              ((null x))
            (princ (second (second x)) so)
            (princ (second (second x)))
            ;(print-entry so x)
            ))))))
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.