X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=info%2Finternals.info-2;h=b3867f79c7f0b36e1d267eb325bfb50a38fbed10;hb=c9981c9d124c07511588b3d918a17be21ae69ae1;hp=0dbaa5448ae8224a00a3ea7aa12e5fe70cbd5788;hpb=2fd9701a4f902054649dde9143a3f77809afee8f;p=chise%2Fxemacs-chise.git diff --git a/info/internals.info-2 b/info/internals.info-2 index 0dbaa54..b3867f7 100644 --- a/info/internals.info-2 +++ b/info/internals.info-2 @@ -590,9 +590,9 @@ copying a supplied argument into a local variable, so that Lisp lists are popular data structures in the C code as well as in Elisp. There are two sets of macros that iterate over lists. `EXTERNAL_LIST_LOOP_N' should be used when the list has been supplied -by the user, and cannot be trusted to be acyclic and nil-terminated. A -`malformed-list' or `circular-list' error will be generated if the list -being iterated over is not entirely kosher. `LIST_LOOP_N', on the +by the user, and cannot be trusted to be acyclic and `nil'-terminated. +A `malformed-list' or `circular-list' error will be generated if the +list being iterated over is not entirely kosher. `LIST_LOOP_N', on the other hand, is faster and less safe, and can be used only on trusted lists.