* bug#32056: Small patch
@ 2018-07-05 8:30 Gian Uberto Lauri
2018-07-05 10:22 ` Robert Pluim
0 siblings, 1 reply; 8+ messages in thread
From: Gian Uberto Lauri @ 2018-07-05 8:30 UTC (permalink / raw)
To: 32056
[-- Attachment #1: message body and .signature --]
[-- Type: text/plain, Size: 999 bytes --]
Good morning,
today I pulled the latest source, compiled the Editor and tried to run
it.
My .emacs file contains a (find-file ), and it failed.
Further investigation revealed that in line 2158 in files.el contains a
call to abort-if-file-too-large with an extra argument that cause the
find-file command to fail.
I attach my trivial fix.
By the way, I discovered that the focus-frame function disappeared.
I used it to give the focus to the special frame I use for e-mail.
--
ing. Gian Uberto Lauri
Senior Solution Developer
Dir. Tecnica Innovazione Ricerca / Tech. Innovation & Research Div.
GianUberto.Lauri@eng.it
Sun Java Certified Programmer
Engineering Ingegneria Informatica spa
Corso Stati Uniti 23/C, 35127 Padova (PD)
Tel. +39-049.8283.533 | main(){printf(&unix["\021%six\012\0"],
Fax +39-049.8283.569 | (unix)["have"]+"fun"-0x60);}
http://www.eng.it | David Korn, AT&T Bell Labs
| ioccc best One Liner, 1987
[-- Attachment #2: 0001-Solves-a-compilation-error.patch --]
[-- Type: application/octet-stream, Size: 933 bytes --]
From be68cf487bbdf3f6cb014be476f2b41b44ba641b Mon Sep 17 00:00:00 2001
From: Gian Uberto Lauri <saint@eng.it>
Date: Thu, 5 Jul 2018 10:18:03 +0200
Subject: [PATCH] Solves a compilation error
Line 2158 in files.el contains a call to abort-if-file-too-large that
cause the find-file command to fail.
---
lisp/files.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/files.el b/lisp/files.el
index eabb3c0..84e0304 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2155,7 +2155,7 @@ find-file-noselect
;; Check to see if the file looks uncommonly large.
(when (not (or buf nowarn))
(when (eq (abort-if-file-too-large
- (nth 7 attributes) "open" filename t)
+ (nth 7 attributes) "open" filename );; t) fourth argument is in excess...
'raw)
(setf rawfile t))
(warn-maybe-out-of-memory (nth 7 attributes)))
--
2.7.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 8:30 bug#32056: Small patch Gian Uberto Lauri
@ 2018-07-05 10:22 ` Robert Pluim
2018-07-05 11:13 ` Noam Postavsky
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Robert Pluim @ 2018-07-05 10:22 UTC (permalink / raw)
To: Gian Uberto Lauri; +Cc: 32056
"Gian Uberto Lauri" <saint@eng.it> writes:
> Good morning,
>
> today I pulled the latest source, compiled the Editor and tried to run
> it.
>
> My .emacs file contains a (find-file ), and it failed.
>
> Further investigation revealed that in line 2158 in files.el contains a
> call to abort-if-file-too-large with an extra argument that cause the
> find-file command to fail.
>
The signature of that function is:
(defun abort-if-file-too-large (size op-type filename &optional offer-raw)
so the 4th argument should be ok. I suspect you have your own
definition of abort-if-file-too-large somewhere.
> I attach my trivial fix.
>
> By the way, I discovered that the focus-frame function disappeared.
> I used it to give the focus to the special frame I use for e-mail.
Hmm, that function was marked as doing nothing, and had been for some
time. 'select-frame' perhaps, or 'select-frame-set-input-focus' might
do what you want.
Regards
Robert
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 10:22 ` Robert Pluim
@ 2018-07-05 11:13 ` Noam Postavsky
2018-07-05 12:20 ` Gian Uberto Lauri
2018-07-05 14:00 ` Gian Uberto Lauri
2 siblings, 0 replies; 8+ messages in thread
From: Noam Postavsky @ 2018-07-05 11:13 UTC (permalink / raw)
To: Gian Uberto Lauri; +Cc: 32056
retitle 32056 too many arguments for abort-if-file-too-large
tags 32056 + notabug
quit
Robert Pluim <rpluim@gmail.com> writes:
>>
>> Further investigation revealed that in line 2158 in files.el contains a
>> call to abort-if-file-too-large with an extra argument that cause the
>> find-file command to fail.
>>
>
> The signature of that function is:
>
> (defun abort-if-file-too-large (size op-type filename &optional offer-raw)
>
> so the 4th argument should be ok. I suspect you have your own
> definition of abort-if-file-too-large somewhere.
Specifically, the 4th argument was added recently in [1: 416ba369c4] for
both the function definition and caller.
[1: 416ba369c4]: 2018-06-07 22:05:33 -0700
Offer to open large files without modes
https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=416ba369c4ee2592d226eef68aeb4ad35ffea61d
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 10:22 ` Robert Pluim
2018-07-05 11:13 ` Noam Postavsky
@ 2018-07-05 12:20 ` Gian Uberto Lauri
2018-07-05 14:00 ` Gian Uberto Lauri
2 siblings, 0 replies; 8+ messages in thread
From: Gian Uberto Lauri @ 2018-07-05 12:20 UTC (permalink / raw)
To: Robert Pluim; +Cc: 32056, Gian Uberto Lauri
>>>>> "RP" == Robert Pluim <rpluim@gmail.com> writes:
RP> The signature of that function is:
RP> (defun abort-if-file-too-large (size op-type filename &optional
RP> offer-raw)
Indeed, it is in the 26.0.50 install. Going to check my .emacs.
My apologies for disturbing you all.
RP> so the 4th argument should be ok. I suspect you have your own
RP> definition of abort-if-file-too-large somewhere.
RP> Hmm, that function was marked as doing nothing, and had been for
RP> some time. 'select-frame' perhaps, or
RP> 'select-frame-set-input-focus' might do what you want.
Thank you.
--
ing. Gian Uberto Lauri
Senior Solution Developer
Dir. Tecnica Innovazione Ricerca / Tech. Innovation & Research Div.
GianUberto.Lauri@eng.it
Sun Java Certified Programmer
Engineering Ingegneria Informatica spa
Corso Stati Uniti 23/C, 35127 Padova (PD)
Tel. +39-049.8283.533 | main(){printf(&unix["\021%six\012\0"],
Fax +39-049.8283.569 | (unix)["have"]+"fun"-0x60);}
http://www.eng.it | David Korn, AT&T Bell Labs
| ioccc best One Liner, 1987
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 10:22 ` Robert Pluim
2018-07-05 11:13 ` Noam Postavsky
2018-07-05 12:20 ` Gian Uberto Lauri
@ 2018-07-05 14:00 ` Gian Uberto Lauri
2018-07-05 14:41 ` Robert Pluim
2 siblings, 1 reply; 8+ messages in thread
From: Gian Uberto Lauri @ 2018-07-05 14:00 UTC (permalink / raw)
To: Robert Pluim; +Cc: 32056, Gian Uberto Lauri
>>>>> "RP" == Robert Pluim <rpluim@gmail.com> writes:
RP> so the 4th argument should be ok. I suspect you have your own
RP> definition of abort-if-file-too-large somewhere.
Your suspects are correct.
I had a copy of the function in my .emacs with a patch [BAD THING ™]
to exclude some files from size check (it was used for RMAIL).
I don't think I triggered that patch for a long time, I changed my
habits because vm gets damn slow with large mailboxes. Therefore I
ask:
- could it be dangerous?
- could it be useful to others?
Thank you in advance.
--
ing. Gian Uberto Lauri
Senior Solution Developer
Dir. Tecnica Innovazione Ricerca / Tech. Innovation & Research Div.
GianUberto.Lauri@eng.it
Sun Java Certified Programmer
Engineering Ingegneria Informatica spa
Corso Stati Uniti 23/C, 35127 Padova (PD)
Tel. +39-049.8283.533 | main(){printf(&unix["\021%six\012\0"],
Fax +39-049.8283.569 | (unix)["have"]+"fun"-0x60);}
http://www.eng.it | David Korn, AT&T Bell Labs
| ioccc best One Liner, 1987
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 14:00 ` Gian Uberto Lauri
@ 2018-07-05 14:41 ` Robert Pluim
2018-07-05 16:09 ` Gian Uberto Lauri
0 siblings, 1 reply; 8+ messages in thread
From: Robert Pluim @ 2018-07-05 14:41 UTC (permalink / raw)
To: Gian Uberto Lauri; +Cc: 32056
"Gian Uberto Lauri" <saint@eng.it> writes:
>>>>>> "RP" == Robert Pluim <rpluim@gmail.com> writes:
>
> RP> so the 4th argument should be ok. I suspect you have your own
> RP> definition of abort-if-file-too-large somewhere.
>
> Your suspects are correct.
>
> I had a copy of the function in my .emacs with a patch [BAD THING ™]
> to exclude some files from size check (it was used for RMAIL).
>
> I don't think I triggered that patch for a long time, I changed my
> habits because vm gets damn slow with large mailboxes. Therefore I
> ask:
>
> - could it be dangerous?
> - could it be useful to others?
Without seeing your patch, thatʼs hard to answer. The default value of
large-file-warning-threshold is 100MB, which these days might be too
low, but nothing prevents you from setting it higher (I have it set to
nil).
Regards
Robert
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 14:41 ` Robert Pluim
@ 2018-07-05 16:09 ` Gian Uberto Lauri
2019-04-18 0:13 ` Noam Postavsky
0 siblings, 1 reply; 8+ messages in thread
From: Gian Uberto Lauri @ 2018-07-05 16:09 UTC (permalink / raw)
To: Robert Pluim; +Cc: 32056, Gian Uberto Lauri
[-- Attachment #1: message body text --]
[-- Type: text/plain, Size: 749 bytes --]
>>>>> "RP" == Robert Pluim <rpluim@gmail.com> writes:
RP> Without seeing your patch, thatʼs hard to answer.
This is the patch (attached). Your judgment holds.
Nevertheless, any suggestion is welcomed.
--
ing. Gian Uberto Lauri
Senior Solution Developer
Dir. Tecnica Innovazione Ricerca / Tech. Innovation & Research Div.
GianUberto.Lauri@eng.it
Sun Java Certified Programmer
Engineering Ingegneria Informatica spa
Corso Stati Uniti 23/C, 35127 Padova (PD)
Tel. +39-049.8283.533 | main(){printf(&unix["\021%six\012\0"],
Fax +39-049.8283.569 | (unix)["have"]+"fun"-0x60);}
http://www.eng.it | David Korn, AT&T Bell Labs
| ioccc best One Liner, 1987
[-- Attachment #2: a patch for files.el --]
[-- Type: text/plain, Size: 2689 bytes --]
From d7660a3dcead87f4c03b8c12452d02f9b576c338 Mon Sep 17 00:00:00 2001
From: Gian Uberto Lauri <saint@eng.it>
Date: Thu, 5 Jul 2018 18:06:05 +0200
Subject: [PATCH] Do not warn for size on these files
Added a list of file for which no warning is issued when their size
exceeds large-file-warning-threshold
Changes to be committed:
modified: lisp/files.el
---
lisp/files.el | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/lisp/files.el b/lisp/files.el
index 84e0304..e2a8055 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -219,6 +219,10 @@ small-temporary-file-directory
;; The system null device. (Should reference NULL_DEVICE from C.)
(defvar null-device (purecopy "/dev/null") "The system null device.")
+;; I am unsure if letting this customizable is a good idea.
+(defvar ignore-file-size-list '() "A list of file for which the user is
+not warned when the size exceeds `large-file-warning-threshold'." )
+
(declare-function msdos-long-file-names "msdos.c")
(declare-function w32-long-file-name "w32proc.c")
(declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
@@ -2070,6 +2074,12 @@ abort-if-file-too-large
(> size large-file-warning-threshold)
;; No point in warning if we can't read it.
(file-readable-p filename)
+ ;; The user does not want to be bothered for
+ ;; these files (full path).
+ (not (let (rv)
+ (dolist (test-file-name ignore-file-size-list rv)
+ (setq rv
+ (or rv (string= filename test-file-name))))))
(files--ask-user-about-large-file
size op-type filename offer-raw))))
(when (eq choice 'abort)
@@ -2134,7 +2144,7 @@ find-file-noselect
(find-file-wildcards nil))
(if (null files)
(find-file-noselect filename)
- (mapcar #'find-file-noselect files)))
+ (mapcar 'find-file-noselect files)))
(let* ((buf (get-file-buffer filename))
(truename (abbreviate-file-name (file-truename filename)))
(attributes (file-attributes truename))
@@ -2155,7 +2165,7 @@ find-file-noselect
;; Check to see if the file looks uncommonly large.
(when (not (or buf nowarn))
(when (eq (abort-if-file-too-large
- (nth 7 attributes) "open" filename );; t) fourth argument is in excess...
+ (nth 7 attributes) "open" filename t)
'raw)
(setf rawfile t))
(warn-maybe-out-of-memory (nth 7 attributes)))
--
2.7.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#32056: Small patch
2018-07-05 16:09 ` Gian Uberto Lauri
@ 2019-04-18 0:13 ` Noam Postavsky
0 siblings, 0 replies; 8+ messages in thread
From: Noam Postavsky @ 2019-04-18 0:13 UTC (permalink / raw)
To: Gian Uberto Lauri; +Cc: Robert Pluim, 32056
"Gian Uberto Lauri" <saint@eng.it> writes:
> +;; I am unsure if letting this customizable is a good idea.
> +(defvar ignore-file-size-list '() "A list of file for which the user is
> +not warned when the size exceeds `large-file-warning-threshold'." )
Hmm, this feels a bit unmotivated. I don't quite understand why the
user would choose only certain files to ignore the threshold instead of
just making the threshold higher.
> + ;; The user does not want to be bothered for
> + ;; these files (full path).
> + (not (let (rv)
> + (dolist (test-file-name ignore-file-size-list rv)
> + (setq rv
> + (or rv (string= filename test-file-name))))))
Though it might be more convenient to have a regexp rather than a
straight list.
> - (mapcar #'find-file-noselect files)))
> + (mapcar 'find-file-noselect files)))
No need for this. #' is fine.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2019-04-18 0:13 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-05 8:30 bug#32056: Small patch Gian Uberto Lauri
2018-07-05 10:22 ` Robert Pluim
2018-07-05 11:13 ` Noam Postavsky
2018-07-05 12:20 ` Gian Uberto Lauri
2018-07-05 14:00 ` Gian Uberto Lauri
2018-07-05 14:41 ` Robert Pluim
2018-07-05 16:09 ` Gian Uberto Lauri
2019-04-18 0:13 ` 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).