Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (427 - 429 of 1030)

Ticket Resolution Summary Owner Reporter
#28 fixed Mouse click should terminate incremental search Gary Byers Andrew Shalit
Description

Clicking the mouse in a text window moves the point but does not terminate incremental search. Subsequent typing doesn't get inserted at the point (as one would expect), it gets appended to the search string and the search resumes. This usually ends with confusing messages about search strings not being found.

#44 fixed Mouse clicks should have a Hemlock command binding. Gary Byers Gary Byers
Description

Or otherwise be ignored.

(Left mouse down is now passed to Hemlock so that it can terminate isearch, but Hemlock beeps on leftdown in other contexts. As anyone who had their speakers unmuted would have noticed.)

#1061 fixed Multidimensional array reader syntax Fred Bayer
Description

The reader signals an error when the first sequence in the initial contents list isn't a list, but a vector, bitvector or string when parsing a 2-dimensional array literal:

? #2a("ab" #*01)

Error: Reader error on #<CCL::RECORDING-CHARACTER-INPUT-STREAM #x2100CE960D>,

near position 14:

Initial contents for #A is inconsistent with dimensions: #2A("ab" #<SIMPLE-BIT-VECTOR 2>)

While executing: CCL::SIGNAL-READER-ERROR, in process listener(1).

If the first sequence is a list, everything works fine:

? #2a((1 2) "ab" #*10) #2A((1 2) (#\a #\b) (1 0))

Creating the array with make-array also works fine:

? (make-array '(2 2) :initial-contents '("ab" #*10)) #2A((#\a #\b) (1 0))

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.