unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf
@ 2015-08-06 19:47 Artur Malabarba
  2015-08-06 20:07 ` Nicolas Richard
  0 siblings, 1 reply; 6+ messages in thread
From: Artur Malabarba @ 2015-08-06 19:47 UTC (permalink / raw)
  To: 21201

From emacs -Q, run the following:

(cl-letf (((buffer-modified-p)))
  (insert "ookok"))

You'll get an error from trying to set a nil buffer.

Using `(buffer-modified-p (current-buffer))' instead works.

Backtrace:
Debugger entered--Lisp error: (wrong-type-argument stringp nil)
  set-buffer(nil)
  (save-current-buffer (set-buffer nil) (set-buffer-modified-p old))
  (unwind-protect (insert "ookok") (save-current-buffer (set-buffer
nil) (set-buffer-modified-p old)))
  (let* ((old (buffer-modified-p))) (unwind-protect (insert "ookok")
(save-current-buffer (set-buffer nil) (set-buffer-modified-p old))))
  eval((let* ((old (buffer-modified-p))) (unwind-protect (insert
"ookok") (save-current-buffer (set-buffer nil) (set-buffer-modified-p
old)))) nil)
  elisp--eval-last-sexp(nil)
  eval-last-sexp(nil)
  funcall-interactively(eval-last-sexp nil)
  call-interactively(eval-last-sexp nil nil)
  command-execute(eval-last-sexp)





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf
  2015-08-06 19:47 bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf Artur Malabarba
@ 2015-08-06 20:07 ` Nicolas Richard
  2015-08-06 21:44   ` Artur Malabarba
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Richard @ 2015-08-06 20:07 UTC (permalink / raw)
  To: Artur Malabarba; +Cc: 21201

Artur Malabarba <bruce.connor.am@gmail.com> writes:

> From emacs -Q, run the following:
>
> (cl-letf (((buffer-modified-p)))
>   (insert "ookok"))
>
> You'll get an error from trying to set a nil buffer.

Here is a fix:
--8<---------------cut here---------------start------------->8---
modified   lisp/emacs-lisp/cl-lib.el
@@ -634,8 +634,10 @@ If ALIST is non-nil, the new pairs are prepended to it."
 ;; Some more Emacs-related place types.
 (gv-define-simple-setter buffer-file-name set-visited-file-name t)
 (gv-define-setter buffer-modified-p (flag &optional buf)
-  `(with-current-buffer ,buf
-     (set-buffer-modified-p ,flag)))
+  (if buf
+      `(with-current-buffer ,buf
+         (set-buffer-modified-p ,flag))
+    `(set-buffer-modified-p ,flag)))
 (gv-define-simple-setter buffer-name rename-buffer t)
 (gv-define-setter buffer-string (store)
   `(insert (prog1 ,store (erase-buffer))))
--8<---------------cut here---------------end--------------->8---

-- 
Nico





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf
  2015-08-06 20:07 ` Nicolas Richard
@ 2015-08-06 21:44   ` Artur Malabarba
  2015-08-06 22:50     ` Nicolas Richard
  0 siblings, 1 reply; 6+ messages in thread
From: Artur Malabarba @ 2015-08-06 21:44 UTC (permalink / raw)
  To: Nicolas Richard; +Cc: 21201

2015-08-06 21:07 GMT+01:00 Nicolas Richard <youngfrog@members.fsf.org>:
> Artur Malabarba <bruce.connor.am@gmail.com> writes:
>
>> From emacs -Q, run the following:
>>
>> (cl-letf (((buffer-modified-p)))
>>   (insert "ookok"))
>>
>> You'll get an error from trying to set a nil buffer.
>
> Here is a fix:
> --8<---------------cut here---------------start------------->8---
> modified   lisp/emacs-lisp/cl-lib.el
> @@ -634,8 +634,10 @@ If ALIST is non-nil, the new pairs are prepended to it."
>  ;; Some more Emacs-related place types.
>  (gv-define-simple-setter buffer-file-name set-visited-file-name t)
>  (gv-define-setter buffer-modified-p (flag &optional buf)
> -  `(with-current-buffer ,buf
> -     (set-buffer-modified-p ,flag)))
> +  (if buf
> +      `(with-current-buffer ,buf
> +         (set-buffer-modified-p ,flag))
> +    `(set-buffer-modified-p ,flag)))

