* bug#67674: 30.0.50; shr-heading's update broke racket-mode's documention read
@ 2023-12-07 2:49 Mou Tong
2023-12-08 1:09 ` bug#67674: 30.0.50; shr-heading's update broke racket-mode's documention Mou Tong
0 siblings, 1 reply; 3+ messages in thread
From: Mou Tong @ 2023-12-07 2:49 UTC (permalink / raw)
To: 67674
[-- Attachment #1: Type: text/plain, Size: 1149 bytes --]
Hi there, I noticed that after this commit
https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=d41a5e4b1bafbb974d2c886d3198d9bda7821591
There are some changes in the function `shr-heading`.
```diff
(defun shr-heading (dom &rest types)
(shr-ensure-paragraph)
- (apply #'shr-fontize-dom dom types)
+ (let ((start (point))
+ (level (string-to-number
+ (string-remove-prefix "shr-h" (symbol-name (car types))))))
+ (apply #'shr-fontize-dom dom types)
+ (put-text-property start (pos-eol) 'outline-level level))
(shr-ensure-paragraph))
```
In racket-mode, when looking for local docs, racket-mode will use the
following function to `shr-heading`:
(shr-heading dom face)
Here `dom` is unrelated to this, problem occurs in `face`:
`racket-mode` passed `face` (as an example, which value is
`(variable-pitch (:height 1.6))`) to `shr-heading`, when `shr-heading`
parses it:
(symbol-name (car '((variable-patch (:height 1.6)))))
error occurs:
(wrong-type-argument symbolp (variable-patch (:height 1.6)))
Does this counts as an Emacs's bug, or racket-mode's problem? thx
[-- Attachment #2: Type: text/html, Size: 4341 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-12-08 6:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-07 2:49 bug#67674: 30.0.50; shr-heading's update broke racket-mode's documention read Mou Tong
2023-12-08 1:09 ` bug#67674: 30.0.50; shr-heading's update broke racket-mode's documention Mou Tong
2023-12-08 6:45 ` Eli Zaretskii
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).