Lazy strings can be made from arrays too.
authorDoug Evans <dje@google.com>
Mon, 7 Nov 2016 00:03:56 +0000 (16:03 -0800)
committerDoug Evans <dje@google.com>
Thu, 16 Mar 2017 16:22:51 +0000 (09:22 -0700)
gdb/doc/ChangeLog:

* guile.texi (Lazy Strings In Guile): Mention arrays.
* python.texi (Lazy Strings In Python): Ditto.

gdb/doc/ChangeLog
gdb/doc/guile.texi
gdb/doc/python.texi

index e6d4320..8b8820e 100644 (file)
@@ -1,3 +1,8 @@
+2017-03-16  Doug Evans  <dje@google.com>
+
+       * guile.texi (Lazy Strings In Guile): Mention arrays.
+       * python.texi (Lazy Strings In Python): Ditto.
+
 2017-03-08  Jiong Wang  <jiong.wang@arm.com>
 
         * gdb.texinfo (Memory Protection Extensions): Add missing escape
index 2b077a7..9ae980e 100644 (file)
@@ -3248,7 +3248,7 @@ most appropriate encoding when the string is printed.
 
 @deffn {Scheme Procedure} lazy-string-type lazy-string
 Return the type that is represented by @var{lazy-string}'s type.
-For a lazy string this will always be a pointer type.  To
+For a lazy string this is a pointer or array type.  To
 resolve this to the lazy string's character type, use @code{type-target-type}.
 @xref{Types In Guile}.
 @end deffn
index c3ea203..d00bc6f 100644 (file)
@@ -5133,7 +5133,7 @@ is not writable.
 
 @defvar LazyString.type
 This attribute holds the type that is represented by the lazy string's
-type.  For a lazy string this will always be a pointer type.  To
+type.  For a lazy string this is a pointer or array type.  To
 resolve this to the lazy string's character type, use the type's
 @code{target} method.  @xref{Types In Python}.  This attribute is not
 writable.