diff options
| author | Eli Zaretskii | 2022-12-13 16:10:23 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2022-12-13 16:10:23 +0200 |
| commit | 12e6ff037a10af2736c807bee41497af8da421b3 (patch) | |
| tree | a8c5cf246c2830e010a2b2e641d0f2addb07207e | |
| parent | f5948449d6ef189237b1b7e607110be6fdabdd98 (diff) | |
| download | emacs-12e6ff037a10af2736c807bee41497af8da421b3.tar.gz emacs-12e6ff037a10af2736c807bee41497af8da421b3.zip | |
; Fix typos in xterm.c
* src/xterm.c (syms_of_xterm) <x-lax-frame-positioning>: Fix typos
in the name and doc string of the variable.
| -rw-r--r-- | src/xterm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xterm.c b/src/xterm.c index cd7c8a35ec8..08dd41c64e1 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -31932,14 +31932,14 @@ server. If the X server reports the error, Emacs will disable certain | |||
| 31932 | features that do not work for untrusted clients. */); | 31932 | features that do not work for untrusted clients. */); |
| 31933 | Vx_detect_server_trust = Qnil; | 31933 | Vx_detect_server_trust = Qnil; |
| 31934 | 31934 | ||
| 31935 | DEFVAR_LISP ("x-lax-frame-geometry", Vx_lax_frame_positioning, | 31935 | DEFVAR_LISP ("x-lax-frame-positioning", Vx_lax_frame_positioning, |
| 31936 | doc: /* If non-nil nil, Emacs won't compensate for WM geometry behavior. | 31936 | doc: /* If non-nil, Emacs won't compensate for WM geometry behavior. |
| 31937 | 31937 | ||
| 31938 | Setting this to non-nil is useful when the compensation proves to be | 31938 | Setting this to non-nil is useful when the compensation proves to be |
| 31939 | too slow, which is usually true when the X server is located over a | 31939 | too slow, which is usually true when the X server is located over a |
| 31940 | network connection with high latency. Doing so will make frame | 31940 | network connection with high latency. Doing so will make frame |
| 31941 | creation and placement faster at the cost of reducing the accuracy of | 31941 | creation and placement faster at the cost of reducing the accuracy of |
| 31942 | frame placement via frame properties, `set-frame-position', and | 31942 | frame placement via frame parameters, `set-frame-position', and |
| 31943 | `set-frame-size'. */); | 31943 | `set-frame-size'. */); |
| 31944 | Vx_lax_frame_positioning = Qnil; | 31944 | Vx_lax_frame_positioning = Qnil; |
| 31945 | } | 31945 | } |