1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(Fmessage): Revert last change to properly handle %% format.

This commit is contained in:
Andreas Schwab 2002-11-01 22:35:02 +00:00
parent 86fad4ec40
commit 304f1f12d6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-11-01 Andreas Schwab <schwab@suse.de>
* editfns.c (Fmessage): Revert last change to properly handle %%
format.
2002-11-01 Stefan Monnier <monnier@cs.yale.edu>
* xmenu.c (unuse_menu_items): New fun.

View File

@ -3027,7 +3027,7 @@ usage: (message STRING &rest ARGS) */)
else
{
register Lisp_Object val;
val = nargs < 2 && STRINGP (args[0]) ? args[0] : Fformat (nargs, args);
val = Fformat (nargs, args);
message3 (val, SBYTES (val), STRING_MULTIBYTE (val));
return val;
}