diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/doprnt.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/doprnt.c b/src/doprnt.c index 48516eeabb7..a6becc7454f 100644 --- a/src/doprnt.c +++ b/src/doprnt.c | |||
| @@ -69,7 +69,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 69 | 69 | ||
| 70 | %<flags><width><precision><length>character | 70 | %<flags><width><precision><length>character |
| 71 | 71 | ||
| 72 | where flags is [+ -0l], width is [0-9]+, and precision is .[0-9]+ | 72 | where flags is [+ -0], width is [0-9]+, precision is .[0-9]+, and length |
| 73 | modifier is empty or l or ll. | ||
| 73 | 74 | ||
| 74 | The + flag character inserts a + before any positive number, while a space | 75 | The + flag character inserts a + before any positive number, while a space |
| 75 | inserts a space before any positive number; these flags only affect %d, %o, | 76 | inserts a space before any positive number; these flags only affect %d, %o, |
| @@ -83,7 +84,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 83 | arguments, must immediately precede the conversion specifier, and means that | 84 | arguments, must immediately precede the conversion specifier, and means that |
| 84 | the respective argument is to be treated as `long int' or `unsigned long | 85 | the respective argument is to be treated as `long int' or `unsigned long |
| 85 | int'. Similarly, ll (two letter ells) means to use `long long int' or | 86 | int'. Similarly, ll (two letter ells) means to use `long long int' or |
| 86 | `unsigned long long int'. The empty length modifier means to use `int' or | 87 | `unsigned long long int'; this can be used only on hosts that have |
| 88 | these two types. The empty length modifier means to use `int' or | ||
| 87 | `unsigned int'. EMACS_INT arguments should use the pI macro, which | 89 | `unsigned int'. EMACS_INT arguments should use the pI macro, which |
| 88 | expands to whatever length modifier is needed for the target host. | 90 | expands to whatever length modifier is needed for the target host. |
| 89 | 91 | ||