1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-13 09:32:47 +00:00

* src/editfns.c (Fformat): Make %x easier to spot in doc string. (Bug#31945)

This commit is contained in:
Eli Zaretskii 2018-06-23 15:34:14 +03:00
parent ecc29fbd5a
commit 7caeef1622

View File

@ -4105,7 +4105,8 @@ the next available argument, or the argument explicitly specified:
%s means print a string argument. Actually, prints any object, with `princ'.
%d means print as signed number in decimal.
%o means print as unsigned number in octal, %x as unsigned number in hex.
%o means print as unsigned number in octal.
%x means print as unsigned number in hex.
%X is like %x, but uses upper case.
%e means print a number in exponential notation.
%f means print a number in decimal-point notation.