summaryrefslogtreecommitdiff
path: root/itches/emacs/tracker.org
blob: ff3a6feef29ac8531a5b777015e239a47ddee746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
* participating
** bug#28969 dired: Confirmation prompt for wildcard not surrounded by whitespace
- v6 posted in December 2019.
- Eli skeptical of final UI.
* following
** bug#39799 Most emoji sequences don’t render correctly
* cogitating
** bug
*** hi-lock-mode does not automatically pick up new occurrences in fundamental and text modes
See maybe bug#39597#41.
*** new debbugs.el command to apply git-format-patch attachments
To take some manual work off the maintainers:
- bug#39504#21
  #+begin_quote
  I did it by hand since there were two patches in the email and the `M-m'
  command in debbugs-gnu (which does all this applying and marking with
  bug numbers automatically) doesn't like that.
  #+end_quote
- bug#39504#24
  #+begin_src elisp
  (defun debbugs-gnu-am ()
    (gnus-mime-pipe-part "git am")
    (vc-checkin nil 'Git)
    (vc-git-log-edit-toggle-amend)
    ;; log-edit-done eventually errors out if vc-parent-buffer is not a
    ;; file-visiting buffer.
    (setq-local vc-parent-buffer (find-file-noselect "CONTRIBUTE")))
  #+end_src
** help
*** compilation-in-progress
Can someone make this snippet less ugly?
#+begin_src elisp
(let ((props (text-properties-at
              0 (car (alist-get 'compilation-in-progress mode-line-modes)))))
  (setf (alist-get 'compilation-in-progress mode-line-modes)
        (list
         (apply #'propertize "⚙" `(face compilation-mode-line-run ,@props)))))
#+end_src
*** gnus-cloud
Can't get it to work.
* closed
** TODO add older bugs
** bug#39504 eww/shr: Ensure faces of enclosing elements apply to <code> elements
Patch applied.

Unfortunately debbugs.el does not handle multiple patches per message;
the patch was thus applied manually, and somehow the first patch's
diff ended up with the second patch's title (and a whole new message
by the maintainer).

I'll try to follow-up with a =git-am=-based function to apply patches
at point from Gnus (cf. bug#39504#24).
** bug#39597 M-x occur adds fontification to fundamental-mode
Fixed by Stefan & Juri.
** bug#39680 electric-pair-mode broken by undo
Fixed by Stefan.

Still not clear why my ERT test is erratic.