Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Thanks a lot! The answer as is sets font for the "stack frames", "locals" and "registers" buffers. The "input/output" buffer remains with default font, and this can be fixed with: (advice-add 'comint-mode :after 'my-buffer-face-mode-fixed). Commented May 4, 2018 at 10:10
  • Since you mentioned it, buffer-menu mode was already working well with (add-hook 'buffer-menu-mode-hook 'my-buffer-face-mode-fixed). Commented May 4, 2018 at 10:12
  • Regarding my first comment: for comint-mode, there is a working hook so no need to resort to advice-add, the traditional way works: (add-hook 'comint-mode-hook 'my-buffer-face-mode-fixed) Commented May 4, 2018 at 11:54