From: Leo Butler <leo.butler@umanitoba.ca>
To: Tomas Hlavaty <tom@logand.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Screenshots, frame shots straight from Emacs
Date: Tue, 20 Jul 2021 12:42:31 -0500 [thread overview]
Message-ID: <87pmvcdgqg.fsf@t14.reltub.ca> (raw)
In-Reply-To: <874kcpxln9.fsf@logand.com> (Tomas Hlavaty's message of "Tue, 20 Jul 2021 13:36:10 +0200")
[-- Attachment #1: Type: text/plain, Size: 482 bytes --]
Tomas Hlavaty <tom@logand.com> writes:
> this one works with plain console emacs:
> https://logand.com/sw/emacs-framebuffer/file/emacs-framebuffer.el.html#l755
Nice. I have not tried it yet, but I do notice that
https://logand.com/sw/emacs-framebuffer/file/emacs-framebuffer.el.html#l28
requires cl.
Also, when byte-compiling the file, I ran into 3 warnings which are easy
to correct (see attached). I still haven't got it working, but I think
that is due to user error.
Leo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch --]
[-- Type: text/x-patch, Size: 1337 bytes --]
diff --git a/emacs-framebuffer.el b/emacs-framebuffer.el
index ce9334e..e339a4f 100644
--- a/emacs-framebuffer.el
+++ b/emacs-framebuffer.el
@@ -25,7 +25,7 @@
;;; (require 'emacs-framebuffer)
;;; (framebuffer-install)
-(require 'cl)
+(require 'cl-lib)
(defcustom framebuffer-w3mimgdisplay-program nil
"Specify the path to w3mimgdisplay program."
@@ -201,6 +201,9 @@
(framebuffer-file-exists-p "/usr/lib/w3m/w3mimgdisplay") ;; debian10
"w3mimgdisplay"))
+(make-variable-buffer-local
+ (defvar framebuffer-image-mode-current-page))
+
(defun framebuffer-draw (x y w h sx sy sw sh file)
(setq file (framebuffer-cache-remote file))
(let ((format (framebuffer-file-format file)))
@@ -465,8 +468,6 @@
(defvar framebuffer-image-mode-image-size))
(make-variable-buffer-local
(defvar framebuffer-image-mode-npages))
-(make-variable-buffer-local
- (defvar framebuffer-image-mode-current-page))
(make-variable-buffer-local
(defvar framebuffer-image-mode-scale))
(make-variable-buffer-local
@@ -663,7 +664,7 @@
(integer
(let* ((m (mod sec 3600))
(s (mod m 60)))
- (format "%d:%02d:%02d" (floor position 3600) (floor (- m s) 60) s)))))
+ (format "%d:%02d:%02d" (floor sec 3600) (floor (- m s) 60) s)))))
(defun framebuffer-fbmpv (filename &optional position)
(suspend-emacs
next prev parent reply other threads:[~2021-07-20 17:42 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-19 13:57 The convenient method to check/inspect/retrieve the definition/usage of any commands/symbols/operators used in elisp code Hongyi Zhao
2021-06-19 14:48 ` Omar Polo
2021-06-19 15:40 ` Hongyi Zhao
2021-06-19 15:57 ` Omar Polo
2021-06-19 17:09 ` Hongyi Zhao
2021-06-23 7:48 ` Omar Polo
2021-06-23 8:56 ` Hongyi Zhao
2021-06-23 9:17 ` Hongyi Zhao
2021-06-23 9:31 ` Screenshots, frame shots straight from Emacs Jean Louis
2021-06-25 22:04 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-25 22:34 ` Jean Louis
2021-06-25 23:55 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-28 6:47 ` Jean Louis
2021-07-01 21:01 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-02 12:50 ` Jean Louis
2021-07-02 15:34 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-20 11:36 ` Tomas Hlavaty
2021-07-20 17:42 ` Leo Butler [this message]
2021-07-20 19:44 ` Tomas Hlavaty
2021-07-20 20:21 ` Leo Butler
2021-07-20 20:50 ` Tomas Hlavaty
2021-07-31 23:25 ` Tomas Hlavaty
2021-08-01 2:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-01 6:40 ` Tomas Hlavaty
2021-08-01 7:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-01 7:42 ` Tomas Hlavaty
2021-08-02 13:57 ` Hongyi Zhao
2021-08-02 19:57 ` Tomas Hlavaty
2021-08-03 0:56 ` Hongyi Zhao
2021-08-01 2:59 ` Eduardo Ochs
2021-07-20 21:51 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-07-20 21:48 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-07-21 19:17 ` Leo Butler
2021-07-21 20:05 ` Stefan Monnier
2021-07-21 21:44 ` cl-lib questions (was: Re: Screenshots, frame shots straight from Emacs) Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-21 21:59 ` cl-lib questions Stefan Monnier via Users list for the GNU Emacs text editor
2021-07-21 22:09 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-22 8:37 ` Screenshots, frame shots straight from Emacs Tomas Hlavaty
2021-07-22 13:21 ` Stefan Monnier
2021-07-22 18:19 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-23 11:38 ` Jean Louis
2021-08-01 1:38 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-31 23:32 ` Tomas Hlavaty
2021-07-23 1:30 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-31 23:31 ` Tomas Hlavaty
2021-08-01 14:19 ` Stefan Monnier
2021-07-21 3:34 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-21 17:21 ` Leo Butler
2021-07-21 17:52 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-22 8:26 ` Tomas Hlavaty
2021-07-22 8:16 ` Tomas Hlavaty
2021-07-23 0:52 ` Hongyi Zhao
2021-07-23 1:35 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-23 1:55 ` Hongyi Zhao
2021-07-23 5:51 ` Jean Louis
2021-07-23 8:56 ` Hongyi Zhao
2021-07-23 10:28 ` Hongyi Zhao
2021-07-23 10:32 ` Hongyi Zhao
2021-07-23 11:04 ` Jean Louis
2021-07-23 11:41 ` Hongyi Zhao
2021-07-24 15:22 ` Hongyi Zhao
2021-07-23 9:16 ` Hongyi Zhao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87pmvcdgqg.fsf@t14.reltub.ca \
--to=leo.butler@umanitoba.ca \
--cc=help-gnu-emacs@gnu.org \
--cc=tom@logand.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.