aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.c
diff options
context:
space:
mode:
authorEli Zaretskii2019-08-25 10:10:01 +0300
committerEli Zaretskii2019-08-25 10:10:01 +0300
commit26703b98f93ff6e0819e43b872bfe63f8753dfcb (patch)
treeab12e1073fcf976b5d7bac5473cc9c66307dc464 /src/frame.c
parent9b10ec066000c198f01981ff6f259b7826b3eeed (diff)
downloademacs-26703b98f93ff6e0819e43b872bfe63f8753dfcb.tar.gz
emacs-26703b98f93ff6e0819e43b872bfe63f8753dfcb.zip
; Improve a recent change.
* src/frame.c (Fx_parse_geometry): Improve the comment about non-initialization of some locals.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index cf38c85f09f..1d42d0cb4de 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -5328,7 +5328,8 @@ On Nextstep, this just calls `ns-parse-geometry'. */)
5328 (Lisp_Object string) 5328 (Lisp_Object string)
5329{ 5329{
5330 /* x and y don't need initialization, as they are not accessed 5330 /* x and y don't need initialization, as they are not accessed
5331 unless XParseGeometry sets them. */ 5331 unless XParseGeometry sets them, in which case it always returns
5332 a non-zero value. */
5332 int x UNINIT, y UNINIT; 5333 int x UNINIT, y UNINIT;
5333 unsigned int width, height; 5334 unsigned int width, height;
5334 5335