From: Bastien Guerry Date: Tue, 7 Jan 2014 18:01:12 +0000 (+0100) Subject: buffers.texi: Fix typo in @math construct. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~26 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=160006268a4fa72cda6a5f75b6595eb5757c46e9;p=emacs.git buffers.texi: Fix typo in @math construct. * 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. --- diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index b699ae4b651..8db5ab808ce 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,3 +1,8 @@ +2014-01-07 Bastien Guerry + + * buffers.texi (Buffers): Fix display of @math content by using + nested braces. (Bug#16389) + 2014-01-07 Chong Yidong * search.texi (Special Isearch): Document C-x 8 RET in isearch. diff --git a/doc/emacs/buffers.texi b/doc/emacs/buffers.texi index 9e544fe16f1..695ea96c363 100644 --- a/doc/emacs/buffers.texi +++ b/doc/emacs/buffers.texi @@ -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