From: Tino Calancha <tino.calancha@gmail.com>
To: 24104@debbugs.gnu.org
Subject: bug#24104: 25.1.50; frame-or-buffer-changed-p also check file size
Date: Fri, 29 Jul 2016 21:10:29 +0900 (JST) [thread overview]
Message-ID: <alpine.DEB.2.20.1607292109340.27947@calancha-pc> (raw)
Assume a buffer BUF, with size, SIZE, returning non-nil for predicate
'buffer-modified-p'; then we write some text on BUF, so that the
new size is SIZE_2 != SIZE.
In this scenario, 'frame-or-buffer-changed-p' return nil, i.e.,
the buffer state appears to not have changed.
It might be convenient to extend 'frame-or-buffer-changed-p' so that,
it also check the buffer size. Then, for instance, Ibuffer operating
on auto mode ('ibuffer-auto-mode') would update the listing.
emacs -Q --eval="(progn (require 'ibuffer) (ibuffer))"
M-x ibuffer-auto-mode RET
M-! echo Hi Emacs! RET
;; *Shell Command Output* appear with size 10
M-! echo Could you update Ibuffer for me?
;; It seems not: maybe i should add please next time...
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
From 1c9ef031b2bd283c6641d5249cbfa7226b764ab1 Mon Sep 17 00:00:00 2001
From: Tino Calancha <tino.calancha@gmail.com>
Date: Fri, 29 Jul 2016 21:05:23 +0900
Subject: [PATCH] frame-or-buffer-changed-p also check file size
* src/dispnew.c (frame-or-buffer-changed-p):
Check if buffer size has changed.
Update the new file size in VARIABLE (Bug#24104).
---
src/dispnew.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/dispnew.c b/src/dispnew.c
index 82d0b76..0218a68 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -5812,7 +5812,7 @@ DEFUN ("frame-or-buffer-changed-p",
Fframe_or_buffer_changed_p,
VARIABLE is a variable name whose value is either nil or a state vector
that will be updated to contain all frames and buffers,
aside from buffers whose names start with space,
-along with the buffers' read-only and modified flags. This allows a fast
+along with the buffers' read-only, modified flags and buffer size. This
allows a fast
check to see whether buffer menus might need to be recomputed.
If this function returns non-nil, it updates the internal vector to
reflect
the current state.
@@ -5864,6 +5864,8 @@ pass nil for VARIABLE. */)
goto changed;
if (!EQ (AREF (state, idx++), Fbuffer_modified_p (buf)))
goto changed;
+ if (!EQ (AREF (state, idx++), BVAR (XBUFFER (buf), save_length)))
+ goto changed;
}
if (idx == ASIZE (state))
goto changed;
@@ -5914,6 +5916,8 @@ pass nil for VARIABLE. */)
idx++;
ASET (state, idx, Fbuffer_modified_p (buf));
idx++;
+ ASET (state, idx, Fbuffer_size (buf));
+ idx++;
}
/* Fill up the vector with lambdas (always at least one). */
ASET (state, idx, Qlambda);
--
2.8.1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
GNU Emacs 25.1.50 (x86_64-pc-linux-gnu, GTK+ Version 3.20.6)
of 2016-07-28
Repository revision: 4a5b6e621c68172bb69d60fe8a76932f7c779f81
next reply other threads:[~2016-07-29 12:10 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-29 12:10 Tino Calancha [this message]
2016-07-29 13:20 ` bug#24104: 25.1.50; frame-or-buffer-changed-p also check file size Eli Zaretskii
2016-07-29 13:57 ` Tino Calancha
2020-08-12 1:59 ` Stefan Kangas
[not found] <<alpine.DEB.2.20.1607292109340.27947@calancha-pc>
[not found] ` <<83fuqsr36k.fsf@gnu.org>
2016-07-29 14:57 ` Drew Adams
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=alpine.DEB.2.20.1607292109340.27947@calancha-pc \
--to=tino.calancha@gmail.com \
--cc=24104@debbugs.gnu.org \
/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.