bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#62216: Odd file corruption in clojure mode and emacs 30 HEAD


From: Gerd Möllmann
Subject: bug#62216: Odd file corruption in clojure mode and emacs 30 HEAD
Date: Wed, 30 Aug 2023 10:59:08 +0200
User-agent: Gnus/5.13 (Gnus v5.13)

Po Lu <luangruo@yahoo.com> writes:

> Jonathon McKitrick <jcm@SDF.ORG> writes:
>
>> What's the best mechanism to log these values in emacs?
>
> In this case, printf.

When I add this assumption:

modified   src/fileio.c
@@ -4805,8 +4805,11 @@ DEFUN ("insert-file-contents", Finsert_file_contents, 
Sinsert_file_contents,
 
        /* 'try' is reserved in some compilers (Microsoft C).  */
        ptrdiff_t trytry = min (gap_size, READ_BUF_SIZE);
+       ptrdiff_t trytry_old = min (total - inserted, READ_BUF_SIZE);
        if (!NILP (end))
          trytry = min (trytry, total - inserted);
+       if (trytry != trytry_old)
+         abort ();
 
        if (!seekable && NILP (end))
          {

and make bootstrap, temacs aborts.

Can someone tell if this assumption should hold?





reply via email to

[Prev in Thread] Current Thread [Next in Thread]