Correct regexp for flags in `format' doc string
* src/editfns.c (Fformat): Use the correct regexp for describing the flags in a %-sequence (place the hyphen last).
This commit is contained in:
parent
2e9a153b26
commit
c8fcabf245
1 changed files with 1 additions and 1 deletions
|
@ -3031,7 +3031,7 @@ width, and precision specifiers, as follows:
|
|||
%<field><flags><width><precision>character
|
||||
|
||||
where field is [0-9]+ followed by a literal dollar "$", flags is
|
||||
[+ #-0]+, width is [0-9]+, and precision is a literal period "."
|
||||
[+ #0-]+, width is [0-9]+, and precision is a literal period "."
|
||||
followed by [0-9]+.
|
||||
|
||||
If a %-sequence is numbered with a field with positive value N, the
|
||||
|
|
Loading…
Add table
Reference in a new issue