From: Paul Eggert Date: Mon, 18 Apr 2011 04:11:56 +0000 (-0700) Subject: Fix typo in comment. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~260 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=83998b7a924b8362ec0c5650aa2c2911ac96cf70;p=emacs.git Fix typo in comment. --- diff --git a/src/alloc.c b/src/alloc.c index ca4abba9f8d..8e0cf5d43e1 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1521,14 +1521,13 @@ struct sdata union { - /* When STRING in non-null. */ + /* When STRING is non-null. */ unsigned char data[1]; /* When STRING is null. */ EMACS_INT nbytes; } u; - #define SDATA_NBYTES(S) (S)->u.nbytes #define SDATA_DATA(S) (S)->u.data