Don't know if it's possible, but shouldn't it try to ensure that it's
in the same buffer as before?





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf
  2015-08-06 21:44   ` Artur Malabarba
@ 2015-08-06 22:50     ` Nicolas Richard
  2018-07-17 12:16       ` Noam Postavsky
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Richard @ 2015-08-06 22:50 UTC (permalink / raw)
  To: Artur Malabarba; +Cc: 21201

Artur Malabarba <bruce.connor.am@gmail.com> writes:
> 2015-08-06 21:07 GMT+01:00 Nicolas Richard <youngfrog@members.fsf.org>:
>>  (gv-define-setter buffer-modified-p (flag &optional buf)
>> -  `(with-current-buffer ,buf
>> -     (set-buffer-modified-p ,flag)))
>> +  (if buf
>> +      `(with-current-buffer ,buf
>> +         (set-buffer-modified-p ,flag))
>> +    `(set-buffer-modified-p ,flag)))
>
> Don't know if it's possible, but shouldn't it try to ensure that it's
> in the same buffer as before?

I agree with you, but I don't know how to do that.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf
  2015-08-06 22:50     ` Nicolas Richard
@ 2018-07-17 12:16       ` Noam Postavsky
  2018-08-28  0:01         ` Noam Postavsky
  0 siblings, 1 reply; 6+ messages in thread
From: Noam Postavsky @ 2018-07-17 12:16 UTC (permalink / raw)
  To: Nicolas Richard; +Cc: 21201, Artur Malabarba

[-- Attachment #1: Type: text/plain, Size: 671 bytes --]

tags 21201 + patch
quit

Nicolas Richard <youngfrog@members.fsf.org> writes:

> Artur Malabarba <bruce.connor.am@gmail.com> writes:
>> 2015-08-06 21:07 GMT+01:00 Nicolas Richard <youngfrog@members.fsf.org>:
>>>  (gv-define-setter buffer-modified-p (flag &optional buf)
>>> -  `(with-current-buffer ,buf
>>> -     (set-buffer-modified-p ,flag)))
>>> +  (if buf
>>> +      `(with-current-buffer ,buf
>>> +         (set-buffer-modified-p ,flag))
>>> +    `(set-buffer-modified-p ,flag)))
>>
>> Don't know if it's possible, but shouldn't it try to ensure that it's
>> in the same buffer as before?
>
> I agree with you, but I don't know how to do that.

This seems to work.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch --]
[-- Type: text/x-diff, Size: 1153 bytes --]

From 1481f8893ff04a83b578f403cd22c7bdd2ec65f0 Mon Sep 17 00:00:00 2001
From: Noam Postavsky <npostavs@gmail.com>
Date: Mon, 16 Jul 2018 22:14:32 -0400
Subject: [PATCH] Allow setf of buffer-modified-p without argument (Bug#21201)

* lisp/emacs-lisp/cl-lib.el (setf buffer-modified-p): Take current
buffer if optional argument BUF is not passed.
---
 lisp/emacs-lisp/cl-lib.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el
index 381784d1fd..ba5f9d64a1 100644
--- a/lisp/emacs-lisp/cl-lib.el
+++ b/lisp/emacs-lisp/cl-lib.el
@@ -521,8 +521,9 @@ cl-pairlis
 ;; Some more Emacs-related place types.
 (gv-define-simple-setter buffer-file-name set-visited-file-name t)
 (gv-define-setter buffer-modified-p (flag &optional buf)
-  `(with-current-buffer ,buf
-     (set-buffer-modified-p ,flag)))
+  (macroexp-let2 nil buffer `(or ,buf (current-buffer))
+    `(with-current-buffer ,buffer
+       (set-buffer-modified-p ,flag))))
 (gv-define-simple-setter buffer-name rename-buffer t)
 (gv-define-setter buffer-string (store)
   `(insert (prog1 ,store (erase-buffer))))
-- 
2.11.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf
  2018-07-17 12:16       ` Noam Postavsky
@ 2018-08-28  0:01         ` Noam Postavsky
  0 siblings, 0 replies; 6+ messages in thread
From: Noam Postavsky @ 2018-08-28  0:01 UTC (permalink / raw)
  To: Nicolas Richard; +Cc: 21201, Artur Malabarba

tags 21201 fixed
close 21201 27.1
quit

Noam Postavsky <npostavs@gmail.com> writes:

>  (gv-define-setter buffer-modified-p (flag &optional buf)
> -  `(with-current-buffer ,buf
> -     (set-buffer-modified-p ,flag)))
> +  (macroexp-let2 nil buffer `(or ,buf (current-buffer))
> +    `(with-current-buffer ,buffer
> +       (set-buffer-modified-p ,flag))))

Pushed to master.

[1: c8b86362d4]: 2018-08-27 18:54:23 -0400
  Allow setf of buffer-modified-p without argument (Bug#21201)
  https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=c8b86362d45a07e0aec0041cade551c3c663ea8c





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-08-28  0:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-06 19:47 bug#21201: 25.0.50; (buffer-modified-p) errors inside cl-letf Artur Malabarba
2015-08-06 20:07 ` Nicolas Richard
2015-08-06 21:44   ` Artur Malabarba
2015-08-06 22:50     ` Nicolas Richard
2018-07-17 12:16       ` Noam Postavsky
2018-08-28  0:01         ` Noam Postavsky

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).