rsc | 4f30f3b | 2004-03-30 05:03:29 +0000 | [diff] [blame^] | 1 | March 29, 2004 |
| 2 | |
| 3 | Add window resizing by dragging borders to rio. |
| 4 | Code from Axel Belinfante. |
| 5 | |
| 6 | Added code to make 9term fade itself when it loses |
| 7 | focus running under rio. |
| 8 | |
rsc | 25e0e4f | 2004-03-26 17:15:57 +0000 | [diff] [blame] | 9 | March 26, 2004 |
| 10 | |
| 11 | Fix 9term chording paste bug reported by Sam. |
| 12 | |
| 13 | Fix libdraw resize bug reported by Axel Belinfante. |
| 14 | |
rsc | 2774920 | 2004-03-26 17:31:41 +0000 | [diff] [blame] | 15 | Handle interrupts better in rc - don't kill background procs. |
| 16 | Reported by Sam. |
rsc | 25e0e4f | 2004-03-26 17:15:57 +0000 | [diff] [blame] | 17 | |
rsc | 6e9a344 | 2004-03-26 18:10:17 +0000 | [diff] [blame] | 18 | 9term OpenBSD support from Markus Friedl. |
rsc | a27e205 | 2004-03-25 23:08:24 +0000 | [diff] [blame] | 19 | |
rsc | d99b2f3 | 2004-03-26 19:20:10 +0000 | [diff] [blame] | 20 | More appeasement of Sun C compiler. |
| 21 | |
rsc | a27e205 | 2004-03-25 23:08:24 +0000 | [diff] [blame] | 22 | March 25, 2004 |
| 23 | |
| 24 | Change putenv not to free the string after calling real putenv. |
| 25 | Apparently BSDs copy the string but Linux and others use the |
| 26 | one you pass in. |
| 27 | |
| 28 | Add Indent command to acme listing. Reported by Rob Pike. |
| 29 | |
| 30 | Define clock to plumbclock in plumber/fsys.c to avoid name clash on SunOS. |
| 31 | Reported by Axel Belinfante and Markus Friedl. |
| 32 | |
| 33 | Expanded NOTES to discuss CVS some more. |
| 34 | |
| 35 | Change one instance of ulong in rio to unsigned long. |
| 36 | |
| 37 | Tweak SunOS ps from Axel Belinfante. |
| 38 | |
| 39 | Change diff not to mention the dirty word "stdout" anymore. |
| 40 | Reported by Taj Khattra et al. |
| 41 | |
| 42 | Change 9l to add -lpthread on OpenBSD. |
| 43 | Reported by Markus Friedl. |
| 44 | |
| 45 | Change 9l to add -Rfoo for each -Lfoo on the command line |
| 46 | on SunOS. Avoids need to maintain LD_LIBRARY_PATH. |
| 47 | Reported by Axel Belinfante. |
| 48 | |
| 49 | #define time to p9time in libc.h for systems where time_t != long (OpenBSD). |
| 50 | Reported by Markus Friedl. |
| 51 | |
| 52 | Add SHAPE support and bitmapped grey background back to rio. |
| 53 | Reported by Markus Friedl. |
| 54 | |
| 55 | Add various OpenBSD-specific files from Markus Friedl. |
| 56 | |
| 57 | Change rcmain to use "test" rather than "/bin/test" to accomodate |
| 58 | systems where test is in /usr/bin. Reported by Sam. |
| 59 | |
| 60 | Silence "unknown id '' in attach" message from acme. |
| 61 | There are just more attaches than there were in Plan 9, and not |
| 62 | all of them are for windows. |
| 63 | |
| 64 | Change 9term to handle "send" a little better. |
| 65 | |
| 66 | Add grep. Reported by Taj Khattra. |
| 67 | |
| 68 | Split lib9.h into u.h and libc.h, so that programs can |
| 69 | include u.h, then unix headers, then libc.h. Then changed |
| 70 | lib9 to do this. |
| 71 | Fixes many warnings on SunOS reported by Axel Belinfante. |
| 72 | |
| 73 | Change 9term not to misfree when plumbing empty string. |
| 74 | Fix reported by Taj Khattra. |
| 75 | |
| 76 | Fix threadexecl to process vararg list with va_list etc. rather |
| 77 | than using &f+1. The &f+1 trick fails on SunOS. Reported by |
| 78 | Axel Belinfate. |
| 79 | |
| 80 | Change x11-init to handle SunOS 24-bit colormapped screen |
| 81 | properly? Fix reported by Axel Belinfante. Let's just play along. |
| 82 | |
| 83 | Add awd. Suggested by Sam. |
| 84 | |
| 85 | 9term no longer aborts without plumber. |
| 86 | |
| 87 | Remove _p9translate from guts of various calls. |
| 88 | Instead, callers who want #9 or #d paths explicitly call unsharp |
| 89 | to translate them. |
| 90 | |
| 91 | Added ^F completion to 9term. |
| 92 | |
| 93 | Change win to use a real pty, so that things like rubout work. |
| 94 | |
| 95 | Change 9term, win to handle rubout even when output |
| 96 | is streaming in. |
| 97 | |