projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
747a923
)
Fix use of obsolete 'error' warning level
author
Zajcev Evgeny
<zevlg@yandex.ru>
Tue, 22 Dec 2020 14:37:38 +0000
(17:37 +0300)
committer
Stefan Kangas
<stefan@marxist.se>
Wed, 23 Dec 2020 03:58:48 +0000
(
04:58
+0100)
* src/fileio.c (auto_save_error): Use new style ':error' warning level
instead of obsolete 'error'.
src/fileio.c
patch
|
blob
|
history
diff --git
a/src/fileio.c
b/src/fileio.c
index 51f12e104ef10725ab182fc2c5fa9f7c636aaf97..651e765fca414c4e79b915e96ac63c6a6ed3ee11 100644
(file)
--- a/
src/fileio.c
+++ b/
src/fileio.c
@@
-5752,7
+5752,7
@@
auto_save_error (Lisp_Object error_val)
Lisp_Object msg = CALLN (Fformat, format, BVAR (current_buffer, name),
Ferror_message_string (error_val));
call3 (intern ("display-warning"),
- intern ("auto-save"), msg, intern ("error"));
+ intern ("auto-save"), msg, intern ("
:
error"));
return Qnil;
}