]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve a recent change.
authorEli Zaretskii <eliz@gnu.org>
Sun, 25 Aug 2019 07:10:01 +0000 (10:10 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 25 Aug 2019 07:10:01 +0000 (10:10 +0300)
* src/frame.c (Fx_parse_geometry): Improve the comment about
non-initialization of some locals.

src/frame.c

index cf38c85f09f71226ccd8ab507d42bb3947a4b4b7..1d42d0cb4de229eaf693dbfeef95c9ced4ed9654 100644 (file)
@@ -5328,7 +5328,8 @@ On Nextstep, this just calls `ns-parse-geometry'.  */)
   (Lisp_Object string)
 {
   /* x and y don't need initialization, as they are not accessed
-     unless XParseGeometry sets them.  */
+     unless XParseGeometry sets them, in which case it always returns
+     a non-zero value.  */
   int x UNINIT, y UNINIT;
   unsigned int width, height;