Changeset 6613


Ignore:
Timestamp:
May 25, 2007, 5:41:52 AM (18 years ago)
Author:
Gary Byers
Message:

Disable #$ONLCR on the pty.

Dim "Revert" for listeners.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ide-1.0/ccl/examples/cocoa-listener.lisp

    r6234 r6613  
    2828  ;; to the pty, it's critical that we make the pty non-blocking.
    2929  ;; Has this been true for the last few years (native threads) ?
    30   (fd-set-flag pty #$O_NONBLOCK)
     30  ;(fd-set-flag pty #$O_NONBLOCK)
    3131  (disable-tty-local-modes pty (logior #$ECHO #$ECHOCTL #$ISIG))
     32  (disable-tty-output-modes pty #$ONLCR) 
    3233  pty)
    3334
     
    277278      (let* ((action (#/action item)))
    278279        (cond
     280          ((eql action (@selector #/revertDocumentToSaved:))
     281           (values t nil))
    279282          ((eql action (@selector #/interrupt:)) (values t t))
    280283          ((eql action (@selector #/backtrace:))
Note: See TracChangeset for help on using the changeset viewer.