diff options
| author | Paul Eggert | 2019-08-23 11:17:38 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-08-23 11:17:55 -0700 |
| commit | 6cd567878443dd5fb9c3910de3a8e67acb5962b4 (patch) | |
| tree | 8601b524eb26e19c8717155d24b3f18a054f3a07 /src/frame.c | |
| parent | ad9c8b029c4949b492db778c40b5c94bd7093f85 (diff) | |
| download | emacs-6cd567878443dd5fb9c3910de3a8e67acb5962b4.tar.gz emacs-6cd567878443dd5fb9c3910de3a8e67acb5962b4.zip | |
Clarify compiler-pacifier in frame.c
* src/frame.c (Fx_parse_geometry): Pacify the compiler in a
different way, so that the human reader can more easily see
that the initializations are unnecessary.
Diffstat (limited to 'src/frame.c')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index 8ee8e4203fc..330f98aee15 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -5327,7 +5327,7 @@ or a list (- N) meaning -N pixels relative to bottom/right corner. | |||
| 5327 | On Nextstep, this just calls `ns-parse-geometry'. */) | 5327 | On Nextstep, this just calls `ns-parse-geometry'. */) |
| 5328 | (Lisp_Object string) | 5328 | (Lisp_Object string) |
| 5329 | { | 5329 | { |
| 5330 | int geometry, x = 0, y = 0; | 5330 | int geometry, x UNINIT, y UNINIT; |
| 5331 | unsigned int width, height; | 5331 | unsigned int width, height; |
| 5332 | Lisp_Object result; | 5332 | Lisp_Object result; |
| 5333 | 5333 | ||