diff options
| author | Eli Zaretskii | 2018-06-23 15:34:14 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-06-23 15:34:14 +0300 |
| commit | 7caeef1622114d62570d507c4b4ba0f647bb4491 (patch) | |
| tree | ccb6ed329ec07a0cb0e65f186693303c68c618f0 /src | |
| parent | ecc29fbd5a73b55d4624c240b8a2d0a01d699e47 (diff) | |
| download | emacs-7caeef1622114d62570d507c4b4ba0f647bb4491.tar.gz emacs-7caeef1622114d62570d507c4b4ba0f647bb4491.zip | |
* src/editfns.c (Fformat): Make %x easier to spot in doc string. (Bug#31945)
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 7c58391eb18..4fba68692bf 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -4105,7 +4105,8 @@ the next available argument, or the argument explicitly specified: | |||
| 4105 | 4105 | ||
| 4106 | %s means print a string argument. Actually, prints any object, with `princ'. | 4106 | %s means print a string argument. Actually, prints any object, with `princ'. |
| 4107 | %d means print as signed number in decimal. | 4107 | %d means print as signed number in decimal. |
| 4108 | %o means print as unsigned number in octal, %x as unsigned number in hex. | 4108 | %o means print as unsigned number in octal. |
| 4109 | %x means print as unsigned number in hex. | ||
| 4109 | %X is like %x, but uses upper case. | 4110 | %X is like %x, but uses upper case. |
| 4110 | %e means print a number in exponential notation. | 4111 | %e means print a number in exponential notation. |
| 4111 | %f means print a number in decimal-point notation. | 4112 | %f means print a number in decimal-point notation. |