emacs-framebuffer

Emacs library to show images and documents in console using Linux framebuffer
Log | Files | Refs

commit f34d745890917c9e2184a67f16c20c497a8dc151
parent 8cb784ccb1692f96f7f4e07de63f5339322b1a94
Author: Tomas Hlavaty <tom@logand.com>
Date:   Sun, 24 May 2020 06:57:06 +0200

improve readability

Diffstat:
Memacs-framebuffer.el | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/emacs-framebuffer.el b/emacs-framebuffer.el @@ -90,9 +90,9 @@ (insert-file-contents-literally file) (let ((brook (framebuffer-buffer-brook))) (when (and (= 137 (funcall brook)) - (= 80 (funcall brook)) - (= 78 (funcall brook)) - (= 71 (funcall brook)) + (= ?P (funcall brook)) + (= ?N (funcall brook)) + (= ?G (funcall brook)) (= 13 (funcall brook)) (= 10 (funcall brook)) (= 26 (funcall brook))