]> git.eshelyaron.com Git - emacs.git/commitdiff
buffers.texi: Fix typo in @math construct.
authorBastien Guerry <bzg@gnu.org>
Tue, 7 Jan 2014 18:01:12 +0000 (19:01 +0100)
committerBastien Guerry <bzg@gnu.org>
Tue, 7 Jan 2014 18:01:12 +0000 (19:01 +0100)
* buffers.texi (Buffers): Fix display of @math content by using
nested braces.  (Bug#16389)

Note that the HTML and plaintext output will use the curly braces
like 2^{61} -- but it's better than to have a wrong display of 2^61
in the PDF and printed versions.

doc/emacs/ChangeLog
doc/emacs/buffers.texi

index b699ae4b6513096d0217dbdc0572cb55645280b7..8db5ab808cec9e08467f582ac21b1c3a155e364a 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-07  Bastien Guerry  <bzg@gnu.org>
+
+       * buffers.texi (Buffers): Fix display of @math content by using
+       nested braces.  (Bug#16389)
+
 2014-01-07  Chong Yidong  <cyd@gnu.org>
 
        * search.texi (Special Isearch): Document C-x 8 RET in isearch.
index 9e544fe16f108ee4bf8cf385de11d2efac387a79..695ea96c36305df037d88d09e178e1914e7aaa4d 100644 (file)
@@ -43,9 +43,9 @@ variables}---variables that can have a different value in each buffer.
   A buffer's size cannot be larger than some maximum, which is defined
 by the largest buffer position representable by @dfn{Emacs integers}.
 This is because Emacs tracks buffer positions using that data type.
-For typical 64-bit machines, this maximum buffer size is @math{2^61 -
-2} bytes, or about 2 EiB@.  For typical 32-bit machines, the maximum is
-usually @math{2^29 - 2} bytes, or about 512 MiB@.  Buffer sizes are
+For typical 64-bit machines, this maximum buffer size is @math{2^{61} - 2}
+bytes, or about 2 EiB@.  For typical 32-bit machines, the maximum is
+usually @math{2^{29} - 2} bytes, or about 512 MiB@.  Buffer sizes are
 also limited by the amount of memory in the system.
 
 @menu