]> git.eshelyaron.com Git - emacs.git/commitdiff
Correct regexp for flags in `format' doc string
authorMattias EngdegÄrd <mattiase@acm.org>
Sun, 26 Jan 2020 18:04:31 +0000 (10:04 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 26 Jan 2020 18:05:53 +0000 (10:05 -0800)
* src/editfns.c (Fformat): Use the correct regexp for describing the
flags in a %-sequence (place the hyphen last).

src/editfns.c

index 4e35784e554c332a1166d58ee642094d68496f56..3f1b3aa4b75c42c2f6564f4203fd0f05ed384e0b 100644 (file)
@@ -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