diff options
| author | Chong Yidong | 2012-11-23 16:32:43 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-11-23 16:32:43 +0800 |
| commit | 90d99fdf02ce6494b7e004936e467da6edd2bf73 (patch) | |
| tree | 225332fed2f7cad269d9007e2da30ed49229bea2 | |
| parent | 24becea4a7839adcea1bafd28604b204ff5cb7d6 (diff) | |
| download | emacs-90d99fdf02ce6494b7e004936e467da6edd2bf73.tar.gz emacs-90d99fdf02ce6494b7e004936e467da6edd2bf73.zip | |
* modes.texi (%-Constructs): Fix statement about mode construct padding.
Fixes: debbugs:12866
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 15 |
2 files changed, 15 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 40bd3c2cbbe..23da5634889 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-11-23 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * modes.texi (%-Constructs): Fix statement about mode construct | ||
| 4 | padding (Bug#12866). | ||
| 5 | |||
| 1 | 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * debugging.texi (Profiling): Make it more clear | 8 | * debugging.texi (Profiling): Make it more clear |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 0634cddff84..55d838d111e 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -2086,11 +2086,16 @@ specifies addition of text properties. | |||
| 2086 | @subsection @code{%}-Constructs in the Mode Line | 2086 | @subsection @code{%}-Constructs in the Mode Line |
| 2087 | 2087 | ||
| 2088 | Strings used as mode line constructs can use certain | 2088 | Strings used as mode line constructs can use certain |
| 2089 | @code{%}-constructs to substitute various kinds of data. Here is a | 2089 | @code{%}-constructs to substitute various kinds of data. The |
| 2090 | list of the defined @code{%}-constructs, and what they mean. In any | 2090 | following is a list of the defined @code{%}-constructs, and what they |
| 2091 | construct except @samp{%%}, you can add a decimal integer after the | 2091 | mean. |
| 2092 | @samp{%} to specify a minimum field width. If the width is less, the | 2092 | |
| 2093 | field is padded with spaces to the right. | 2093 | In any construct except @samp{%%}, you can add a decimal integer |
| 2094 | after the @samp{%} to specify a minimum field width. If the width is | ||
| 2095 | less, the field is padded to that width. Purely numeric constructs | ||
| 2096 | (@samp{c}, @samp{i}, @samp{I}, and @samp{l}) are padded by inserting | ||
| 2097 | spaces to the left, and others are padded by inserting spaces to the | ||
| 2098 | right. | ||
| 2094 | 2099 | ||
| 2095 | @table @code | 2100 | @table @code |
| 2096 | @item %b | 2101 | @item %b |