Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
304f1f12
Commit
304f1f12
authored
Nov 01, 2002
by
Andreas Schwab
Browse files
(Fmessage): Revert last change to properly handle %% format.
parent
86fad4ec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/editfns.c
src/editfns.c
+1
-1
No files found.
src/ChangeLog
View file @
304f1f12
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.
...
...
src/editfns.c
View file @
304f1f12
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment