From c0a0deac6f266fa9ef71058dd53edb870f8aff75 Mon Sep 17 00:00:00 2001 From: Yves Orton Date: Wed, 7 Sep 2022 22:53:02 +0200 Subject: pad.h - reword comment to be more legible The prevous verbiage ended the comment with the term "padnamelist *", which put the "*" right next to the end comment marker, which was a bit confusing. This wording put the * in the middle of the sentence where it is clear it is not a mistake. Also note that the previous text used tabs internally, and so this change /looks/ like it is off indent, it is not, it is lined up with the surrounding lines. --- pad.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pad.h') diff --git a/pad.h b/pad.h index 6d3f3ff482..fa5b2896d7 100644 --- a/pad.h +++ b/pad.h @@ -23,8 +23,9 @@ typedef SSize_t PADOFFSET; /* signed so that -1 is a valid value */ struct padlist { SSize_t xpadl_max; /* max index for which array has space */ union { - PAD ** xpadlarr_alloc; /* Pointer to beginning of array of AVs. - index 0 is a padnamelist * */ + PAD ** xpadlarr_alloc; /* Pointer to beginning of array of AVs. + Note that a 'padnamelist *' is stored + in the 0 index of the AV. */ struct { PADNAMELIST * padnl; PAD * pad_1; /* this slice of PAD * array always alloced */ -- cgit v1.2.1