diff options
| author | Eli Zaretskii | 2019-08-25 10:10:01 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 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.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'. */) | |||
| 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 | ||