| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 9c: change -std=c17 to -stc=c11 based on feedback in \#716 | erentar | 2025-07-22 | 1 | -1/+1 |
| | | |||||
| * | u.h: define __USE_POSIX to make glibc happy | erentar | 2025-07-22 | 1 | -1/+1 |
| | | | | | glibc will only expose sigjmp_buf if __USE_POSIX is defined. | ||||
| * | 9c: Explicitly set c standard as newer changes in c23 break compilation | erentar | 2025-07-22 | 1 | -0/+1 |
| | | |||||
| * | 9c: "-Wdeprecated-pragma" is only present in clang and is absent from gcc | erentar | 2025-07-22 | 1 | -1/+0 |
| | | |||||
| * | libflate: fiz inflatezlibblock | Russ Cox | 2025-05-08 | 1 | -2/+2 |
| | | | | | This has obviously never been run. | ||||
| * | cmd/devdraw: avoid use of X button state field | Roger Peppe | 2025-03-29 | 1 | -51/+12 |
| | | | | | | | | | | | | | | | | | | | This bug is an intermittent annoyance and does not seem likely to be fixed soon. It means that every so often my acme becomes unusable because it behaves as if a mouse button is permanently set. Avoid that issue by keeping track of mouse button state directly. While we're about it, fix another annoying issue: under Linux the FocusOut event reset the kstate field but not the kbuttons field, meaning that the buttons state could inappropriately persist. This happened occasionally by accident, but was easy to reproduce: with the mouse button held down, drag outside the window and click Alt-Tab to switch away from the window. We see a KeyDown event followed by FocusOut but no KeyUp event. Change-Id: I3708316478c80c41806d7157ae9929c6cd84b662 | ||||
| * | .gitignore: add bin/mntgen | Igor Burago | 2025-02-17 | 1 | -0/+1 |
| | | |||||
| * | dist/main.html: remove dead link to Belorussian translation | macie | 2025-02-17 | 1 | -2/+0 |
| | | | | | | | According to web.archive.org this link is dead since 2012/2013. According to original issue (http://codereview.appspot.com/4251044) that translation could be a machine translation. | ||||
| * | man: don't paginate when using nroff | Anthony Sorace | 2025-01-29 | 2 | -6/+9 |
| | | | | | | | This tells bin/man to set the register L to very high to avoid pagination and updates tmac/tmac.an to use that value, if it's set, to set the page length. This is per Plan 9's rc/bin/man and sys/lib/tmac/tmac.an. | ||||
| * | mac: arrange for arm64 run on arm64 | Russ Cox | 2024-10-22 | 2 | -3/+11 |
| | | | | | Makes 9term.app work again (not put you in an x86_64 jail). | ||||
| * | devdraw: handle shift of real mouse buttons correctly | Russ Cox | 2024-06-17 | 2 | -10/+23 |
| | | |||||
| * | lib9: skip buggy S_ISCHR check in disksize on OpenBSD | Russ Cox | 2024-06-15 | 1 | -2/+0 |
| | | | | | The portable code is already checking S_ISCHR anyway. | ||||
| * | man: update indexes | Russ Cox | 2024-06-15 | 3 | -3/+11 |
| | | |||||
| * | acme: remove debug print | Russ Cox | 2024-06-15 | 1 | -1/+0 |
| | | |||||
| * | acme: shift button 3 for reverse search | Russ Cox | 2024-06-15 | 14 | -99/+269 |
| | | | | | | An experiment. Let's see if it's any good. Also document the Mac conventions in devdraw(3). | ||||
| * | all: quiet macOS build again | Russ Cox | 2024-06-15 | 2 | -1/+5 |
| | | |||||
| * | Remove redundant echo | Kevin Hovsäter | 2024-05-31 | 1 | -1/+0 |
| | | |||||
| * | INSTALL: fix $PLAN9 in message | Russ Cox | 2024-04-06 | 1 | -0/+2 |
| | | |||||
| * | tpic: clean up | Russ Cox | 2024-04-06 | 5 | -8/+14 |
| | | |||||
| * | acme: clean up environment after exec | Russ Cox | 2024-04-06 | 1 | -0/+9 |
| | | | | | Make up for the lack of a real rfork(RFENVG). | ||||
| * | .github/workflows/actions.yaml: Run CI on pull requests too | Sevan Janiyan | 2024-01-09 | 1 | -1/+5 |
| | | | | | Not just on pushes | ||||
| * | .travis.yml: Delete | Sevan Janiyan | 2024-01-09 | 1 | -41/+0 |
| | | | | | Service is no longer around. | ||||
| * | README.md: Add GH actions badge | Sevan Janiyan | 2024-01-09 | 1 | -1/+1 |
| | | |||||
| * | .github/workflows/actions.yaml: Add | Sevan Janiyan | 2024-01-09 | 1 | -0/+20 |
| | | | | | | | | | | Basic configuration which builds p9p on latest Ubuntu & macOS. Skipped on adding more operating systems as build would hold up waiting for runners, whereas with -latest targets, build starts immediately. Supported runners can be found on https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job | ||||
| * | mntgen: import mntgen(4) from Plan 9 | fgergo | 2024-01-09 | 2 | -0/+288 |
| | | | | | | new file: man/man4/mntgen.4 new file: src/cmd/mntgen.c | ||||
| * | ramfs: update to work | fgergo | 2023-12-30 | 1 | -5/+4 |
| | | | | | | | | ramfs: update to work erealloc(p, 0) is handled correctly removed fprint(2, ... removed assert() | ||||
| * | 9l: silence the 'ignoring duplicate libraries' warning on macOS | Igor Burago | 2023-12-18 | 1 | -0/+2 |
| | | |||||
| * | 9l: refactor the warning-silencing mechanics to match that of 9c | Igor Burago | 2023-12-18 | 2 | -21/+26 |
| | | |||||
| * | page: fix viewing of graphics | Russ Cox | 2023-09-13 | 1 | -2/+4 |
| | | | | | 940f1fd6af broke page on non-PDF files. | ||||
| * | acme: have Dump save both low and high DPI fontnames | matheuristic | 2023-09-05 | 1 | -4/+13 |
| | | | | | | | | | Instead of only saving a window's currently displayed font's name to the dump file, have Acme's Dump command save that window's combined low DPI and high DPI font names when both are available. See 9fans/plan9port#630 | ||||
| * | libframe: Match the color of tick | japanoise | 2023-08-23 | 1 | -1/+1 |
| | | | | | | | | Previously the vertical bar in tick was always black; fine if you use the standard black-on-white for everything, but any attempt to add a dark mode ran into trouble with the tick being half hard-coded black, half the new text color. | ||||
| * | libdraw: fix subfont scaling | matheuristic | 2023-08-21 | 1 | -1/+1 |
| | | | | | | A subfont with n chars has n+1 Fontchars, so scalesubfont() needs to scale all n+1 info entries. | ||||
| * | libregexp: allow up to 127 captured subexpressions in one regexp | Igor Burago | 2023-03-31 | 1 | -1/+1 |
| | | | | | 128 counting with the entire expression match ($0). | ||||
| * | plumber: increase NMATCHSUBEXP up to 100 | Igor Burago | 2023-03-31 | 1 | -1/+1 |
| | | | | | | Thus up to two-digit subexpression match variables are supported ($1 through $99) in addition to the entire expression match ($0). | ||||
| * | libregexp: allow up to 128 character classes in one regexp | Igor Burago | 2023-03-31 | 1 | -2/+2 |
| | | |||||
| * | README.md: Drop travis-ci badge | Sevan Janiyan | 2023-03-30 | 1 | -1/+0 |
| | | | | Service is dead. | ||||
| * | plumber: use strtoul to parse subexpression match variable substitutions | Igor Burago | 2023-03-30 | 1 | -24/+9 |
| | | |||||
| * | plumber: increase NMATCHSUBEXP up to libregexp's NSUBEXP | Igor Burago | 2023-03-30 | 1 | -1/+1 |
| | | |||||
| * | plumber: allow multi-digit subexpression match variable substitutions | Igor Burago | 2023-03-30 | 1 | -2/+23 |
| | | |||||
| * | plumber: parametrize the number of stored match pattern subexpressions | Igor Burago | 2023-03-30 | 2 | -9/+15 |
| | | |||||
| * | devdraw: Fix mouse wheel scrolling in 1-tick increments on macOS | zakkor | 2023-03-29 | 1 | -3/+3 |
| | | |||||
| * | Fix a typo | zhenya-1007 | 2023-01-23 | 1 | -1/+1 |
| | | |||||
| * | Fix tyop | David Arnold | 2023-01-09 | 1 | -1/+1 |
| | | |||||
| * | acme: allow larger paste amounts | Russ Cox | 2023-01-06 | 1 | -1/+1 |
| | | |||||
| * | page: scale ppi on high-res displays | Russ Cox | 2023-01-06 | 1 | -8/+8 |
| | | | | | Also fix wording of -w warning. | ||||
| * | rio: check the return value of malloc(3) | Tom Schwindl | 2022-09-12 | 3 | -0/+14 |
| | | |||||
| * | fix double free bug, simplify error handling, reduce X11 calls | MvA | 2022-09-11 | 1 | -63/+58 |
| | | |||||
| * | fix double free bug, simplify error handling, reduce X11 calls, improve style | MvA | 2022-09-11 | 1 | -100/+74 |
| | | |||||
| * | fix indentation | Derek Stevens | 2022-09-07 | 1 | -1/+1 |
| | | |||||
| * | acme/wind.c: redraw window body with bg color if too small for a single ↵ | Derek Stevens | 2022-09-07 | 1 | -0/+1 |
| | | | | | line; ref #10 | ||||
