Merge pull request #6689 from jbampton/run-manual-hooks

This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-12-29 11:56:46 +09:00
committed by GitHub
3 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ to both the Makefile and the Rakefile. Run them with:
- `make checkupdate` or `rake checkupdate`
To configure `pre-commit` you can modify the config file [.pre-commit-config.yaml](.pre-commit-config.yaml).
We use [GitHub Actions](.github/workflows/lint.yml) to run `pre-commit` on every pull request.
We use [GitHub Actions](.github/workflows/pre-commit.yml) to run `pre-commit` on every pull request.
### pre-commit quick links
+1 -1
View File
@@ -134,7 +134,7 @@ mruby now supports pattern matching (case/in) syntax:
- [#6525](https://github.com/mruby/mruby/pull/6525) Skip adding empty input to mirb history
- [#6526](https://github.com/mruby/mruby/pull/6526) Add build config for Luckfox Pico embedded SBC
- [#6528](https://github.com/mruby/mruby/pull/6528) misc: fix spelling
- [#6530](https://github.com/mruby/mruby/pull/6530) Revert "class.c (find_visibility_scope): when callinfo returns, *ep == NULL; #6512"
- [#6530](https://github.com/mruby/mruby/pull/6530) Revert "class.c (find_visibility_scope): when callinfo returns, \*ep == NULL; #6512"
- [#6531](https://github.com/mruby/mruby/pull/6531) Improve method table performance by rehashing at 75% load factor
- [#6532](https://github.com/mruby/mruby/pull/6532) Reverted method table optimizations to prioritize memory savings
- [#6533](https://github.com/mruby/mruby/pull/6533) Fix calling `extended` callback
+17 -17
View File
@@ -17,23 +17,23 @@ mrdb [switches] programfile
## Debugger Commands
| Command | Abbreviation | Description |
| ------------------ | ------------ | ---------------------------- |
| `break` | `b` | Set a breakpoint |
| `continue` | `c` | Continue execution |
| `delete` | `d` | Delete breakpoints |
| `disable` | `dis` | Disable breakpoints |
| `enable` | `en` | Enable breakpoints |
| `eval` | `ev` | Evaluate expression |
| `help` | `h` | Show help |
| `info breakpoints` | `i b` | Show breakpoint information |
| `info locals` | `i l` | Show local variables |
| `list` | `l` | List source code |
| `print` | `p` | Print expression value |
| `quit` | `q` | Quit debugger |
| `run` | `r` | Run program |
| `step` | `s` | Step into |
| `next` | `n` | Step over |
| Command | Abbreviation | Description |
| ------------------ | ------------ | --------------------------- |
| `break` | `b` | Set a breakpoint |
| `continue` | `c` | Continue execution |
| `delete` | `d` | Delete breakpoints |
| `disable` | `dis` | Disable breakpoints |
| `enable` | `en` | Enable breakpoints |
| `eval` | `ev` | Evaluate expression |
| `help` | `h` | Show help |
| `info breakpoints` | `i b` | Show breakpoint information |
| `info locals` | `i l` | Show local variables |
| `list` | `l` | List source code |
| `print` | `p` | Print expression value |
| `quit` | `q` | Quit debugger |
| `run` | `r` | Run program |
| `step` | `s` | Step into |
| `next` | `n` | Step over |
## Examples