Changeset 815
- Timestamp:
- May 7, 2004, 9:56:35 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/examples/cocoa-editor.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/examples/cocoa-editor.lisp
r811 r815 598 598 (point (hi::buffer-point buffer))) 599 599 #+debug (#_NSLog #@"Syntax check for blinking") 600 ( hemlock::pre-command-parse-check point)601 (when (hemlock::valid-spot point nil)602 (cond ((eql (hi::next-character point) #\()600 (cond ((eql (hi::next-character point) #\() 601 (hemlock::pre-command-parse-check point) 602 (when (hemlock::valid-spot point nil) 603 603 (hi::with-mark ((temp point)) 604 604 (when (hemlock::list-offset temp 1) … … 606 606 (setf (text-view-blink-location self) 607 607 (1- (mark-absolute-position temp)) 608 (text-view-blink-enabled self) #$YES)))) 609 ((eql (hi::previous-character point) #\)) 608 (text-view-blink-enabled self) #$YES))))) 609 ((eql (hi::previous-character point) #\)) 610 (hemlock::pre-command-parse-check point) 611 (when (hemlock::valid-spot point nil) 610 612 (hi::with-mark ((temp point)) 611 613 (when (hemlock::list-offset temp -1) … … 1836 1838 1837 1839 1838 (defmethod hi::save-hemlock-document ((self hemlock-editor-document))1840 (defmethod hi::save-hemlock-document-as ((self hemlock-editor-document)) 1839 1841 (send self 1840 1842 :perform-selector-on-main-thread (@selector "saveDocumentAs:")
Note:
See TracChangeset
for help on using the changeset viewer.
