diff options
| author | Richard M. Stallman | 2006-07-18 00:11:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-07-18 00:11:20 +0000 |
| commit | 7c0c29ee3570354017b7f76c1bd3da46581b6711 (patch) | |
| tree | b61fdbc153abe99f35f63ae85d6c363d7c17462f | |
| parent | 36959e5157165f96e48ca44d87a271a20a0824f7 (diff) | |
| download | emacs-7c0c29ee3570354017b7f76c1bd3da46581b6711.tar.gz emacs-7c0c29ee3570354017b7f76c1bd3da46581b6711.zip | |
*** empty log message ***
| -rw-r--r-- | lispref/ChangeLog | 16 | ||||
| -rw-r--r-- | lispref/strings.texi | 4 |
2 files changed, 18 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index dc000875cec..547789ffc51 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,5 +1,21 @@ | |||
| 1 | 2006-07-17 Richard Stallman <rms@gnu.org> | 1 | 2006-07-17 Richard Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * eval.texi, elisp.texi, text.texi: Use real doublequote inside menus. | ||
| 4 | Put period and comma inside quotes. | ||
| 5 | |||
| 6 | * loading.texi, markers.texi: Use real doublequote inside menus. | ||
| 7 | |||
| 8 | * windows.texi: Put point and comma inside quotes. | ||
| 9 | (Textual Scrolling): Use @samp for error message. | ||
| 10 | |||
| 11 | * variables.texi, tips.texi, syntax.texi, symbols.texi: | ||
| 12 | * strings.texi, streams.texi, processes.texi, os.texi: | ||
| 13 | * objects.texi, numbers.texi, modes.texi, minibuf.texi: | ||
| 14 | * lists.texi, keymaps.texi, intro.texi, hash.texi, internals.texi: | ||
| 15 | * gpl.texi, functions.texi, files.texi, frames.texi, doclicense.texi: | ||
| 16 | * display.texi, control.texi, commands.texi, buffers.texi, anti.texi: | ||
| 17 | Put point and comma inside quotes. | ||
| 18 | |||
| 3 | * control.texi (Processing of Errors): Add command-error-function. | 19 | * control.texi (Processing of Errors): Add command-error-function. |
| 4 | 20 | ||
| 5 | * variables.texi (File Local Variables): Clarify that | 21 | * variables.texi (File Local Variables): Clarify that |
diff --git a/lispref/strings.texi b/lispref/strings.texi index 861e5b1c728..46c01982f32 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi | |||
| @@ -810,7 +810,7 @@ operation} error. | |||
| 810 | 810 | ||
| 811 | @cindex field width | 811 | @cindex field width |
| 812 | @cindex padding | 812 | @cindex padding |
| 813 | All the specification characters allow an optional ``width'', which | 813 | All the specification characters allow an optional ``width,'' which |
| 814 | is a digit-string between the @samp{%} and the character. If the | 814 | is a digit-string between the @samp{%} and the character. If the |
| 815 | printed representation of the object contains fewer characters than | 815 | printed representation of the object contains fewer characters than |
| 816 | this width, then it is padded. The padding is on the left if the | 816 | this width, then it is padded. The padding is on the left if the |
| @@ -881,7 +881,7 @@ A space character inserts a space for positive numbers (otherwise | |||
| 881 | nothing is inserted for positive numbers). This flag is ignored | 881 | nothing is inserted for positive numbers). This flag is ignored |
| 882 | except for @samp{%d}, @samp{%e}, @samp{%f}, @samp{%g}. | 882 | except for @samp{%d}, @samp{%e}, @samp{%f}, @samp{%g}. |
| 883 | 883 | ||
| 884 | The flag @samp{#} indicates ``alternate form''. For @samp{%o} it | 884 | The flag @samp{#} indicates ``alternate form.'' For @samp{%o} it |
| 885 | ensures that the result begins with a 0. For @samp{%x} and @samp{%X} | 885 | ensures that the result begins with a 0. For @samp{%x} and @samp{%X} |
| 886 | the result is prefixed with @samp{0x} or @samp{0X}. For @samp{%e}, | 886 | the result is prefixed with @samp{0x} or @samp{0X}. For @samp{%e}, |
| 887 | @samp{%f}, and @samp{%g} a decimal point is always shown even if the | 887 | @samp{%f}, and @samp{%g} a decimal point is always shown even if the |