diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-08-25 10:10:01 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-08-25 10:10:01 +0300 |
commit | 26703b98f93ff6e0819e43b872bfe63f8753dfcb (patch) | |
tree | ab12e1073fcf976b5d7bac5473cc9c66307dc464 /src/frame.c | |
parent | 9b10ec066000c198f01981ff6f259b7826b3eeed (diff) | |
download | emacs-26703b98f93ff6e0819e43b872bfe63f8753dfcb.tar.gz emacs-26703b98f93ff6e0819e43b872bfe63f8753dfcb.tar.bz2 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.c | 3 |
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'. */) (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; |