Alan-Chen99
Alan-Chen99
Consult apparently tags strings with invalid character; see https://www.reddit.com/r/emacs/comments/n43mdo/problem_with_narrowing_minibuffer_items_with/ Minimal example: `(hotfuzz--filter-c "tet" (list (concat "test" (char-to-string #x200000))))`
# Issue type - Question I have the following code in my config: ```emacs-lisp (evil-define-motion evil-visual-star-nomove (beg end) :jump nil :repeat nil :move-point nil (interactive "") (save-excursion (let ((evil-search-wrap t)...
Seems to always happen for me ``` explain-pause version: 0.1 emacs version: 29.0.60 not top level in wrap-native for # current #s(explain-pause-command-record root-emacs nil nil 7035 (25573 35504 951890 227000)...
It's unfortunate that allocation must go through refcell. Perhaps we can do better by using some sort of ghosttoken? ```rust fn alloc(cx: &'a mut Context, token: &'b Token) -> Object
### Confirmation - [x] I have checked the documentation (README, Wiki, docstrings, etc) - [ ] I am checking these without reading them. - [x] I have searched previous issues...
### Feature Description `elpaca-process-poll` currently runs a emacs subprocess which runs the target process. A subprocess is already sufficiently isolated so this is not needed. ### Confirmation - [x] The...
```python from __future__ import annotations from dataclasses import dataclass from typing import Final @dataclass class A[T]: v: Final[T] def f1[T2: int](self: A[T2]) -> T2: # ok return self.v @property def...